|
24 | 24 | subPaths = prefix: (lib.filter (name: (lib.hasPrefix prefix name)) (lib.attrNames config.source.dirs));
|
25 | 25 | kernelSources = subPaths sourceRelpath;
|
26 | 26 | 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} |
29 | 30 | '';
|
30 | 31 | linkSrc = name: c: lib.optionalString (lib.hasAttr "linkfiles" c) (lib.concatStringsSep "\n" (map
|
31 | 32 | ({ src, dest }: ''
|
|
46 | 47 | # the kernel build scripts deeply assume clang as of android 13
|
47 | 48 | llvm = pkgs.llvmPackages_13;
|
48 | 49 | 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 |
| - ); |
239 | 50 |
|
240 | 51 | repoName = {
|
241 | 52 | "sargo" = "crosshatch";
|
|
267 | 78 | android-bintools = android-stdenv.cc.bintools.bintools_bin;
|
268 | 79 | android-gcc = android-stdenv.cc;
|
269 | 80 | in
|
270 |
| - stdenv.mkDerivation (rec { |
| 81 | + config.build.mkAndroid (rec { |
271 | 82 | name = "grapheneos-${builtKernelName}-kernel";
|
272 | 83 | inherit (config.kernel) patches postPatch;
|
273 | 84 |
|
274 |
| - src = pkgs.emptyDirectory; |
275 |
| - sourceRoot = "."; |
276 | 85 | nativeBuildInputs = with pkgs; [
|
277 | 86 | perl
|
278 | 87 | bc
|
@@ -303,123 +112,44 @@ let
|
303 | 112 | elfutils
|
304 | 113 | ];
|
305 | 114 |
|
306 |
| - preUnpack = '' |
| 115 | + unpackPhase = '' |
307 | 116 | 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 |
312 | 120 | '';
|
313 | 121 |
|
314 | 122 | postUnpack = "cd ${sourceRelpath}";
|
315 | 123 |
|
| 124 | + # Useful to use upstream's build.sh to catch regressions if any dependencies change |
316 | 125 | 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 |
358 | 128 | 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 |
390 | 131 | '';
|
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 |
394 | 132 | preBuild = ''
|
395 | 133 | mkdir -p ../../../${builtRelpath} out
|
396 | 134 | chmod a+w -R ../../../${builtRelpath} out
|
397 | 135 | '';
|
398 | 136 |
|
| 137 | + # TODO: add KBUILD env vars for pre-raviole on android 13 |
399 | 138 | buildPhase =
|
400 | 139 | let
|
401 | 140 | useCodenameArg = config.androidVersion <= 12;
|
402 |
| - CFLAGS = "'-isystem ${pkgs.glibc.dev.dev.dev} -L${openssl'.out}/lib'"; |
403 | 141 | in
|
404 | 142 | ''
|
405 |
| - runHook preBuild |
| 143 | + set -eo pipefail |
| 144 | + ${preBuild} |
406 | 145 |
|
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/" \ |
417 | 149 | ./${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 -@' \ |
420 | 150 | ${lib.optionalString useCodenameArg builtKernelName}
|
421 | 151 |
|
422 |
| - runHook postBuild |
| 152 | + ${postBuild} |
423 | 153 | '';
|
424 | 154 |
|
425 | 155 | postBuild = ''
|
|
0 commit comments