From: Stephen Rothwell Date: Sun, 5 Nov 2017 21:11:53 +0000 (+1100) Subject: do_build: we don't need to be explicit about CONFIG_MODULES any more X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=ca00d9f9f2fc913c8d70fe0f8748d20c4c874a60;p=next-scripts do_build: we don't need to be explicit about CONFIG_MODULES any more --- diff --git a/do_build b/do_build index 88729a2..970ce24 100755 --- a/do_build +++ b/do_build @@ -92,9 +92,7 @@ $cmd <<-EOF d="$bparent/x86_64_allmodconfig" [ -d \$d ] || mkdir \$d || exit 1 log_x86=\$d.log - e=\$d.except - echo CONFIG_MODULES=y >>\$e || exit 1 - KCONFIG_ALLCONFIG=\$e cross -n -N -a x86_64 -c "$gcc_version" O=\$d -s allmodconfig || exit 1 + cross -n -N -a x86_64 -c "$gcc_version" O=\$d -s allmodconfig || exit 1 echo "Forking x86 build ..." /usr/bin/time cross -n -N -a x86_64 -c "$gcc_version" O=\$d -j"$j_factor" -O -s > \$log_x86 2>&1 & x86_64_pid=\$!