From: Stephen Rothwell Date: Thu, 29 Aug 2024 08:01:49 +0000 (+1000) Subject: do_last_build: fixes for new host kernel and new binutils X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=baf0ad177c46aa0fa058eb46929e671a935153a0;p=next-scripts do_last_build: fixes for new host kernel and new binutils The new Debian host kernel uses 4k pages --- 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