diff options
author | Daniel Baumann <daniel@debian.org> | 2012-06-05 15:50:33 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-06-05 16:11:16 +0200 |
commit | 4af5ca4efc7f7f3c3457de9405f7a95d0cf4181a (patch) | |
tree | fd48b5d9e2d667ad4701f72bb8a02268fabb3130 | |
parent | 27ebf6d2b60a0ce4acac11794203c9ddc20706e2 (diff) | |
download | live-boot-4af5ca4efc7f7f3c3457de9405f7a95d0cf4181a.tar.gz live-boot-4af5ca4efc7f7f3c3457de9405f7a95d0cf4181a.zip |
Removing live-premount modules script, not needed anymore.
This script did two things:
* forcefully load ide-generic to workaround a bug in qemu bios
that made it hang during ide detection. This has been fixed
4 years ago in qemu, so it's not required to do this anymore.
* forcefully load esp on sparc. This is being loaded automatically
by udev these days and should be reliable enough.
-rwxr-xr-x | initramfs-tools/scripts/live-premount/modules | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/initramfs-tools/scripts/live-premount/modules b/initramfs-tools/scripts/live-premount/modules deleted file mode 100755 index 1af7a9e..0000000 --- a/initramfs-tools/scripts/live-premount/modules +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -#set -e - -# initramfs-tools header - -PREREQ="udev" - -prereqs() -{ - echo "${PREREQ}" -} - -case "${1}" in - prereqs) - prereqs - exit 0 - ;; -esac - -# live-boot script - -# The following modprobe entry is a workaround to live-boot not -# finding the root filesytem. -# -# See also: -# * http://lists.alioth.debian.org/pipermail/debian-live-devel/2007-May/001459.html -# * http://lists.alioth.debian.org/pipermail/debian-live-devel/2007-June/001517.html -# * http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=363047 - -modprobe -q ide-generic -modprobe -q esp |