summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/local-top/udev_helper23
1 files changed, 0 insertions, 23 deletions
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