diff options
author | maximilian attems <maks@debian.org> | 2005-11-28 17:50:24 +0100 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2005-11-28 17:50:24 +0100 |
commit | 57732aa03ef035c09cfcea98086fff11670e7470 (patch) | |
tree | 94ed81f49fcc433634f029e6e9dfe65e878ecc20 | |
parent | 5952a2fe8e6484b1813faaab93783764ff9026e8 (diff) | |
download | initramfs-tools-57732aa03ef035c09cfcea98086fff11670e7470.tar.gz initramfs-tools-57732aa03ef035c09cfcea98086fff11670e7470.zip |
sync ubuntu: breaknow
-rw-r--r-- | debian/changelog | 16 | ||||
-rwxr-xr-x | init | 3 |
2 files changed, 19 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 099c3a8..aa337a8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,8 @@ initramfs-tools (0.41) unstable; urgency=low * Special thanks to Paul Traina for previous udev / emvs work. + * Sync with Ubuntu (0.36ubuntu6). + -- maximilian attems <maks@sternwelten.at> Mon, 28 Nov 2005 17:26:40 +0100 initramfs-tools (0.40) unstable; urgency=high @@ -49,6 +51,20 @@ initramfs-tools (0.39) unstable; urgency=medium -- maximilian attems <maks@sternwelten.at> Thu, 17 Nov 2005 19:59:47 +0100 +initramfs-tools (0.36ubuntu6) dapper; urgency=low + + * Rename "panic" to "breaknow" + + -- Scott James Remnant <scott@ubuntu.com> Wed, 23 Nov 2005 10:23:54 +0000 + +initramfs-tools (0.36ubuntu5) dapper; urgency=low + + * Abort the boot sequence as early as possible if "panic" is placed on the + kernel command-line, allowing debugging of scripts in init-top. + + -- Scott James Remnant <scott@ubuntu.com> Mon, 21 Nov 2005 08:40:20 +0000 + + initramfs-tools (0.36ubuntu4) dapper; urgency=low * Replace all occurances of /etc/mkinitramfs in mkinitramfs with $CONFDIR, @@ -59,6 +59,9 @@ for x in $(cat /proc/cmdline); do break) break=yes ;; + breaknow) + panic "Spawning shell within the initramfs" + ;; esac done |