diff options
author | maximilian attems <maks@debian.org> | 2007-04-02 20:21:34 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2007-04-02 20:21:34 +0200 |
commit | 1eaf8424e56e3f52c60420ce68efdef5301a47d8 (patch) | |
tree | ad709d61f79308d461d5952510c02f008903028e | |
parent | 5dfd85f416a10b1c41ca7005de38b58715c04472 (diff) | |
download | initramfs-tools-1eaf8424e56e3f52c60420ce68efdef5301a47d8.tar.gz initramfs-tools-1eaf8424e56e3f52c60420ce68efdef5301a47d8.zip |
bootfixes: mount args don't like spaces
restore_initramfs(): verbose output before action
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | init | 4 | ||||
-rwxr-xr-x | update-initramfs | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 3c7cdb8..e4c7b70 100644 --- a/debian/changelog +++ b/debian/changelog @@ -34,7 +34,7 @@ initramfs-tools (0.86) experimental; urgency=low Useful if a MINKVER set is not fulfilled. (LP: #101844) Thanks Soren Hansen <sh@linux2go.dk> for patch. - -- maximilian attems <maks@debian.org> Mon, 2 Apr 2007 15:01:59 +0200 + -- maximilian attems <maks@debian.org> Mon, 2 Apr 2007 20:20:29 +0200 initramfs-tools (0.85f) unstable; urgency=high @@ -8,8 +8,8 @@ echo "Loading, please wait..." [ -d /proc ] || mkdir /proc [ -d /tmp ] || mkdir /tmp mkdir -p /var/lock -mount -t sysfs none /sys -o nodev, noexec, nosuid -mount -t proc none /proc -o nodev, noexec, nosuid +mount -t sysfs none /sys -o nodev,noexec,nosuid +mount -t proc none /proc -o nodev,noexec,nosuid # Note that this only becomes /dev on the real filesystem if udev's scripts # are used; which they will be, but it's worth pointing out diff --git a/update-initramfs b/update-initramfs index 9d2b03e..f4c637b 100755 --- a/update-initramfs +++ b/update-initramfs @@ -117,8 +117,8 @@ backup_booted_initramfs() restore_initramfs() { [ -z "${initramfs_bak}" ] && return 0 - mv -f "${initramfs_bak}" "${initramfs}" verbose "Restoring ${initramfs_bak}" + mv -f "${initramfs_bak}" "${initramfs}" } |