Skip to content

Commit 1980087

Browse files
use FHS environment for kernel build
this greatly simplifies things and ensures that the kernel is built the way the build process expects.
1 parent 2628e30 commit 1980087

File tree

5 files changed

+24
-292
lines changed

5 files changed

+24
-292
lines changed

flavors/grapheneos/kernel.nix

+20-290
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ let
2424
subPaths = prefix: (lib.filter (name: (lib.hasPrefix prefix name)) (lib.attrNames config.source.dirs));
2525
kernelSources = subPaths sourceRelpath;
2626
unpackSrc = name: src: ''
27-
mkdir -p $(dirname ${name})
28-
cp -r ${src} ${name}
27+
shopt -s dotglob
28+
mkdir -p ${name}
29+
cp -r ${src}/* ${name}
2930
'';
3031
linkSrc = name: c: lib.optionalString (lib.hasAttr "linkfiles" c) (lib.concatStringsSep "\n" (map
3132
({ src, dest }: ''
@@ -46,196 +47,6 @@ let
4647
# the kernel build scripts deeply assume clang as of android 13
4748
llvm = pkgs.llvmPackages_13;
4849
stdenv = if (config.androidVersion >= 13) then pkgs.stdenv else pkgs.stdenv;
49-
dependenciesPre =
50-
let
51-
fixupRepo = repoName: { buildInputs ? [ ], ... }@args: stdenv.mkDerivation ({
52-
name = lib.strings.sanitizeDerivationName repoName;
53-
src = config.source.dirs.${repoName}.src;
54-
buildInputs = with pkgs; buildInputs ++ [ autoPatchelfHook ];
55-
installPhase = ''
56-
runHook preInstall
57-
rm -f env-vars
58-
mkdir -p $out
59-
cp -r . $out
60-
runHook postInstall
61-
'';
62-
} // (lib.filterAttrs (n: v: n != "buildInputs") args));
63-
in
64-
lib.mapAttrs (n: v: fixupRepo n v) (if (config.androidVersion <= 12) then {
65-
"prebuilts/clang/host/linux-x86/clang-${clangVersion}" = {
66-
src = config.source.dirs."prebuilts/clang/host/linux-x86".src + "/clang-${clangVersion}";
67-
buildInputs = with pkgs; [
68-
zlib
69-
ncurses5
70-
libedit
71-
stdenv.cc.cc.lib # For libstdc++.so.6
72-
python39 # LLDB links against this particular version of python
73-
];
74-
postPatch = ''
75-
rm -r python3
76-
'';
77-
};
78-
"prebuilts/misc/linux-x86" = {
79-
src = config.source.dirs."prebuilts/misc".src + "/linux-x86";
80-
buildInputs = with pkgs; [ python ];
81-
};
82-
"kernel/prebuilts/build-tools" = {
83-
src = config.source.dirs."prebuilts/build-tools".src;
84-
buildInputs = with pkgs; [ python ];
85-
postInstall = ''
86-
# Workaround for patchelf not working with embedded python interpreter
87-
cp ${config.source.dirs."system/libufdt".src}/utils/src/mkdtboimg.py $out/linux-x86/bin
88-
'';
89-
};
90-
"prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9" = { buildInputs = with pkgs; [ python ]; };
91-
"prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9" = { buildInputs = with pkgs; [ python ]; };
92-
"prebuilts/gas/linux-x86" = { };
93-
} else {
94-
"${sourceRelpath}/prebuilts/clang/host/linux-x86/clang-${clangVersion}" = {
95-
src = config.source.dirs."${sourceRelpath}/prebuilts/clang/host/linux-x86".src + "/clang-${clangVersion}";
96-
buildInputs = with pkgs; [
97-
zlib
98-
ncurses5
99-
libedit
100-
stdenv.cc.cc.lib # For libstdc++.so.6
101-
python39 # LLDB links against this particular version of python
102-
musl
103-
];
104-
postPatch = ''
105-
rm -r python3
106-
'';
107-
postInstall = ''
108-
mkdir -p $out/lib
109-
ln -s ${pkgs.musl}/lib/libc.so $out/lib/libc_musl.so
110-
addAutoPatchelfSearchPath $out
111-
'';
112-
};
113-
"${sourceRelpath}/prebuilts/misc/linux-x86" = {
114-
src = config.source.dirs."${sourceRelpath}/prebuilts/misc".src + "/linux-x86";
115-
buildInputs = with pkgs; [ python ];
116-
};
117-
# these need to be rebuilt entirely
118-
"${sourceRelpath}/prebuilts/build-tools" = rec {
119-
srcs = config.source.dirs."${sourceRelpath}/prebuilts/build-tools".src;
120-
nativeBuildInputs = with pkgs;
121-
[
122-
pkgs.autoPatchelfHook
123-
stdenv.cc.cc.lib
124-
musl
125-
];
126-
preInstall = ''
127-
mkdir -p $out/lib
128-
ln -s ${pkgs.musl}/lib/libc.so $out/lib/libc_musl.so
129-
rm path/linux-x86/python
130-
ln -s ${pkgs.python3}/bin/python3 path/linux-x86/python
131-
'';
132-
postInstall = ''
133-
# Workaround for patchelf not working with embedded python interpreter
134-
cp ${config.source.dirs."system/libufdt".src}/utils/src/mkdtboimg.py $out/linux-x86/bin
135-
addAutoPatchelfSearchPath $out/linux-x86
136-
# make sure we only patchelf binaries
137-
autoPatchelf $out/path/linux-x86 $out/linux-x86/bin
138-
'';
139-
dontPatchelf = true;
140-
};
141-
"${sourceRelpath}/prebuilts/gas/linux-x86" = {
142-
src = config.source.dirs."${sourceRelpath}/prebuilts/gas/linux-x86".src;
143-
};
144-
"${sourceRelpath}/prebuilts/kernel-build-tools" =
145-
let
146-
build_image = pkgs.python39Packages.buildPythonPackage {
147-
pname = "grapheneos-build_image";
148-
version = grapheneOSRelease;
149-
src = config.source.dirs."build/make".src + /tools/releasetools;
150-
format = "other";
151-
installPhase = ''
152-
mkdir -p $out/lib/python3.9/site-packages/ $out/bin
153-
cp -r *.py $out/lib/python3.9/site-packages/
154-
cp build_image.py $out/bin/build_image
155-
chmod +x $out/bin/build_image
156-
'';
157-
doCheck = false;
158-
};
159-
ext4-utils = pkgs.python39Packages.buildPythonPackage {
160-
pname = "grapheneos-ext4-utils";
161-
version = grapheneOSRelease;
162-
src = config.source.dirs."system/extras".src + /ext4_utils;
163-
nativeBuildInputs = with pkgs; [ autoPatchelfHook ];
164-
format = "other";
165-
installPhase = ''
166-
mkdir -p $out/lib/python3.9/site-packages $out/bin
167-
cp mkuserimg_mke2fs.py $out/lib/python3.9/site-packages
168-
cp mke2fs.conf $out/lib/python3.9/site-packages
169-
ln -s $out/lib/python3.9/site-packages/mkuserimg_mke2fs.py $out/bin/mkuserimg_mke2fs
170-
chmod +x $out/bin/mkuserimg_mke2fs
171-
'';
172-
};
173-
avb = pkgs.python39Packages.buildPythonPackage {
174-
pname = "grapheneos-avb";
175-
version = grapheneOSRelease;
176-
src = config.source.dirs."external/avb".src;
177-
format = "other";
178-
installPhase = ''
179-
mkdir -p $out/lib/python3.9/site-packages/ $out/bin
180-
cp -r avbtool.py $out/lib/python3.9/site-packages/
181-
ln -s $out/lib/python3.9/site-packages/avbtool.py $out/bin/avbtool
182-
chmod +x $out/bin/avbtool
183-
'';
184-
doCheck = false;
185-
};
186-
certify_bootimg = pkgs.python39Packages.buildPythonPackage {
187-
pname = "grapheneos-certify_bootimg";
188-
version = grapheneOSRelease;
189-
src = config.source.dirs."${sourceRelpath}/tools/mkbootimg".src;
190-
format = "other";
191-
installPhase = ''
192-
mkdir -p $out/lib/python3.9/site-packages $out/bin
193-
cp -r gki/ $out/lib/python3.9/site-packages
194-
cp unpack_bootimg.py $out/lib/python3.9/site-packages
195-
cp repack_bootimg.py $out/lib/python3.9/site-packages
196-
ln -s $out/lib/python3.9/site-packages/gki/certify_bootimg.py $out/bin/certify_bootimg
197-
chmod +x $out/bin/certify_bootimg
198-
'';
199-
doCheck = false;
200-
};
201-
release-tools-py = (pkgs.python39.withPackages (ps: [
202-
build_image
203-
ext4-utils
204-
avb
205-
certify_bootimg
206-
])).override {
207-
makeWrapperArgs = [ "--set PYTHONHOME $out" "--set PYTHONPATH $out" ];
208-
};
209-
in
210-
{
211-
src = config.source.dirs."${sourceRelpath}/prebuilts/kernel-build-tools".src;
212-
nativeBuildInputs = with pkgs; [ release-tools-py makeWrapper ];
213-
postInstall = ''
214-
# Workaround for patchelf not working with embedded python interpreter
215-
ln -sf ${release-tools-py}/bin/build_image $out/linux-x86/bin/build_image
216-
ln -sf ${release-tools-py}/bin/mkuserimg_mke2fs $out/linux-x86/bin/mkuserimg_mke2fs
217-
ln -sf ${release-tools-py}/bin/avbtool $out/linux-x86/bin/avbtool
218-
ln -sf ${release-tools-py}/bin/certify_bootimg $out/linux-x86/bin/certify_bootimg
219-
ls -l ${release-tools-py}/bin
220-
'';
221-
};
222-
});
223-
224-
# ugly hack to make sure patchelf finds liblog.so
225-
dependencies = dependenciesPre // (
226-
let
227-
build-tools = dependenciesPre."${sourceRelpath}/prebuilts/build-tools";
228-
in
229-
{
230-
"${sourceRelpath}/prebuilts/clang/host/linux-x86/clang-${clangVersion}" =
231-
(lib.getAttr "${sourceRelpath}/prebuilts/clang/host/linux-x86/clang-${clangVersion}" dependenciesPre).overrideAttrs (old: {
232-
buildInputs = (old.buildInputs or [ ]) ++ (with pkgs; [ patchelf ]);
233-
preFixup = ''
234-
addAutoPatchelfSearchPath ${build-tools}/linux-x86/lib64
235-
'';
236-
});
237-
}
238-
);
23950

24051
repoName = {
24152
"sargo" = "crosshatch";
@@ -267,12 +78,10 @@ let
26778
android-bintools = android-stdenv.cc.bintools.bintools_bin;
26879
android-gcc = android-stdenv.cc;
26980
in
270-
stdenv.mkDerivation (rec {
81+
config.build.mkAndroid (rec {
27182
name = "grapheneos-${builtKernelName}-kernel";
27283
inherit (config.kernel) patches postPatch;
27384

274-
src = pkgs.emptyDirectory;
275-
sourceRoot = ".";
27685
nativeBuildInputs = with pkgs; [
27786
perl
27887
bc
@@ -303,123 +112,44 @@ let
303112
elfutils
304113
];
305114

306-
preUnpack = ''
115+
unpackPhase = ''
307116
shopt -s dotglob
308-
${lib.concatStringsSep "\n" (lib.mapAttrsToList (n: v: "mkdir -p $(dirname ${n}); ln -s ${v} ${n}") dependencies)}
309-
${unpackSrcs (lib.filter
310-
(name: !lib.any (depName: lib.hasPrefix name depName) (lib.attrNames dependencies))
311-
kernelSources)}
117+
${unpackSrcs kernelSources}
118+
chmod -R a+w .
119+
runHook postUnpack
312120
'';
313121

314122
postUnpack = "cd ${sourceRelpath}";
315123

124+
# Useful to use upstream's build.sh to catch regressions if any dependencies change
316125
prePatch = ''
317-
set -exo pipefail
318-
ls -l --color=always build build/kernel prebuilts
319-
320-
# From os-specific/linux/kernel/manual-config.nix in nixpkgs
321-
for mf in $(find -name Makefile -o -name Makefile.include -o -name install.sh); do
322-
echo "stripping FHS paths in \`$mf'..."
323-
sed -i "$mf" -e 's|/usr/bin/||g ; s|/bin/||g ; s|/sbin/||g'
324-
done
325-
if [[ -e scripts/ld-version.sh ]]; then
326-
sed -i scripts/ld-version.sh -e "s|/usr/bin/awk|${pkgs.gawk}/bin/awk|"
327-
fi
328-
329-
# Set kernel timestamp
330-
substituteInPlace ${realBuildScript} \
331-
--replace "\$(git show -s --format=%ct)" "${builtins.toString config.kernel.buildDateTime}"
332-
333-
sed -i '/^chrt/d' ${realBuildScript}
334-
335-
# TODO: Not using prebuilt clang for HOSTCC/HOSTCXX/HOSTLD, since it refers to FHS sysroot and not the sysroot from nixpkgs.
336-
sed -i '/HOST.*=/d' ${realBuildScript}
337-
338-
# nixpkgs-21.11 patchShebangs can't handle /usr/bin/env so replace it with a newer version that can.
339-
unset -f patchShebangs
340-
source ${../../scripts/patch-shebangs.sh}
341-
342-
if [[ -f scripts/generate_initcall_order.pl ]]; then
343-
patchShebangs --build scripts/generate_initcall_order.pl
344-
fi
345-
346-
patchShebangs --build ${buildScript} ${realBuildScript}
347-
if [[ -d private/gs-google ]]; then
348-
patchShebangs --build private/gs-google/
349-
fi
350-
if [[ -d aosp/ ]]; then
351-
patchShebangs --build aosp/
352-
fi
353-
if [[ -f tools/mkbootimg/mkbootimg.py ]]; then
354-
patchShebangs --build tools/mkbootimg/mkbootimg.py
355-
fi
356-
for f in build*/*; do
357-
patchShebangs --build $(realpath $f)
126+
for d in `find prebuilts -type d -name '*lib*'`; do
127+
addAutoPatchelfSearchPath $d
358128
done
359-
360-
echo "echo $(pwd)" > build/gettop.sh && chmod +x build/gettop.sh
361-
'' + lib.optionalString (postRedfin && config.androidVersion <= 12) ''
362-
# TODO: Remove HOSTCC / HOSTCXX. Currently, removing it makes it fail:
363-
# ../scripts/basic/fixdep.c:97:10: fatal error: 'sys/types.h' file not found
364-
sed -i '/make.*\\/a HOSTCC=gcc \\\n HOSTCXX=g++ \\' build/build.sh
365-
366-
'' + lib.optionalString (config.androidVersion >= 13) ''
367-
# don't pass clang/lld only flags
368-
sed -i '/LLD_COMPILER_RT.*/d' build/_setup_env.sh
369-
370-
# make sure we can set all the toolchain components
371-
sed -s -i '/LLVM=1/d' build/_setup_env.sh build/kernel/_setup_env.sh aosp/build.config.common private/gs-google/build.config.common
372-
373-
# by default, shell hooks are set up to validate that the config generated at the start of the build matches the one in the tree.
374-
# this is meant to ensure changes are committed back but we don't care -- errors because the config changed don't matter to us.
375-
sed -s -i 's/POST_DEFCONFIG_CMDS="check_defconfig"/POST_DEFCONFIG_CMDS=""/' private/gs-google/build.config.gki aosp/build.config.gki
376-
sed -s -i 's/POST_DEFCONFIG_CMDS="check_defconfig && /POST_DEFCONFIG_CMDS="/' private/gs-google/build.config.gki_kasan aosp/build.config.gki_kprobes private/gs-google/build.config.gki_kprobes private/gs-google/build.config.gki_kasan
377-
378-
# make sure system tools are preferred over the prebuilt toolchain
379-
sed -i "s|export PATH$|export PATH=$PATH:\$PATH|" build/_setup_env.sh
380-
381-
# make sure a separate LD is passed for target vs build platforms
382-
sed -i 's/tool_args+=("LD=''${LD}" "HOSTLD=''${LD}")/tool_args+=("LD=''${LD}" "HOSTLD=''${HOSTLD}")/' build/_setup_env.sh
383-
sed -i 's/KCFLAGS=-Werror/KCFLAGS=-w/' private/gs-google/build_mixed.sh
384-
385-
# remove a clang only syntax extension so we can build with gcc
386-
find private/google-modules -type f -name '*.h' -exec sed -E -i 's/enum ([[:alnum:]_]+) : ([[:alnum:]_]+) \{/enum \1 {/' '{}' \;
387-
388-
# this cflag throws an error on gcc and there's an open PR that says it should throw an error on clang as well.
389-
sed -i '/EXTRA_CFLAGS.*/aCFLAGS_REMOVE_aoc_alsa_hw.o += -mgeneral-regs-only' private/google-modules/aoc/alsa/Makefile
129+
autoPatchelf prebuilts/clang/host/linux-x86/clang-${clangVersion}/bin
130+
sed -i '/unset LD_LIBRARY_PATH/d' build/_setup_env.sh
390131
'';
391-
392-
# Useful to use upstream's build.sh to catch regressions if any dependencies change
393-
# TODO: add KBUILD env vars for pre-raviole on android 13
394132
preBuild = ''
395133
mkdir -p ../../../${builtRelpath} out
396134
chmod a+w -R ../../../${builtRelpath} out
397135
'';
398136

