Adding live-initramfs 1.96.2-1.
authorDaniel Baumann <daniel@debian.org>
Sun, 23 Sep 2007 12:46:41 +0000 (14:46 +0200)
committerDaniel Baumann <daniel@debian.org>
Wed, 9 Mar 2011 16:31:05 +0000 (17:31 +0100)
Makefile
debian/changelog
debian/control
docs/ChangeLog
docs/parameters.txt
hooks/live
manpages/live-initramfs.en.7
manpages/live-snapshot.en.1
scripts/live-bottom/12fstab

index f85a5f4..a3918eb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -108,9 +108,9 @@ uninstall:
 update:
        set -e; for FILE in docs/parameters.txt manpages/*.en.*; \
        do \
-               sed -i  -e 's/2007\\-08\\-20/2007\\-08\\-27/' \
-                       -e 's/20.08.2007/27.08.2007/' \
-                       -e 's/1.96.1/1.96.2/' \
+               sed -i  -e 's/2007\\-08\\-27/2007\\-09\\-03/' \
+                       -e 's/27.08.2007/03.09.2007/' \
+                       -e 's/1.96.2/1.96.3/' \
                $$FILE; \
        done
 
index 12a51a4..b384977 100644 (file)
@@ -1,3 +1,9 @@
+live-initramfs (1.96.2-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- Daniel Baumann <daniel@debian.org>  Mon, 27 Aug 2007 00:00:00 +0200
+
 live-initramfs (1.96.1-1) unstable; urgency=medium
 
   * New upstream release.
index d122176..adc35c9 100644 (file)
@@ -11,7 +11,7 @@ XS-VCS-Browse: http://svn.debian.org/wsvn/debian-live/dists/trunk/live-initramfs
 Package: live-initramfs
 Architecture: all
 Depends: ${misc:Depends}, file, initramfs-tools, sudo, user-setup
-Recommends: eject, live-initscripts
+Recommends: eject, wget, live-initscripts
 Suggests: genext2fs, squashfs-tools
 Description: Debian Live initramfs hook
  live-initramfs is a hook for the initramfs-tools, used to generate a initramfs
index 6d28a06..5969aec 100644 (file)
@@ -1,3 +1,12 @@
+2007-08-29  Daniel Baumann  <daniel@debian.org>
+
+       * scripts/live-bottom/12fstab:
+         - By default, we do not have fstab, so it is save to just append the
+           unionfs mount rather than overwritting it.
+       * hooks/live:
+         - Including wget if available.
+       * Uploaded 1.96.2-1.
+
 2007-08-21  Daniel Baumann  <daniel@debian.org>
 
        * Merging changes from casper 1.96.
index 032891e..5179360 100644 (file)
@@ -1,7 +1,7 @@
 Boot Parameters for Debian Live
 -------------------------------
 
-Updated for live-initramfs 1.96.1-1 on 2007-07-30.
+Updated for live-initramfs 1.96.2-1 on 2007-07-30.
 
 These options (can be combined) work from the bootloader prompt:
 
index 5e8bdc7..a59fe3b 100755 (executable)
@@ -114,3 +114,9 @@ fi
 copy_exec /sbin/udevtrigger /sbin
 copy_exec /sbin/udevsettle /sbin
 copy_exec /usr/bin/udevinfo /bin
+
+# Program: wget
+if [ -x /usr/bin/wget ]
+then
+       copy_exec /usr/bin/wget /bin
+fi
index 923b054..d4577e9 100644 (file)
@@ -1,4 +1,4 @@
-.TH LIVE\-INITRAMFS 7 "2007\-08\-20" "1.96.1" "live\-initramfs"
+.TH LIVE\-INITRAMFS 7 "2007\-08\-27" "1.96.2" "live\-initramfs"
 
 .SH NAME
 live\-initramfs \- Debian Live initramfs hook
index 7f7fe3f..4b873ed 100644 (file)
@@ -1,4 +1,4 @@
-.TH LIVE\-SNAPSHOT 1 "2007\-08\-20" "1.96.1" "live\-initramfs"
+.TH LIVE\-SNAPSHOT 1 "2007\-08\-27" "1.96.2" "live\-initramfs"
 
 .SH NAME
 live\-snapshot \- a simple script to ease persistence usage
index 9c8bfd7..b5b5602 100755 (executable)
@@ -28,7 +28,7 @@ log_begin_msg "Configuring fstab..."
 
 FSTAB=/root/etc/fstab
 
-cat > $FSTAB <<EOF
+cat >> $FSTAB << EOF
 ${UNIONTYPE} / ${UNIONTYPE} rw 0 0
 tmpfs /tmp tmpfs nosuid,nodev 0 0
 EOF