]> git.ozlabs.org Git - next-scripts/commitdiff
do_last_build: add an x86_64 allnoconfig
authorStephen Rothwell <sfr@canb.auug.org.au>
Thu, 4 Feb 2016 02:51:14 +0000 (13:51 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 4 Feb 2016 02:51:14 +0000 (13:51 +1100)
remove the arm defconfig as it is now the same as the multi_v7_config

do_last_build

index c92a49a864605c7adb70bb06553f7be628467506..fb4ba0a5577735ee5270aadc690eb068509b78cb 100755 (executable)
@@ -24,6 +24,12 @@ $cmd <<-EOF
        echo Building: x86_64 modules_install
        INSTALL_MOD_PATH="${build_dir%/*}" /usr/bin/time cross -n -N -a x86_64 -c $gcc_version O=../x86_64_allmodconfig -j$j_factor -s modules_install
 
+       echo Building: x86_64 allnoconfig
+       d=../x86_64_allnoconfig
+       [ -d \$d ] || mkdir \$d
+       cross -n -N -a x86_64 -c $gcc_version O=\$d allnoconfig
+       cross -n -N -a x86_64 -c $gcc_version O=\$d -j$j_factor -s
+
        echo Building: powerpc allnoconfig
        d=../powerpc_allnoconfig
        [ -d \$d ] || mkdir \$d
@@ -61,7 +67,7 @@ $cmd <<-EOF
        rm .scmversion
 EOF
 
-for a in i386:x86_64 sparc64 sparc:sparc64 arm
+for a in i386:x86_64 sparc64 sparc:sparc64
 do
        ka=${a%:*}
        ca=${a#*:}