Last change
on this file since 1360 was 866, checked in by Bruno Cornec, 19 years ago |
- tabs inserted for scripts
- MyInsmod should be less verbose
- x86_64 directories taken in account in install-additional-tools
- one useless function removed from init
|
-
Property svn:keywords
set to
Id
|
File size:
236 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 |
|
---|
3 | res=99
|
---|
4 | for i in insmod.static insmod busybox ; do
|
---|
5 | if [ "$i" = "busybox" ] ; then
|
---|
6 | $i insmod $* 2> /dev/null
|
---|
7 | else
|
---|
8 | $i $* 2> /dev/null
|
---|
9 | fi
|
---|
10 | res=$?
|
---|
11 | [ "$res" -eq "0" ] && exit $res
|
---|
12 | done
|
---|
13 | exit $res
|
---|
Note:
See
TracBrowser
for help on using the repository browser.