* try just using the defconfig everytime

This commit is contained in:
Jeff Carr 2011-10-27 17:04:35 -04:00
parent ff414a4fbe
commit 00d9e319cf
1 changed files with 3 additions and 2 deletions

View File

@ -13,14 +13,15 @@ if ( ! -d "linux-3.0.8") {
} }
chdir "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_standard("make -v", "make");
install_gcc(); install_gcc();
exit if $ARGV[0] eq "--prep"; exit if $ARGV[0] eq "--prep";
system("make oldconfig"); # system("make oldconfig");
system("make defconfig");
my $cpus = `cat /proc/cpuinfo |grep QEMU |wc -l`; my $cpus = `cat /proc/cpuinfo |grep QEMU |wc -l`;
chomp $cpus; chomp $cpus;
system("make -j$cpus"); system("make -j$cpus");