diff options
author | maximilian attems <maks@debian.org> | 2005-11-28 17:54:12 +0100 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2005-11-28 17:54:12 +0100 |
commit | 31cb69967fcd2cb034b0ef68e648e9a43fdd32a3 (patch) | |
tree | 3009762e0d6385c92a7072ee92a1823e9a967492 | |
parent | 57732aa03ef035c09cfcea98086fff11670e7470 (diff) | |
download | initramfs-tools-31cb69967fcd2cb034b0ef68e648e9a43fdd32a3.tar.gz initramfs-tools-31cb69967fcd2cb034b0ef68e648e9a43fdd32a3.zip |
kill udev as late as possible.
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | init | 3 |
2 files changed, 6 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index aa337a8..323affc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ initramfs-tools (0.41) unstable; urgency=low - "Una mattina mi sono svegliato" + "Una mattina mi sono svegliato" * High urgency upload to cope with newer udev upstream - bonus: condition to test against when udev is ready. (Closes: #341014) @@ -11,7 +11,10 @@ initramfs-tools (0.41) unstable; urgency=low * Sync with Ubuntu (0.36ubuntu6). - -- maximilian attems <maks@sternwelten.at> Mon, 28 Nov 2005 17:26:40 +0100 + * Kill udevd as late as possible. Thanks David Härdeman <david@2gen.com> + for the patch. (Closes: #339093) + + -- maximilian attems <maks@sternwelten.at> Mon, 28 Nov 2005 17:53:24 +0100 initramfs-tools (0.40) unstable; urgency=high @@ -102,8 +102,6 @@ log_begin_msg "Running /scripts/init-premount" run_scripts /scripts/init-premount log_end_msg -killall udevd - log_begin_msg "Mounting root file system" mountroot log_end_msg @@ -114,6 +112,7 @@ run_scripts /scripts/init-bottom # Move our /dev to the real filesystem. Do the setup that udev otherwise # would. +killall udevd mkdir -p /dev/.static/dev chmod 700 /dev/.static/ mount -n -o bind ${rootmnt}/dev /dev/.static/dev |