Last change
on this file was
c5c522c,
checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago
|
initial commit, transferred from cleaned syn3 svn tree
|
-
Property mode set to
100755
|
File size:
605 bytes
|
Rev | Line | |
---|
[c5c522c] | 1 | #!/bin/ash |
---|
| 2 | |
---|
| 3 | PATH=/usr/sbin:/usr/bin:/sbin:/bin |
---|
| 4 | BACK_UP="\033[1K\033[0G" |
---|
| 5 | NORMAL="\033[0m" |
---|
| 6 | WARN="\033[33;1m" |
---|
| 7 | BAD="\033[31;1m" |
---|
| 8 | BOLD="\033[1m" |
---|
| 9 | GOOD="\033[32;1m" |
---|
| 10 | |
---|
| 11 | NOBLANK="\033[9;0]" |
---|
| 12 | CLS="\033[H\033[2J" |
---|
| 13 | |
---|
| 14 | KV="`uname -r`" |
---|
| 15 | KMAJOR=`echo $KV | cut -f1 -d.` |
---|
| 16 | KMINOR=`echo $KV | cut -f2 -d.` |
---|
| 17 | KVER="${KMAJOR}.${KMINOR}" |
---|
| 18 | MISCOPTS='idebug detect' |
---|
| 19 | |
---|
| 20 | # Only sections that are in by default or those that |
---|
| 21 | # are not module groups need to be defined here... |
---|
| 22 | |
---|
| 23 | |
---|
| 24 | #HWOPTS="misc md ataraid scsi" |
---|
| 25 | HWOPTS="misc md" |
---|
| 26 | |
---|
| 27 | MY_HWOPTS=$HWOPTS |
---|
| 28 | |
---|
| 29 | QUIET=1 |
---|
| 30 | INSMOD='insmod' |
---|
| 31 | if [ "${KMINOR}" -gt '4' ] |
---|
| 32 | then |
---|
| 33 | KSUFF='.ko' |
---|
| 34 | else |
---|
| 35 | KSUFF='.o' |
---|
| 36 | fi |
---|
| 37 | |
---|
| 38 | CDROOT=0 |
---|
Note: See
TracBrowser
for help on using the repository browser.