137+
# TODO: add KBUILD env vars for pre-raviole on android 13
399138
buildPhase =
400139
let
401140
useCodenameArg = config.androidVersion <= 12;
402-
CFLAGS = "'-isystem ${pkgs.glibc.dev.dev.dev} -L${openssl'.out}/lib'";
403141
in
404142
''
405-
runHook preBuild
143+
set -eo pipefail
144+
${preBuild}
406145
407-
LLVM="" CC=${android-gcc}/bin/aarch64-unknown-linux-android-cc HOSTCC=gcc HOSTCXX=g++ \
408-
LD=${android-bintools}/bin/aarch64-unknown-linux-android-ld HOSTLD=ld \
409-
STRIP=${android-bintools}/bin/aarch64-unknown-linux-android-strip \
410-
OBJCOPY=${android-bintools}/bin/aarch64-unknown-linux-android-objcopy \
411-
OBJDUMP=${android-bintools}/bin/aarch64-unknown-linux-android-objdump \
412-
AR=${android-bintools}/bin/aarch64-unknown-linux-android-ar \
413-
AS=${android-bintools}/bin/aarch64-unknown-linux-android-as \
414-
NM=${android-bintools}/bin/aarch64-unknown-linux-android-nm \
415-
KBUILD_MODPOST_WARN=1 \
416-
${if postRaviole then "LTO=full BUILD_AOSP_KERNEL=1" else "BUILD_CONFIG=${buildConfigVar}"} \
146+
${if postRaviole then "LTO=full BUILD_AOSP_KERNEL=1" else "BUILD_CONFIG=${buildConfigVar}"} \
147+
cflags="--sysroot /usr " \
148+
LD_LIBRARY_PATH="/usr/lib/:/usr/lib32/" \
417149
./${buildScript} \
418-
STRIP=${android-bintools}/bin/aarch64-unknown-linux-android-strip \
419-
DTC_FLAGS='-Wno-reg_format -Wno-avoid_default_addr_size -Wno-unit_address_vs_reg -Wno-graph_child_address -Wno-unit_address_format -Wno-interrupt_provider -@' \
420150
${lib.optionalString useCodenameArg builtKernelName}
421151
422-
runHook postBuild
152+
${postBuild}
423153
'';
424154

