blob: 784f6ef66255617352bfb355570d0a7faadca40d (
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
# . this file to load the functions for automatically loading modules
. /etc/default/functions
loaddiskmods(){
case "$(machine)" in
nslu2)
modprobe ohci-hcd
;;
nas100d)
modprobe pata-artop
modprobe uhci-hcd
;;
dsmg600)
modprobe pata-artop
modprobe uhci-hcd
;;
esac
}
loadnetmods(){
case "$(machine)" in
dsmg600)
modprobe via-velocity
;;
*)
true
;;
esac
}
loadmiscmods(){
true
}
|