Building GrapheneOS
Build targets
Smartphone and tablet targets:
- comet (Pixel 9 Pro Fold)
- komodo (Pixel 9 Pro XL)
- caiman (Pixel 9 Pro)
- tokay (Pixel 9)
- akita (Pixel 8a)
- husky (Pixel 8 Pro)
- shiba (Pixel 8)
- felix (Pixel Fold)
- tangorpro (Pixel Tablet)
- lynx (Pixel 7a)
- cheetah (Pixel 7 Pro)
- panther (Pixel 7)
- bluejay (Pixel 6a)
- raven (Pixel 6 Pro)
- oriole (Pixel 6)
- barbet (Pixel 5a) (legacy extended support)
- redfin (Pixel 5) (legacy extended support)
- bramble (Pixel 4a (5G)) (legacy extended support)
- sunfish (Pixel 4a) (legacy extended support)
- coral (Pixel 4 XL) (legacy extended support)
- flame (Pixel 4) (legacy extended support)
These are all fully supported production-ready targets supporting all the baseline security features and receiving full monthly security updates covering all firmware, kernel drivers, driver libraries / services and other device-specific code. A fully signed user build for these devices is a proper GrapheneOS release. Newer generation devices have stronger hardware / firmware security and hardware-based OS security features and are better development devices for that reason. It's not possible to work on everything via past generation devices. The best development devices are the Pixel 6 and 7 series.
SDK emulator target:
- sdk_phone64_x86_64
These emulator targets don't receive full monthly security updates, don't provide all of the baseline security features and are intended for development usage.
We recommend using the sdk_phone64_x86_64 target in either the userdebug or eng variant for most development work.
Providing proper support for a device or generic device family requires providing an up-to-date kernel and device support code including driver libraries, firmware and device SELinux policy extensions. Other than some special cases like the emulator, the generic targets rely on the device support code present on the device. Shipping all of this is necessary for full security updates and is tied to enabling verified boot / attestation. Device-specific driver changes are required to support GrapheneOS features such as the hardware-level USB-C port control. There's also a lot of device-specific work to work around or resolve memory corruption bugs uncovered by our features. Most devices are also missing a lot of standard hardware-based security features we use such as hardware memory tagging so those features will inherently not be possible to port to a device not capable of it.
Build dependencies
Arch Linux, Debian bookworm, Ubuntu 24.10 and Ubuntu 24.04 LTS are the officially supported operating systems for building GrapheneOS.
Set up Debian GNU/Linux 12 (bookworm)
To build GrapheneOS, install the required packages:
apt install repo yarnpkg zip rsync
Your PATH
may not contain directories like /sbin
, and many system administration commands will fail. The adevtool
from GrapheneOS requires the debugfs
binary in /sbin
. The simplest workaround is to add these directories to your PATH
environment variable (and apply the change to your current shell):
echo 'export PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin' >> ~/.bashrc source ~/.bashrc
Dependencies for fetching and verifying the sources:
- repo
- python3 (for repo)
- git (both for repo and manual usage)
- gnupg (for verifying AOSP releases and also used internally by repo for self-update verification)
- openssh (for verifying GrapheneOS releases)
- 136GiB+ storage for a standard sync with history, 90GiB+ storage for a lightweight sync
Baseline build dependencies:
- x86_64 Linux build environment
- 32GiB of memory or more. Link-Time Optimization (LTO) creates huge peaks during linking and is mandatory for Control Flow Integrity (CFI). Linking Vanadium (Chromium) and the Linux kernel with LTO + CFI are the most memory demanding tasks.
- 100GiB+ of additional free storage space for a typical build of the entire OS for a multiarch device
You can either obtain repo
as a distribution package or the self-updating standalone version from the Android Open Source Project. The self-updating variant avoids dealing with out-of-date distribution packages and depends on GPG to verify updates.
The Android Open Source Project build system is designed to provide reliable and reproducible builds. To accomplish this, it provides a prebuilt toolchain and other utilities fulfilling most of the build dependency requirements itself. These prebuilt tools have reproducible builds themselves. It runs the build process within a loose sandbox to avoid accidental dependencies on the host system. The process of moving to a fully self-contained build process with minimal external dependencies is gradual and there are still dependencies that need to be installed on the host system.
Additional Android Open Source Project build dependencies not provided by the source tree:
- diff (diffutils)
- freetype2, fontconfig and any OpenType/TrueType font (such as DejaVu but anything works) for OpenJDK despite it being a headless variant without GUI support
- hostname (inetutils) is used for detecting namespace support for build sandboxing
- ncurses5 (provided by the source tree for some tools but not others)
- openssl
- rsync
- unzip
- zip
Additional dependencies for extracting vendor files with adevtool:
- Node.js 18 LTS
- yarn
- e2fsprogs (for the debugfs command used for extracting data from ext4 images)
Additional Vanadium (Chromium) build dependencies not provided by the source tree:
- gperf
- 32-bit glibc
- 32-bit gcc runtime library
Additional dependencies for signing factory images releases:
- ssh-keygen (OpenSSH)
Downloading source code
Since this is syncing the sources for the entire operating system and application layer, it will use a lot of bandwidth and storage space.
You likely want to use the most recent stable tag, not the development branch, even for developing a feature. It's easier to port between stable tags that are known to work properly than dealing with a moving target.
Development branch
The 15-qpr2
branch is the main development branch of GrapheneOS based on the latest release of Android 15 QPR2. It will follow along with the latest monthly and quarterly releases of Android 15 QPR2. The 15-qpr2
branch of GrapheneOS should be used for generic builds including the emulator, porting to other devices and for non-legacy officially supported devices.
The 14
branch is used for the end-of-life Pixel 5a.
The 14-redfin
branch is used for the end-of-life Pixel 4a (5G) and Pixel 5.
The 13
branch is used for the end-of-life Pixel 4a.
The 13-coral
branch is used for the end-of-life Pixel 4 and Pixel 4 XL.
To sync the 15-qpr2
branch:
mkdir grapheneos-15-qpr2 cd grapheneos-15-qpr2 repo init -u https://github.com/GrapheneOS/platform_manifest.git -b 15-qpr2 repo sync -j8
If your network is unreliable and repo sync
fails, you can run the repo sync
command again to continue from where it was interrupted. It handles connection failures robustly and you shouldn't start over from scratch.
Stable release
Pick a specific release for a device from the releases page and download the source tree. Note that some devices use different Android Open Source Project branches so they can end up with different tags. Make sure to use the correct tag for a device. For devices without official support, use the latest tag marked as being appropriate for generic / other devices in the release notes.
mkdir grapheneos-TAG_NAME cd grapheneos-TAG_NAME repo init -u https://github.com/GrapheneOS/platform_manifest.git -b refs/tags/TAG_NAME
Obtain SSH public key for verifying tags:
curl https://grapheneos.org/allowed_signers > ~/.ssh/grapheneos_allowed_signers
Verify the manifest:
cd .repo/manifests git config gpg.ssh.allowedSignersFile ~/.ssh/grapheneos_allowed_signers git verify-tag $(git describe) cd ../..
Complete the source tree download:
repo sync -j8
The manifest for the latest stable release refers to the revisions in other repositories via commit hashes rather than tag names. This avoids the need to use a script to verify tag signatures across all the repositories, since they simply point to the same commits with the same hashes.
Note that the repo command itself takes care of updating itself and uses GPG to verify by default.
Extracting vendor files for Pixel devices
This section is specific to Pixel devices. The emulator and generic targets don't require extra vendor files.
Many of these components are already open source, but not everything is set up to be built by the Android Open Source Project build system. Switching to building these components from source will be an incremental effort. In many cases, the vendor files simply need to be ignored and AOSP will already provide them instead. Firmware cannot generally be built from source even when sources are available, other than to verify that the official builds match the sources, since it has signature verification (which is an important part of the verified boot and attestation security model).
The below commands need to only be run once to initially create a working environment. (Note: On Debian, yarn
is reserved for a binary in cmdtest
; use yarnpkg
instead.)
yarn install --cwd vendor/adevtool/ source build/envsetup.sh lunch sdk_phone64_x86_64-cur-user m aapt2
Download, extract and prepare the vendor files:
adevtool generate-all -d PIXEL_CODENAME
Replace PIXEL_CODENAME
with Pixel device codename, which is the same as build target name.
Setting up the OS build environment
The build has to be done from bash or zsh as envsetup.sh is not compatible with other shells.
Set up the build environment:
source build/envsetup.sh
Select the desired build target (husky
is the Pixel 8 Pro):
lunch husky-cur-user
For past stable tags and legacy branches, don't pass the Android release:
lunch husky-user
For a development build, you may want to replace user
with userdebug
in order to have better debugging support. Production builds should be user
builds as they are significantly more secure and don't make additional performance sacrifices to improve debugging.
Set OFFICIAL_BUILD=true
to include the Updater app. You must change the URL in packages/apps/Updater/res/values/config.xml
to your own update server URL. Using the official update server with a build signed with different keys will not work and will essentially perform a denial of service attack on our update service. If you try to use the official URL, the app will download an official update and will detect it as corrupted or tampered. It will delete the update and try to download it over and over again since it will never be signed with your key.
export OFFICIAL_BUILD=true
Reproducible builds
To reproduce a past build, you need to export BUILD_DATETIME
and BUILD_NUMBER
to the values set for the past build. These can be obtained from out/build_date.txt
and out/build_number.txt
in a build output directory and the ro.build.date.utc
and ro.build.version.incremental
properties which are also included in the over-the-air zip metadata rather than just the OS itself.
The signing process for release builds is done after completing builds and replaces the dm-verity trees, apk signatures, etc. and can only be reproduced with access to the same private keys. If you want to compare to production builds signed with different keys you need to stick to comparing everything other than the signatures.
Additionally, set OFFICIAL_BUILD=true
per the instructions above to reproduce the official builds. Note that if you do not change the URL to your own domain, you must disable the Updater app before connecting the device to the internet, or you will be performing a denial of service attack on our official update server.
Building
Incremental builds (i.e. starting from the old build) usually work for development and are the normal way to develop changes. However, there are cases where changes are not properly picked up by the build system. For production builds, you should remove the remnants of any past builds before starting, particularly if there were non-trivial changes:
rm -r out
Next, start the build process with the m
command:
m target-files-package
For the Pixel 6, Pixel 6 Pro and Pixel 6a you currently need m vendorbootimage target-files-package
instead of target-files-package
.
For the Pixel 7, Pixel 7 Pro, Pixel 7a, Pixel Tablet, Pixel Fold, Pixel 8, Pixel 8 Pro, Pixel 8a, Pixel 9, Pixel 9 Pro, Pixel 9 Pro XL and Pixel 9 Pro Fold you currently need m vendorbootimage vendorkernelbootimage target-files-package
instead of target-files-package
.
The -j
parameter can be passed to m
to set a specific number of jobs such as -j4
to use 4 jobs. By default, the build system sets the number of jobs to NumCPU() + 2
where NumCPU()
is the number of available logical CPUs.
For an emulator build, always use the development build approach below.
Faster builds for development use only
The normal production build process involves building a target files package to be resigned with secure release keys and then converted into factory images and/or an update zip via the sections below. If you have a dedicated development device with no security requirements, you can save time by using the default build target rather than target-files-package. Leave the bootloader unlocked and flashing the raw images that are signed with the default public test keys.
To build the default build target:
m
Technically, you could generate test key signed update packages. However, there's no point of sideloading update packages when the bootloader is unlocked and there's no value in a locked bootloader without signing the build using release keys, since verified boot will be meaningless and the keys used to verify sideloaded updates are also public. The only reason to use update packages or a locked bootloader without signing the build with release keys would be testing that functionality and it makes a lot more sense to test it with proper signing keys rather than the default public test keys.
Generating release signing keys
Keys need to be generated for resigning completed builds from the publicly available test keys. The keys must then be reused for subsequent builds and cannot be changed without flashing the generated factory images again which will perform a factory reset. Note that the keys are used for a lot more than simply verifying updates and verified boot.
The sample certificate subject (CN=GrapheneOS
) should be replaced with your own information.
You should set a passphrase for the signing keys to keep them at rest until you need to sign a release with them. The GrapheneOS scripts (make_key
and encrypt-keys
) encrypt the signing keys using scrypt for key derivation and AES256 as the cipher. If you use swap, make sure it's encrypted, ideally with an ephemeral key rather a persistent key to support hibernation. Even with an ephemeral key, swap will reduce the security gained from encrypting the keys since it breaks the guarantee that they become at rest as soon as the signing process is finished. Consider disabling swap, at least during the signing process.
The encryption passphrase for all the keys generated for a device needs to match for compatibility with the GrapheneOS scripts.
To generate keys for raven (you should use unique keys per device variant):
mkdir -p keys/raven cd keys/raven CN=GrapheneOS ../../development/tools/make_key releasekey "/CN=$CN/" ../../development/tools/make_key platform "/CN=$CN/" ../../development/tools/make_key shared "/CN=$CN/" ../../development/tools/make_key media "/CN=$CN/" ../../development/tools/make_key networkstack "/CN=$CN/" ../../development/tools/make_key sdk_sandbox "/CN=$CN/" ../../development/tools/make_key bluetooth "/CN=$CN/" openssl genrsa 4096 | openssl pkcs8 -topk8 -scrypt -out avb.pem ../../external/avb/avbtool.py extract_public_key --key avb.pem --output avb_pkmd.bin cd ../..
The avb_pkmd.bin
file isn't needed for generating a signed release but rather to set the public key used by the device to enforce verified boot.
Generate an OpenSSH key for signing factory images:
ssh-keygen -t ed25519 -f keys/raven/id_ed25519
The passphrase for the SSH key should also match the other keys, although we don't currently handle it automatically in the encrypt/decrypt scripts.
Encrypting keys
You can (re-)encrypt your signing keys using the encrypt-keys
script, which will prompt for the old passphrase (if any) and new passphrase:
script/encrypt-keys keys/raven
The script/decrypt-keys
script can be used to remove encryption, which is not recommended. The script exists primarily for internal usage to decrypt the keys in tmpfs to perform signing.
APEX components
GrapheneOS currently doesn't use out-of-band updates to APEX components, so these are all signed with the OS releasekey and verified boot key to avoid needing many extra pairs of keys. Each APEX needs an APK signing key and verified boot signing key. If you want to ship out-of-band updates to APEX components, you'll need to deal with this and you should make a separate pair of keys for each one.
Consult the upstream documentation on generating these keys. It will likely be covered here in the future, especially if non-flattened APEX components become unavoidable.
Generating signed factory images and full update packages
Build and package up the tools needed to generate over-the-air update packages:
m otatools-package
Copy build artifacts to releases directory:
script/finalize.sh
Generate a signed release build with the generate-release.sh script:
script/generate-release.sh raven BUILD_NUMBER
The factory images and update package will be in releases/BUILD_NUMBER/release-raven-BUILD_NUMBER
. The update zip performs a full OS installation so it can be used to update from any previous version. More efficient incremental updates are used for official over-the-air GrapheneOS updates and can be generated by keeping around past signed target_files
zips and generating incremental updates from those to the most recent signed target_files
zip.
See the install page for information on how to use the factory images. See the usage guide section on sideloading updates for information on how to use the update packages.
Running script/generate-release.sh
also generates channel metadata for the update server. If you configured the Updater client URL and set the build to include it (see the information on OFFICIAL_BUILD
above), you can push signed over-the-air updates via the update system. Simply upload the update package to the update server along with the channel metadata for the release channel, and it will be pushed out to the update client. The DEVICE-beta
and DEVICE-stable
metadata provide the Beta and Stable release channels used by the update client. The DEVICE-testing
metadata provides an internal testing channel for the OS developers, which can be temporarily enabled using adb shell setprop sys.update.channel testing
. The name is arbitrary and you can also use any other name for internal testing channels.
For GrapheneOS itself, the testing channel is used to push out updates to developer devices, followed by a sample future release to test that the release which is about to be pushed out to the Beta channel is able to update to a future release. Once it's tested internally, the release is pushed out to the Beta channel, and finally to the Stable channel after public testing. A similar approach is recommended for derivatives of GrapheneOS.
Generating delta updates
Incremental updates shipping only the changes between two versions can be generated as a much more efficient way of shipping updates than a full update package containing the entire operating system. The GrapheneOS Updater app will automatically use a delta update if one exists for going directly from the currently installed version to the latest release. In order to generate a delta update, the original signed target files package for both the source version and target version are needed. The script/generate-delta.sh
script provides a wrapper script for generating delta updates by passing the device, source version build number and target version build number. For example:
script/generate-delta.sh raven 2021102503 2021102613
The script assumes that the releases are organized in the following directory structure:
releases ├── 2022050700 │ └── release-raven-2022050700 └── 2022050800 └── release-raven-2022050800
Incremental updates are uploaded alongside the update packages and update metadata on the static web server used as an update server. The update client will automatically check for an incremental update and use it if available. No additional metadata is needed to make incremental updates work.