blob: 97fc662668af3978c6d8eb8393738a0d89f672e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/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
|