summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaximilian attems <max@stro.at>2008-04-02 03:18:10 +0200
committermaximilian attems <max@stro.at>2008-04-02 03:18:10 +0200
commite5f8a9faad64438852a6657ed1afcc0d45f30926 (patch)
tree3645be4132e3254f5e5903050aa9e1d7ab420353
parenta5a87b52156774a2c01039e80ad2f7706ac8f7e4 (diff)
downloadinitramfs-tools-e5f8a9faad64438852a6657ed1afcc0d45f30926.tar.gz
initramfs-tools-e5f8a9faad64438852a6657ed1afcc0d45f30926.zip
ps3 nuke useless hardcoded initramfs script.
udev takes care to load the relevant modules. also PS3PF never had landed in debian thus pretty useless to take care of it just nuke it and be happy that udev loading is fixed since 2.6.23-rc1.
-rwxr-xr-xscripts/init-premount/ps337
1 files changed, 0 insertions, 37 deletions
diff --git a/scripts/init-premount/ps3 b/scripts/init-premount/ps3
deleted file mode 100755
index 97fc662..0000000
--- a/scripts/init-premount/ps3
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-
-PREREQ=""
-
-prereqs()
-{
- echo "$PREREQ"
-}
-
-case $1 in
-# get pre-requisites
-prereqs)
- prereqs
- exit 0
- ;;
-esac
-
-case "$DPKG_ARCH" in
-powerpc|ppc64)
- # For PS3's we know these devices will exist,and that we'll need them
- while read line; do
- if [ "${line}" != "${line#machine*PS3PF}" ]; then
- # New style
- modprobe ps3disk
- modprobe ps3rom
- modprobe ps3-gelic
-
- # Old style
- modprobe ps3_storage
- modprobe gelic_net
- modprobe ohci-hcd
- modprobe ehci-hcd
- modprobe sys-manager
- fi
- done < /proc/cpuinfo
- ;;
-esac