This repository provides Repo manifests to setup the Yocto build system for reproducible TEE builds.
The Yocto Project allows the creation of custom linux distributions for embedded systems, including AMD based systems. It is a collection of git repositories known as layers each of which provides recipes to build software packages as well as configuration information.
Repo is a tool that enables the management of many git repositories given a single manifest file. Tell repo to fetch a manifest from this repository and it will fetch the git repositories specified in the manifest and, by doing so, setup a Yocto Project build environment for you!
- Operating System: Ubuntu 22.04 LTS (recommended for stability and reproducibility)
- Storage: Minimum 300GB free disk space
- Required for build artifacts and output images
- SSD storage recommended for optimal performance
- Processor: Minimum 16 CPU cores
- Builds are heavily parallelized
- More cores will significantly reduce build time
- Memory: Minimum 16GB RAM (32GB recommended)
- Dedicated build server for consistent and uninterrupted builds
- Fast internet connection for downloading source packages
- Regular system maintenance to ensure sufficient free space
- Clean builds typically take 2-4 hours depending on hardware
- Incremental builds are significantly faster
- Consider using build containers for consistent environments across teams
- default.xml - External releasable components. Used for release builds.
Make sure you are checked out on the correct commit (in this repo).
Building images is as simple as installing docker and running make measurements-<name>
. For list of images run make help
.
Make sure you have plenty of disk space available (200 GBs), and that your session will not time out as a fresh build can take over an hour on slow hardware.
To get
Built images as well as measurements will be available in ./reproducible-build/artifacts-<image name>
.
If you only want to build images, see the "Building images" section above. This is only required if you want to build images on your physical host and is aimed at image developers
- See the Preparing Build Host documentation to install essential host packages on your build host. The following command installs the host packages based on an Ubuntu distribution.
$ sudo apt install gawk wget git diffstat unzip texinfo gcc build-essential chrpath socat cpio python3 python3-pip python3-pexpect xz-utils debianutils iputils-ping python3-git python3-jinja2 libegl1-mesa libsdl1.2-dev xterm python3-subunit mesa-common-dev zstd liblz4-tool chrpath diffstat lz4 mtools
$ sudo locale-gen en_US.UTF-8
- Install Repo tool.
If on Debian/Ubuntu, then run:
sudo apt-get install repo
Otherwise, follow theese steps:
- Download the Repo script.
$ curl https://storage.googleapis.com/git-repo-downloads/repo > repo
- Make it executable.
$ chmod a+x repo
- Move it on to your system path.
$ sudo mv repo /usr/local/bin/
If it is correctly installed, you should see a Usage message when invoked with the help flag.
$ repo --help
- Initialize a Repo client.
- Create an empty directory to hold your working files.
$ mkdir -p yocto/tdx
$ cd yocto/tdx
- Clone the Yocto meta layer source using yocto manifest as show below.
$ repo init -u https://github.com/flashbots/yocto-manifests.git -b main -m <manifest_file>.xml
A successful initialization will end with a message stating that Repo is initialized in your working directory. Your directory should now contain a .repo directory where repo control files such as the manifest are stored but you should not need to touch this directory.
To learn more about repo, look at https://source.android.com/setup/develop/repo
- Fetch all the repositories.
$ repo sync
- Start a branch with for development starting from the revision specified in the manifest. This is an optional step.
$ repo start <branch_name> --all
- Setup the Yocto OE Init scripts by sourcing
setup
script.
$ source setup
Note: if you are building on ubuntu 24.04, yocto bitbake build will fail due to apparmor strict profile update.
Here is a workaround to fix the build issue link
- Build the image by using the provided
Makefile
.
Your host is now ready to build images.
Note: Make sure you are exporting the env vars you want to enable/disable yocto build time configuration.
Please inspect the env_files and export the desired ones as env variables before trigger the build.
e.g. export DEBUG_TWEAKS_ENABLED=1. This builds the image in debug mode and enable root ssh access for dev/debug purposes
$ make build
- Generate the measurements values after building the image. They will be located in measurements directory
$ make gen-measurements
Note: to generate the measurements, you need to make sure that you have
python3
,libssl-dev
and thesignify
module installed.$ sudo apt-get install python3 libssl-dev
$ ln -s /usr/bin/python3 /usr/bin/python
$ pip install signify
To pick up the latest changes for all source repositories, run:
$ repo sync
There is also poky-container as an alternative docker build environment to build your yocto projects with it.
- Clone this repo
$ git clone https://github.com/flashbots/yocto-manifests.git
- adjust the yocto build configuration in env_files for the target image you want to build
- make the desired image using, these are the current options:
- image-base: builds a basic tdx-image and outputs the image artifacts in /reproducile-build/artifacts-base
- image-bob: builds the image for the BOB project with the searcher embedded ss-key and podman support and outputs the image artifacts in /reproducile-build/artifacts-bob
- image-rbuilder: builds the image for with rbuilder/reth/lighthouse and outputs the image artifacts in /reproducile-build/artifacts-rbuilder
$ make image-<target-name>