ixp4xx-kernel, slugos: moved some modules into the kernel (those that are the lowest...
[vuplus_openembedded] / packages / slugos-init / files / modulefunctions
1 #!/bin/sh
2 # . this file to load the functions for automatically loading modules
3
4 . /etc/default/functions
5
6 loaddiskmods(){
7         case "$(machine)" in
8             nslu2)                     
9                 modprobe ohci-hcd
10                 ;;
11             nas100d)
12                 modprobe pata-artop
13                 modprobe uhci-hcd
14                 ;;
15             dsmg600)
16                 modprobe pata-artop
17                 modprobe uhci-hcd
18                 ;;
19
20         esac
21 }
22
23 loadnetmods(){
24 }
25
26 loadmiscmods(){
27 }
28