From baf0ad177c46aa0fa058eb46929e671a935153a0 Mon Sep 17 00:00:00 2001 From: Stephen Rothwell Date: Thu, 29 Aug 2024 18:01:49 +1000 Subject: [PATCH] do_last_build: fixes for new host kernel and new binutils The new Debian host kernel uses 4k pages --- do_last_build | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/do_last_build b/do_last_build index 90ab9a9..0164f99 100755 --- a/do_last_build +++ b/do_last_build @@ -32,7 +32,12 @@ $cmd <<-EOF echo Building: powerpc allyesconfig d=../powerpc_allyesconfig [ -d \$d ] || mkdir \$d - make ARCH=powerpc -s O=\$d allyesconfig + e=\$d.except + echo CONFIG_LD_DEAD_CODE_DATA_ELIMINATION=n >\$e + if [ -r \$g ]; then + cat \$g >>\$e + fi + KCONFIG_ALLCONFIG=\$e make ARCH=powerpc -s O=\$d allyesconfig printf 'Backgrouding the %s build\n' 'powerpc_allyesconfig' make ARCH=powerpc O=\$d -j$j_factor -O -s -k >\$d.log 2>&1