[kernel] r15352 - dists/trunk/linux-2.6/debian

Ben Hutchings benh at alioth.debian.org
Thu Mar 11 03:10:25 UTC 2010


Author: benh
Date: Thu Mar 11 03:10:21 2010
New Revision: 15352

Log:
Fix update of boot device name for LILO and related loaders

Modified:
   dists/trunk/linux-2.6/debian/changelog
   dists/trunk/linux-2.6/debian/linux-base.postinst

Modified: dists/trunk/linux-2.6/debian/changelog
==============================================================================
--- dists/trunk/linux-2.6/debian/changelog	Thu Mar 11 00:57:45 2010	(r15351)
+++ dists/trunk/linux-2.6/debian/changelog	Thu Mar 11 03:10:21 2010	(r15352)
@@ -13,6 +13,7 @@
     - For consistency with fresh installations, use or assign UUIDs rather
       than labels where both are available (Closes: #572376)
     - Replace CD/DVD/BD device names with udev-provided persistent aliases
+    - Fix update of boot device name for LILO and related loaders
 
  -- Ben Hutchings <ben at decadent.org.uk>  Sun, 28 Feb 2010 17:01:33 +0000
 

Modified: dists/trunk/linux-2.6/debian/linux-base.postinst
==============================================================================
--- dists/trunk/linux-2.6/debian/linux-base.postinst	Thu Mar 11 00:57:45 2010	(r15351)
+++ dists/trunk/linux-2.6/debian/linux-base.postinst	Thu Mar 11 03:10:21 2010	(r15352)
@@ -31,7 +31,7 @@
 sub id_to_path {
     my ($id) = @_;
     $id =~ m|^/|
-	or $id =~ s{^(LABEL|UUID)=}{'/dev/disk/by-' . lc($1) . '/'}x
+	or $id =~ s{^(LABEL|UUID)=}{'/dev/disk/by-' . lc($1) . '/'}e
 	or die "Could not map id $id to path";
     return $id;
 }



More information about the Kernel-svn-changes mailing list