From 00d9e319cffecc6727ae1a99f3ead22af5b5dd24 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 27 Oct 2011 17:04:35 -0400 Subject: [PATCH] * try just using the defconfig everytime --- kernel/build.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kernel/build.pl b/kernel/build.pl index 50106e6..17ce42d 100755 --- a/kernel/build.pl +++ b/kernel/build.pl @@ -13,14 +13,15 @@ if ( ! -d "linux-3.0.8") { } chdir "linux-3.0.8"; -system("cp /root/benchmarks/kernel/config-3.0.8 .config"); +# system("cp /root/benchmarks/kernel/config-3.0.8 .config"); install_standard("make -v", "make"); install_gcc(); exit if $ARGV[0] eq "--prep"; -system("make oldconfig"); +# system("make oldconfig"); +system("make defconfig"); my $cpus = `cat /proc/cpuinfo |grep QEMU |wc -l`; chomp $cpus; system("make -j$cpus");