* try just using the defconfig everytime
This commit is contained in:
parent
ff414a4fbe
commit
00d9e319cf
|
@ -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");
|
||||||
|
|
Loading…
Reference in New Issue