From: Stephen Rothwell Date: Sat, 27 Jun 2015 00:41:17 +0000 (+1000) Subject: do_build: actually do allmodconfig builds again X-Git-Url: http://git.ozlabs.org/?a=commitdiff_plain;h=c2989fcd4f25864291707b28bdf240bc3db4794e;p=next-scripts do_build: actually do allmodconfig builds again --- diff --git a/do_build b/do_build index 6909065..4421322 100755 --- a/do_build +++ b/do_build @@ -26,7 +26,7 @@ ssh root@"$build_host" unshare -n su $(id -u -n) <<-EOF log_x86=\$d.log e=\$d.except echo CONFIG_BUILD_DOCSRC=n >\$e || exit 1 - KCONFIG_ALLCONFIG=\$e cross -n -N -a x86_64 -c $gcc_version O=\$d allyesconfig || exit 1 + KCONFIG_ALLCONFIG=\$e cross -n -N -a x86_64 -c $gcc_version O=\$d allmodconfig || exit 1 echo "Forking x86 build ..." /usr/bin/time cross -n -N -a x86_64 -c $gcc_version O=\$d -j$j_factor -s > \$log_x86 2>&1 &