#!/bin/ash PATH=/usr/sbin:/usr/bin:/sbin:/bin BACK_UP="\033[1K\033[0G" NORMAL="\033[0m" WARN="\033[33;1m" BAD="\033[31;1m" BOLD="\033[1m" GOOD="\033[32;1m" NOBLANK="\033[9;0]" CLS="\033[H\033[2J" KV="`uname -r`" KMAJOR=`echo $KV | cut -f1 -d.` KMINOR=`echo $KV | cut -f2 -d.` KVER="${KMAJOR}.${KMINOR}" MISCOPTS='idebug detect' # Only sections that are in by default or those that # are not module groups need to be defined here... #HWOPTS="misc md ataraid scsi" HWOPTS="misc md" MY_HWOPTS=$HWOPTS QUIET=1 INSMOD='insmod' if [ "${KMINOR}" -gt '4' ] then KSUFF='.ko' else KSUFF='.o' fi CDROOT=0