source: npl/kernel/initrd_scripts/root/etc/initrd.defaults @ 2ac0039

perl-5.22
Last change on this file since 2ac0039 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
Line 
1#!/bin/ash
2
3PATH=/usr/sbin:/usr/bin:/sbin:/bin
4BACK_UP="\033[1K\033[0G"
5NORMAL="\033[0m"
6WARN="\033[33;1m"
7BAD="\033[31;1m"
8BOLD="\033[1m"
9GOOD="\033[32;1m"
10
11NOBLANK="\033[9;0]"
12CLS="\033[H\033[2J"
13
14KV="`uname -r`"
15KMAJOR=`echo $KV | cut -f1 -d.`
16KMINOR=`echo $KV | cut -f2 -d.`
17KVER="${KMAJOR}.${KMINOR}"
18MISCOPTS='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"
25HWOPTS="misc md"
26
27MY_HWOPTS=$HWOPTS
28
29QUIET=1
30INSMOD='insmod'
31if [ "${KMINOR}" -gt '4' ]
32then
33        KSUFF='.ko'
34else
35        KSUFF='.o'
36fi
37
38CDROOT=0
Note: See TracBrowser for help on using the repository browser.