2009-12-12 13:51:07 +00:00
|
|
|
# This script runs `make config' to generate a Linux kernel
|
|
|
|
# configuration file. For each question (i.e. kernel configuration
|
|
|
|
# option), unless an override is provided, it answers "m" if possible,
|
|
|
|
# and otherwise uses the default answer (as determined by the default
|
|
|
|
# config for the architecture). Overrides are read from the file
|
|
|
|
# $KERNEL_CONFIG, which on each line contains an option name and an
|
|
|
|
# answer, e.g. "EXT2_FS_POSIX_ACL y". The script warns about ignored
|
|
|
|
# options in $KERNEL_CONFIG, and barfs if `make config' selects
|
|
|
|
# another answer for an option than the one provided in
|
|
|
|
# $KERNEL_CONFIG.
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use IPC::Open2;
|
2014-01-01 14:21:25 +00:00
|
|
|
use Cwd;
|
|
|
|
|
|
|
|
my $wd = getcwd;
|
2009-12-12 13:51:07 +00:00
|
|
|
|
|
|
|
my $debug = $ENV{'DEBUG'};
|
2010-02-16 19:27:51 +00:00
|
|
|
my $autoModules = $ENV{'AUTO_MODULES'};
|
2009-12-12 13:51:07 +00:00
|
|
|
|
|
|
|
$SIG{PIPE} = 'IGNORE';
|
|
|
|
|
|
|
|
# Read the answers.
|
|
|
|
my %answers;
|
2009-12-14 09:27:15 +00:00
|
|
|
my %requiredAnswers;
|
2009-12-12 13:51:07 +00:00
|
|
|
open ANSWERS, "<$ENV{KERNEL_CONFIG}" or die;
|
|
|
|
while (<ANSWERS>) {
|
|
|
|
chomp;
|
|
|
|
s/#.*//;
|
2009-12-14 09:27:15 +00:00
|
|
|
if (/^\s*([A-Za-z0-9_]+)(\?)?\s+(\S+)\s*$/) {
|
|
|
|
$answers{$1} = $3;
|
2010-08-14 09:18:57 +00:00
|
|
|
$requiredAnswers{$1} = !(defined $2);
|
2009-12-14 09:27:15 +00:00
|
|
|
} elsif (!/^\s*$/) {
|
|
|
|
die "invalid config line: $_";
|
|
|
|
}
|
2009-12-12 13:51:07 +00:00
|
|
|
}
|
|
|
|
close ANSWERS;
|
|
|
|
|
|
|
|
sub runConfig {
|
|
|
|
|
|
|
|
# Run `make config'.
|
2014-01-01 14:21:25 +00:00
|
|
|
my $pid = open2(\*IN, \*OUT, "make -C $ENV{SRC} O=$wd config SHELL=bash ARCH=$ENV{ARCH}");
|
2009-12-12 13:51:07 +00:00
|
|
|
|
|
|
|
# Parse the output, look for questions and then send an
|
|
|
|
# appropriate answer.
|
|
|
|
my $line = ""; my $s;
|
|
|
|
my %choices = ();
|
|
|
|
|
|
|
|
my ($prevQuestion, $prevName);
|
|
|
|
|
|
|
|
while (!eof IN) {
|
|
|
|
read IN, $s, 1 or next;
|
|
|
|
$line .= $s;
|
|
|
|
|
|
|
|
#print STDERR "LINE: $line\n";
|
|
|
|
|
|
|
|
if ($s eq "\n") {
|
|
|
|
print STDERR "GOT: $line" if $debug;
|
|
|
|
|
2013-08-05 17:59:43 +00:00
|
|
|
# Remember choice alternatives ("> 1. bla (FOO)" or " 2. bla (BAR) (NEW)").
|
|
|
|
if ($line =~ /^\s*>?\s*(\d+)\.\s+.*?\(([A-Za-z0-9_]+)\)(?:\s+\(NEW\))?\s*$/) {
|
2009-12-12 13:51:07 +00:00
|
|
|
$choices{$2} = $1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$line = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
elsif ($line =~ /###$/) {
|
|
|
|
# The config program is waiting for an answer.
|
|
|
|
|
|
|
|
# Is this a regular question? ("bla bla (OPTION_NAME) [Y/n/m/...] ")
|
|
|
|
if ($line =~ /(.*) \(([A-Za-z0-9_]+)\) \[(.*)\].*###$/) {
|
|
|
|
my $question = $1; my $name = $2; my $alts = $3;
|
|
|
|
my $answer = "";
|
|
|
|
# Build everything as a module if possible.
|
2010-02-16 19:27:51 +00:00
|
|
|
$answer = "m" if $autoModules && $alts =~ /\/m/;
|
2009-12-12 13:51:07 +00:00
|
|
|
$answer = $answers{$name} if defined $answers{$name};
|
|
|
|
print STDERR "QUESTION: $question, NAME: $name, ALTS: $alts, ANSWER: $answer\n" if $debug;
|
|
|
|
print OUT "$answer\n";
|
|
|
|
die "repeated question: $question" if $prevQuestion && $prevQuestion eq $question && $name eq $prevName;
|
|
|
|
$prevQuestion = $question;
|
|
|
|
$prevName = $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Is this a choice? ("choice[1-N]: ")
|
|
|
|
elsif ($line =~ /choice\[(.*)\]: ###$/) {
|
|
|
|
my $answer = "";
|
|
|
|
foreach my $name (keys %choices) {
|
|
|
|
$answer = $choices{$name} if ($answers{$name} || "") eq "y";
|
|
|
|
}
|
|
|
|
print STDERR "CHOICE: $1, ANSWER: $answer\n" if $debug;
|
|
|
|
print OUT "$answer\n" if $1 =~ /-/;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Some questions lack the option name ("bla bla [Y/n/m/...] ").
|
|
|
|
elsif ($line =~ /(.*) \[(.*)\] ###$/) {
|
|
|
|
print OUT "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2010-01-27 15:43:27 +00:00
|
|
|
warn "don't know how to answer this question: $line\n";
|
|
|
|
print OUT "\n";
|
2009-12-12 13:51:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$line = "";
|
|
|
|
%choices = ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close IN;
|
|
|
|
waitpid $pid, 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Run `make config' several times to converge on the desired result.
|
|
|
|
# (Some options may only become available after other options are
|
|
|
|
# set in a previous run.)
|
|
|
|
runConfig;
|
|
|
|
runConfig;
|
|
|
|
|
|
|
|
# Read the final .config file and check that our answers are in
|
|
|
|
# there. `make config' often overrides answers if later questions
|
|
|
|
# cause options to be selected.
|
|
|
|
my %config;
|
|
|
|
open CONFIG, "<.config" or die;
|
|
|
|
while (<CONFIG>) {
|
|
|
|
chomp;
|
|
|
|
if (/^CONFIG_([A-Za-z0-9_]+)=(.*)$/) {
|
|
|
|
$config{$1} = $2;
|
|
|
|
} elsif (/^# CONFIG_([A-Za-z0-9_]+) is not set$/) {
|
|
|
|
$config{$1} = "n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close CONFIG;
|
|
|
|
|
|
|
|
foreach my $name (sort (keys %answers)) {
|
2009-12-14 17:22:38 +00:00
|
|
|
my $f = $requiredAnswers{$name} && $ENV{'ignoreConfigErrors'} ne "1"
|
2016-08-06 13:21:46 +00:00
|
|
|
? sub { die "error: " . $_[0]; } : sub { warn "warning: " . $_[0]; };
|
2009-12-14 09:27:15 +00:00
|
|
|
&$f("unused option: $name\n") unless defined $config{$name};
|
|
|
|
&$f("option not set correctly: $name\n")
|
2009-12-12 13:51:07 +00:00
|
|
|
if $config{$name} && $config{$name} ne $answers{$name};
|
|
|
|
}
|