about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/os-specific/linux/kernel/builder.sh4
-rw-r--r--pkgs/os-specific/linux/kernel/generate-config.pl3
2 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/builder.sh b/pkgs/os-specific/linux/kernel/builder.sh
index f756c140c49e4..a67877c9fd6af 100644
--- a/pkgs/os-specific/linux/kernel/builder.sh
+++ b/pkgs/os-specific/linux/kernel/builder.sh
@@ -24,7 +24,7 @@ configurePhase() {
     # generate-config.pl can answer them.
     sed -e '/fflush(stdout);/i\printf("###");' -i scripts/kconfig/conf.c
 
-    # Get a basic config file for later refinement with $generateConfig
+    # Get a basic config file for later refinement with $generateConfig.
     make $kernelBaseConfig ARCH=$arch
 
     # Create the config file.
@@ -33,12 +33,14 @@ configurePhase() {
     DEBUG=1 ARCH=$arch KERNEL_CONFIG=kernel-config perl -w $generateConfig
 }
 
+
 postBuild() {
    if [ "$platformName" == "sheevaplug" ]; then
        make uImage
    fi
 }
 
+
 installPhase() {
 
     ensureDir $out
diff --git a/pkgs/os-specific/linux/kernel/generate-config.pl b/pkgs/os-specific/linux/kernel/generate-config.pl
index be5118672e3bc..e8f7e6555d33b 100644
--- a/pkgs/os-specific/linux/kernel/generate-config.pl
+++ b/pkgs/os-specific/linux/kernel/generate-config.pl
@@ -94,7 +94,8 @@ sub runConfig {
             }
             
             else {
-                die "don't know how to answer this question: $line\n";
+                warn "don't know how to answer this question: $line\n";
+                print OUT "\n";
             }
         
             $line = "";