[SCM] live-initramfs branch, master, updated. 1.157.4-1-16-g0d83931

Daniel Baumann daniel at debian.org
Mon Oct 26 12:30:05 UTC 2009


The following commit has been merged in the master branch:
commit 0d83931f1d729a9daec315aecc82da9907289df4
Author: Daniel Baumann <daniel at debian.org>
Date:   Mon Oct 26 13:28:56 2009 +0100

    Merging casper 1.162.

diff --git a/docs/ChangeLog.casper b/docs/ChangeLog.casper
index b57c39b..e051d62 100644
--- a/docs/ChangeLog.casper
+++ b/docs/ChangeLog.casper
@@ -1,3 +1,10 @@
+casper (1.162) jaunty; urgency=low
+
+  * If /cdrom is writable, call the diverted update-initramfs and copy
+    the resulting kernel and initrd to /cdrom/casper (LP: #292159).
+
+ -- Evan Dandrea <evand at ubuntu.com>  Tue, 10 Mar 2009 14:36:30 +0000
+
 casper (1.161) jaunty; urgency=low
 
   [ Juanje Ojeda ]
diff --git a/scripts/live-bottom/43disable_updateinitramfs b/scripts/live-bottom/43disable_updateinitramfs
index 0a434ed..dab2290 100755
--- a/scripts/live-bottom/43disable_updateinitramfs
+++ b/scripts/live-bottom/43disable_updateinitramfs
@@ -22,20 +22,37 @@ esac
 
 . /scripts/live-functions
 
-log_begin_msg "Disabling update-initramfs"
+log_begin_msg "Possibly disabling update-initramfs (useless on a live CD)..."
 
 # live-initramfs script
 
 chroot /root dpkg-divert --add --rename --quiet \
 	/usr/sbin/update-initramfs
 
-cat > /root/usr/sbin/update-initramfs <<EOF
+# Running off a USB disk or other writable media.
+if [ -w /cdrom ]
+then
+
+cat > /root/usr/sbin/update-initramfs << EOF
+#!/bin/sh
+
+update-initramfs.distrib "$@"
+cp /initrd.img /cdrom/live/initrd.gz
+cp /vmlinuz /cdrom/live/vmlinuz
+exit 0
+EOF
+
+else
+
+cat > /root/usr/sbin/update-initramfs << EOF
 #!/bin/sh
 
-echo "update-initramfs is disabled since running on a live CD"
+echo "update-initramfs is disabled since running on read-only media"
 exit 0
 EOF
 
+fi
+
 chmod 0755 /root/usr/sbin/update-initramfs
 
 log_end_msg

-- 
live-initramfs



More information about the debian-live-changes mailing list