[kernel] r15164 - in dists/lenny/linux-2.6/debian: . templates/temp.image.plain

Ben Hutchings benh at alioth.debian.org
Tue Feb 16 03:42:47 UTC 2010


Author: benh
Date: Tue Feb 16 03:42:46 2010
New Revision: 15164

Log:
postinst: Fix pattern-matching for 'do_bootloader' configuration option (Closes: #568317)

Modified:
   dists/lenny/linux-2.6/debian/changelog
   dists/lenny/linux-2.6/debian/templates/temp.image.plain/postinst

Modified: dists/lenny/linux-2.6/debian/changelog
==============================================================================
--- dists/lenny/linux-2.6/debian/changelog	Tue Feb 16 03:21:13 2010	(r15163)
+++ dists/lenny/linux-2.6/debian/changelog	Tue Feb 16 03:42:46 2010	(r15164)
@@ -23,6 +23,8 @@
   * megaraid_sas: Fix I/O and shutdown sequencing bugs (Closes: #568345)
   * megaraid_sas: Add support for MegaRAID SAS 9260 and other PCIe gen2
     controllers (Closes: #547183)
+  * postinst: Fix pattern-matching for 'do_bootloader' configuration option
+    (Closes: #568317)
 
  -- maximilian attems <maks at debian.org>  Mon, 28 Dec 2009 23:44:19 +0100
 

Modified: dists/lenny/linux-2.6/debian/templates/temp.image.plain/postinst
==============================================================================
--- dists/lenny/linux-2.6/debian/templates/temp.image.plain/postinst	Tue Feb 16 03:21:13 2010	(r15163)
+++ dists/lenny/linux-2.6/debian/templates/temp.image.plain/postinst	Tue Feb 16 03:42:46 2010	(r15164)
@@ -140,8 +140,8 @@
       $clobber_modules = "Yes" if /clobber_modules\s*=\s*(yes|true|1)\s*$/ig;
       $do_boot_enable  = "Yes" if /do_boot_enable\s*=\s*(yes|true|1)\s*$/ig;
       $do_bootfloppy   = "Yes" if /do_bootfloppy\s*=\s*(yes|true|1)\s*$/ig;
-      $do_bootloader   = "Yes" if /do_bootloader\s*=\s*(yes|true|1)\s*$/ig;
-      $explicit_do_loader = "YES" if /do_bootloader\s*=\s*(yes|true|1)\s*$/ig;
+      $do_bootloader   = "Yes" if /do_bootloader\s*=\s*(yes|true|1)\s*$/i;
+      $explicit_do_loader = "YES" if /do_bootloader\s*=\s*(yes|true|1)\s*$/i;
       $relative_links  = "Yes" if /relative_links\s*=\s*(yes|true|1)\s*$/ig;
       $do_initrd       = "Yes" if /do_initrd\s*=\s*(yes|true|1)\s*$/ig;
       $warn_initrd     = "Yes" if /warn_initrd\s*=\s*(yes|true|1)\s*$/ig;



More information about the Kernel-svn-changes mailing list