425155
postBuild = ''

modules/base.nix

+1
Original file line numberDiff line numberDiff line change
@@ -605,6 +605,7 @@ in
605605
name = "robotnix-build";
606606
targetPkgs = pkgs: config.envPackages;
607607
multiPkgs = pkgs: with pkgs; [ zlib ];
608+
extraOutputsToInstall = ["dev"];
608609
};
609610
};
610611
}

modules/envpackages.nix

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ in
2727
# Things not in build/soong/ui/build/paths/config.go
2828
nettools # Needed for "hostname" in build/soong/ui/build/sandbox_linux.go
2929
procps # Needed for "ps" in build/envsetup.sh
30+
glibc
3031
]
3132
(mkIf (config.androidVersion >= 10) [
3233
freetype # Needed by jdk9 prebuilt

modules/signing.nix

+1
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,7 @@ in
358358
'';
359359

360360
build.signing.withKeys = keysDir: script: ''
361+
set -x
361362
export KEYSDIR=${keysDir}
362363
if [[ "$KEYSDIR" ]]; then
363364
if [[ ! -d "$KEYSDIR" ]]; then

modules/source.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@ let
4242
else { "${builtins.head xs}" = listToTreeBranch (builtins.tail xs); };
4343
combineTreeBranches = branches:
4444
lib.foldr lib.recursiveUpdate {} branches;
45-
enabledDirs = lib.filterAttrs (name: dir: dir.enable) config.source.dirs;
4645
in
47-
combineTreeBranches (lib.mapAttrsToList (name: dir: listToTreeBranch (lib.splitString "/" dir.relpath)) enabledDirs);
46+
combineTreeBranches (lib.mapAttrsToList (name: dir: listToTreeBranch (lib.splitString "/" dir.relpath)) config.source.dirs);
4847

4948
fileModule = types.submodule ({ config, ... }: {
5049
options = {

0 commit comments

Comments
 (0)