summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rwxr-xr-xscripts/local-top/udev_helper23
2 files changed, 7 insertions, 23 deletions
diff --git a/debian/changelog b/debian/changelog
index ed6b6d3..dc62b5a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+initramfs-tools (0.91) UNRELEASED; urgency=low
+
+ * udev_helper: Axe the modprobe ide-generic should no longer be needed
+ for kernel since Etch.
+
+ -- maximilian attems <maks@debian.org> Sat, 25 Aug 2007 13:37:15 +0200
+
initramfs-tools (0.90a) unstable; urgency=high
* scripts/functions: simplify panic()
diff --git a/scripts/local-top/udev_helper b/scripts/local-top/udev_helper
deleted file mode 100755
index c1694b7..0000000
--- a/scripts/local-top/udev_helper
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-PREREQ=""
-
-prereqs()
-{
- echo "$PREREQ"
-}
-
-case $1 in
-# get pre-requisites
-prereqs)
- prereqs
- exit 0
- ;;
-esac
-
-# If we're booting from IDE, it might not be a PCI controller,
-# but might be an old fashioned ISA controller; in which case
-# we need to load ide-generic.
-if [ ! -e "${ROOT}" -o "${ROOT}" = "/dev/root" ]; then
- modprobe ide-generic
-fi