diff options
| -rw-r--r-- | debian/changelog | 10 | ||||
| -rw-r--r-- | debian/control | 2 | ||||
| -rw-r--r-- | debian/control.debian | 2 | ||||
| -rw-r--r-- | scripts/casper | 2 |
4 files changed, 13 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 83768c2..f97e50f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +casper (1.77+debian-7) testing; urgency=medium + + * Backported two 1 line fixes (both serious bugs) from casper-1.79+debian-1 + and casper-1.79+debian-3: + - It now depends also on "file" (Closes: #409308). + - Fix DEFCONSOLE for autoserial console, thanks to + "Alex Owen" <r.alex.owen@gmail.com>. + + -- Marco Amadori <marco.amadori@gmail.com> Thu, 8 Feb 2007 11:19:46 +0100 + casper (1.77+debian-6) unstable; urgency=medium * Improved snapshots features (even still experimental). diff --git a/debian/control b/debian/control index 0ebb148..4ce301f 100644 --- a/debian/control +++ b/debian/control @@ -8,7 +8,7 @@ Standards-Version: 3.7.2 Package: casper Architecture: any -Depends: initramfs-tools (>= 0.40), user-setup, sudo, lsb-base (>= 3.0-6) +Depends: initramfs-tools (>= 0.40), user-setup, sudo, lsb-base (>= 3.0-6), file Conflicts: usplash (<< 0.3-0) Recommends: live-package Suggests: squashfs-tools, genext2fs diff --git a/debian/control.debian b/debian/control.debian index 0ebb148..4ce301f 100644 --- a/debian/control.debian +++ b/debian/control.debian @@ -8,7 +8,7 @@ Standards-Version: 3.7.2 Package: casper Architecture: any -Depends: initramfs-tools (>= 0.40), user-setup, sudo, lsb-base (>= 3.0-6) +Depends: initramfs-tools (>= 0.40), user-setup, sudo, lsb-base (>= 3.0-6), file Conflicts: usplash (<< 0.3-0) Recommends: live-package Suggests: squashfs-tools, genext2fs diff --git a/scripts/casper b/scripts/casper index 7358f85..c462247 100644 --- a/scripts/casper +++ b/scripts/casper @@ -95,7 +95,7 @@ parse_cmdline () PRESEEDS="${PRESEEDS}\"${question}=${value}\" " ;; console=*) - export DEFCONSOLE=$(sed -e 's%.*console=%console=%' /proc/cmdline) ;; + export DEFCONSOLE="${x#*=}" ;; esac done |
