Added a check for /dev/tty0 to setup_keymap, added raid personality modules for EVMS, and fixed lots of space/tab issues, along with a general style cleanup. I'm calling this one 3.3.11b internally, and hopefully it will be added to the tree if it resolves bug #124388.

git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@373 67a159dc-881f-0410-a524-ba9dfbe2cb84
cleanup-cruft
Chris Gianelloni 19 years ago
parent da0a76e458
commit 3098153d53

@ -5,8 +5,7 @@ backup() {
echo -ne "\033[0G\033[0K" echo -ne "\033[0G\033[0K"
} }
strlen() strlen() {
{
if [ -z "$1" ] if [ -z "$1" ]
then then
echo "usage: strlen <variable_name>" echo "usage: strlen <variable_name>"
@ -92,6 +91,7 @@ findcdmount() {
fi fi
fi fi
} }
cache_cd_contents() { cache_cd_contents() {
# Check loop file exists and cache to ramdisk if DO_cache is enabled # Check loop file exists and cache to ramdisk if DO_cache is enabled
if [ "${LOOPTYPE}" != "noloop" ] && [ "${LOOPTYPE}" != "sgimips" ] if [ "${LOOPTYPE}" != "noloop" ] && [ "${LOOPTYPE}" != "sgimips" ]
@ -113,7 +113,7 @@ cache_cd_contents() {
fi fi
} }
mount_sysfs(){ mount_sysfs() {
if [ "${KV_2_6_OR_GREATER}" ] if [ "${KV_2_6_OR_GREATER}" ]
then then
# Udev is semi-broken on non /sys sysfs mount points. # Udev is semi-broken on non /sys sysfs mount points.
@ -130,8 +130,7 @@ mount_sysfs(){
# $1 = union absolute path (starting with /) # $1 = union absolute path (starting with /)
# $2 = path to data directory # $2 = path to data directory
# #
union_insert_dir() union_insert_dir() {
{
/sbin/unionctl $1 --add --after 0 --mode ro $2 /sbin/unionctl $1 --add --after 0 --mode ro $2
if [ $? = '0' ] if [ $? = '0' ]
then then
@ -140,14 +139,17 @@ union_insert_dir()
} }
findnfsmount() { findnfsmount() {
if [ "${IP}" != '' ]; then if [ "${IP}" != '' ]
if [ "${NFSROOT}" = '' ]; then then
if [ "${NFSROOT}" = '' ]
then
# Obtain NFSIP # Obtain NFSIP
OPTIONS=`busybox dmesg | grep rootserver | sed -e "s/,/ /g"` OPTIONS=`busybox dmesg | grep rootserver | sed -e "s/,/ /g"`
for OPTION in $OPTIONS for OPTION in $OPTIONS
do do
if [ `echo $OPTION | sed -e "s/=/ /g" | cut -d " " -f 1` = 'rootserver' ]; then if [ `echo $OPTION | sed -e "s/=/ /g" | cut -d " " -f 1` = 'rootserver' ]
NFSIP=`echo $OPTION | sed -e "s/=/ /g" | cut -d " " -f 2`; then
NFSIP=`echo $OPTION | sed -e "s/=/ /g" | cut -d " " -f 2`
fi fi
done done
@ -155,8 +157,9 @@ findnfsmount() {
OPTIONS=`busybox dmesg | grep rootpath | sed -e "s/,/ /g"` OPTIONS=`busybox dmesg | grep rootpath | sed -e "s/,/ /g"`
for OPTION in $OPTIONS for OPTION in $OPTIONS
do do
if [ `echo $OPTION | sed -e "s/=/ /g" | cut -d " " -f 1` = 'rootpath' ]; then if [ `echo $OPTION | sed -e "s/=/ /g" | cut -d " " -f 1` = 'rootpath' ]
NFSPATH=`echo $OPTION | sed -e "s/=/ /g" | cut -d " " -f 2`; then
NFSPATH=`echo $OPTION | sed -e "s/=/ /g" | cut -d " " -f 2`
fi fi
done done
@ -170,11 +173,14 @@ findnfsmount() {
fi fi
fi fi
if [ "${NFSROOT}" != '' ]; then if [ "${NFSROOT}" != '' ]
if [ "${CDROOT}" != '0' ]; then then
if [ "${CDROOT}" != '0' ]
then
good_msg "Attempting to mount NFS CD image on ${NFSROOT}" good_msg "Attempting to mount NFS CD image on ${NFSROOT}"
mount -t nfs -o ro,nolock,rsize=1024,wsize=1024 ${NFSROOT} ${NEW_ROOT}/mnt/cdrom mount -t nfs -o ro,nolock,rsize=1024,wsize=1024 ${NFSROOT} ${NEW_ROOT}/mnt/cdrom
if [ "$?" = '0' ]; then if [ "$?" = '0' ]
then
REAL_ROOT="/dev/nfs" REAL_ROOT="/dev/nfs"
else else
bad_msg "NFS Mounting failed. Is the path corrent ?" bad_msg "NFS Mounting failed. Is the path corrent ?"
@ -182,7 +188,8 @@ findnfsmount() {
else else
good_msg "Attemping to mount NFS root on ${NFSROOT}" good_msg "Attemping to mount NFS root on ${NFSROOT}"
mount -t nfs -o ro,nolock,rsize=1024,wsize=1024 ${NFSROOT} ${NEW_ROOT} mount -t nfs -o ro,nolock,rsize=1024,wsize=1024 ${NFSROOT} ${NEW_ROOT}
if [ "$?" = '0' ]; then if [ "$?" = '0' ]
then
REAL_ROOT="/dev/nfs" REAL_ROOT="/dev/nfs"
else else
bad_msg "NFS Mounting failed. Is the path correct ?" bad_msg "NFS Mounting failed. Is the path correct ?"
@ -263,7 +270,7 @@ bind_mount_dev() {
mount -o bind ${NEW_ROOT}/dev /dev mount -o bind ${NEW_ROOT}/dev /dev
} }
start_dev_mgr(){ start_dev_mgr() {
# Check udev is available... # Check udev is available...
if [ "${KV_2_6_OR_GREATER}" -a ! "${USE_UDEV_NORMAL}" -eq '0' -a -x /sbin/udev ] if [ "${KV_2_6_OR_GREATER}" -a ! "${USE_UDEV_NORMAL}" -eq '0' -a -x /sbin/udev ]
then then
@ -325,7 +332,8 @@ cmdline_hwopts() {
done done
done done
# Shouldnt need to sort this the following loop should figure out the duplicates and strip them out # Shouldnt need to sort this as the following loop should figure out the
# duplicates and strip them out
#MY_HWOPTS=`echo ${MY_HWOPTS}| sort` #MY_HWOPTS=`echo ${MY_HWOPTS}| sort`
for x in ${MY_HWOPTS} for x in ${MY_HWOPTS}
@ -370,8 +378,9 @@ detect_sbp2_devices() {
# /proc # /proc
# /proc/scsi/sbp2/0, /proc/scsi/sbp2/1, etc. # /proc/scsi/sbp2/0, /proc/scsi/sbp2/1, etc.
# #
# You may manually add/remove SBP-2 devices via the procfs with add-single-device <h> <b> <t> <l> or remove-single-device <h> <b> <t> <l>, where: # You may manually add/remove SBP-2 devices via the procfs with:
# # add-single-device <h> <b> <t> <l> or remove-single-device <h> <b> <t> <l>,
# where:
# #
# <h> = host (starting at zero for first SCSI adapter) # <h> = host (starting at zero for first SCSI adapter)
# <b> = bus (normally zero) # <b> = bus (normally zero)
@ -390,7 +399,7 @@ detect_sbp2_devices() {
setup_keymap() { setup_keymap() {
if [ "${DO_keymap}" ] if [ "${DO_keymap}" ]
then then
if [ ! -e /dev/vc/0 ] if [ ! -e /dev/vc/0 -a ! -e /dev/tty0 ]
then then
DEVBIND=1 DEVBIND=1
mount -o bind ${NEW_ROOT}/dev /dev mount -o bind ${NEW_ROOT}/dev /dev
@ -407,6 +416,7 @@ setup_keymap() {
fi fi
fi fi
} }
chooseKeymap() { chooseKeymap() {
good_msg "Loading keymaps" good_msg "Loading keymaps"
cat /lib/keymaps/keymapList cat /lib/keymaps/keymapList
@ -417,7 +427,8 @@ chooseKeymap() {
loadkmap < /lib/keymaps/${keymap}.map loadkmap < /lib/keymaps/${keymap}.map
xkeymap=${keymap} xkeymap=${keymap}
echo ${keymap} | egrep -e "[0-9]+" >/dev/null 2>&1 echo ${keymap} | egrep -e "[0-9]+" >/dev/null 2>&1
if [ "$?" -eq '0' ]; then if [ "$?" -eq '0' ]
then
xkeymap=`tail -n 7 /lib/keymaps/keymapList | grep ${keymap} | sed -r "s/.*\s+${keymap}\s+([a-z-]+).*/\1/g" | egrep -v 1` xkeymap=`tail -n 7 /lib/keymaps/keymapList | grep ${keymap} | sed -r "s/.*\s+${keymap}\s+([a-z-]+).*/\1/g" | egrep -v 1`
fi fi
mkdir -p /etc/sysconfig mkdir -p /etc/sysconfig
@ -471,11 +482,9 @@ startVolumes() {
bad_msg "LVM2 and EVMS do not work well together" bad_msg "LVM2 and EVMS do not work well together"
USE_EVMS2_NORMAL=0 USE_EVMS2_NORMAL=0
fi fi
else else
bad_msg "vgscan or vgchange not found: skipping LVM2 volume group activation!" bad_msg "vgscan or vgchange not found: skipping LVM2 volume group activation!"
fi fi
fi fi
if [ "${USE_EVMS2_NORMAL}" -eq '1' ] if [ "${USE_EVMS2_NORMAL}" -eq '1' ]
@ -489,8 +498,10 @@ startVolumes() {
} }
sdelay() { sdelay() {
# Sleep a specific number of seconds if SDELAY is set otherwise only 1 second # Sleep a specific number of seconds if SDELAY is set otherwise only sleep
if [ -n "${SDELAY}" ]; then # 1 second
if [ -n "${SDELAY}" ]
then
sleep ${SDELAY} sleep ${SDELAY}
else else
sleep 1 sleep 1
@ -518,7 +529,7 @@ cdupdate() {
if [ "$?" != '0' ] if [ "$?" != '0' ]
then then
splash 'verbose' splash 'verbose'
bad_msg "FAILED TO EXECUTE cdupdate.sh" bad_msg "Executing cdupdate.sh failed!"
run_shell run_shell
fi fi
else else
@ -546,15 +557,16 @@ setup_md_device() {
fi fi
} }
rundebugshell(){ rundebugshell() {
if [ -n "$DEBUG" ]; then if [ -n "$DEBUG" ]
then
good_msg 'Starting debug shell as requested by "debug" option.' good_msg 'Starting debug shell as requested by "debug" option.'
good_msg 'Type "exit" to continue with normal bootup.' good_msg 'Type "exit" to continue with normal bootup.'
[ -x /bin/sh ] && /bin/sh || /bin/ash [ -x /bin/sh ] && /bin/sh || /bin/ash
fi fi
} }
setup_unionfs(){ setup_unionfs() {
if [ "${USE_UNIONFS_NORMAL}" -eq '1' -a "${CDROOT}" -eq '1' ] if [ "${USE_UNIONFS_NORMAL}" -eq '1' -a "${CDROOT}" -eq '1' ]
then then
# Directory used for rw changes in union mount filesystem # Directory used for rw changes in union mount filesystem
@ -567,7 +579,6 @@ setup_unionfs(){
CHANGES=$MEMORY/unionfs_changes/$UID CHANGES=$MEMORY/unionfs_changes/$UID
fi fi
mkdir -p ${MEMORY} mkdir -p ${MEMORY}
mkdir -p ${UNION} mkdir -p ${UNION}
good_msg "Loading unionfs module" good_msg "Loading unionfs module"
@ -577,8 +588,8 @@ setup_unionfs(){
CHANGESDEV=${UNIONFS} CHANGESDEV=${UNIONFS}
good_msg "mounting $CHANGESDEV to $MEMORY for unionfs support" good_msg "mounting $CHANGESDEV to $MEMORY for unionfs support"
mount -t auto $CHANGESDEV $MEMORY mount -t auto $CHANGESDEV $MEMORY
# mount tmpfs only in the case when changes= boot parameter was empty # mount tmpfs only in the case when changes= boot parameter was
# or we were not able to mount the storage device # empty or we were not able to mount the storage device
ret=$? ret=$?
if [ "${ret}" -ne 0 ] if [ "${ret}" -ne 0 ]
then then

@ -8,6 +8,7 @@
splash() { splash() {
return 0 return 0
} }
[ -e /etc/initrd.splash ] && . /etc/initrd.splash [ -e /etc/initrd.splash ] && . /etc/initrd.splash
# Clean input/output # Clean input/output
@ -49,7 +50,6 @@ then
then then
ln -s /sbin/udev /sbin/udevsend ln -s /sbin/udev /sbin/udevsend
fi fi
fi fi
if [ -e /bin/lvm ] if [ -e /bin/lvm ]
@ -76,7 +76,6 @@ do
real_init\=*) real_init\=*)
REAL_INIT=`parse_opt "${x}"` REAL_INIT=`parse_opt "${x}"`
;; ;;
# Livecd options # Livecd options
cdroot) cdroot)
CDROOT=1 CDROOT=1
@ -85,7 +84,6 @@ do
CDROOT=1 CDROOT=1
CDROOT_DEV=`parse_opt "${x}"` CDROOT_DEV=`parse_opt "${x}"`
;; ;;
# Start livecd loop and looptype options # Start livecd loop and looptype options
loop\=*) loop\=*)
LOOP=`parse_opt "${x}"` LOOP=`parse_opt "${x}"`
@ -93,7 +91,6 @@ do
looptype\=*) looptype\=*)
LOOPTYPE=`parse_opt "${x}"` LOOPTYPE=`parse_opt "${x}"`
;; ;;
# Start Device Manager options # Start Device Manager options
devfs) devfs)
USE_DEVFS_NORMAL=1 USE_DEVFS_NORMAL=1
@ -130,7 +127,6 @@ do
fi fi
fi fi
;; ;;
# Start Volume manager options # Start Volume manager options
dolvm2) dolvm2)
USE_LVM2_NORMAL=1 USE_LVM2_NORMAL=1
@ -149,7 +145,6 @@ do
debug) debug)
DEBUG='yes' DEBUG='yes'
;; ;;
# Scan delay options # Scan delay options
scandelay\=*) scandelay\=*)
SDELAY=`parse_opt "${x}"` SDELAY=`parse_opt "${x}"`
@ -157,7 +152,6 @@ do
scandelay) scandelay)
SDELAY=10 SDELAY=10
;; ;;
# Module no-loads # Module no-loads
doload\=*) doload\=*)
MDOLIST=`parse_opt "${x}"` MDOLIST=`parse_opt "${x}"`
@ -171,23 +165,19 @@ do
MLIST="`echo ${MLIST} | sed -e \"s/,/ /g\"`" MLIST="`echo ${MLIST} | sed -e \"s/,/ /g\"`"
export MLIST export MLIST
;; ;;
# Redirect output to a specific tty # Redirect output to a specific tty
CONSOLE\=*) CONSOLE\=*)
CONSOLE=`parse_opt "${x}"` CONSOLE=`parse_opt "${x}"`
exec >${CONSOLE} <${CONSOLE} 2>&1 exec >${CONSOLE} <${CONSOLE} 2>&1
;; ;;
# /dev/md # /dev/md
lvmraid\=*) lvmraid\=*)
RAID_DEVICES="`parse_opt ${x}`" RAID_DEVICES="`parse_opt ${x}`"
RAID_DEVICES="`echo ${RAID_DEVICES} | sed -e 's/,/ /g'`" RAID_DEVICES="`echo ${RAID_DEVICES} | sed -e 's/,/ /g'`"
;; ;;
part\=*) part\=*)
MDPART=`parse_opt "${x}"` MDPART=`parse_opt "${x}"`
;; ;;
# NFS # NFS
ip\=*) ip\=*)
IP=`parse_opt "${x}"` IP=`parse_opt "${x}"`
@ -216,7 +206,6 @@ then
eval DO_`echo $modules | sed 's/-//'`=1 eval DO_`echo $modules | sed 's/-//'`=1
done done
fi fi
# Always eval doload=... # Always eval doload=...
modules_load $MDOLIST modules_load $MDOLIST
else else
@ -279,7 +268,8 @@ then
cp /dev/loop0 ${NEW_ROOT}/dev cp /dev/loop0 ${NEW_ROOT}/dev
fi fi
# Required for gensplash to work. Not an issue with the initrd as this device isnt created there and is not needed. # Required for gensplash to work. Not an issue with the initrd as this
# device isnt created there and is not needed.
if [ -e /dev/tty1 ] if [ -e /dev/tty1 ]
then then
cp /dev/tty1 ${NEW_ROOT}/dev cp /dev/tty1 ${NEW_ROOT}/dev

@ -2,7 +2,7 @@
# Genkernel v3 # Genkernel v3
PATH="/bin:/usr/bin:/sbin:/usr/sbin" PATH="/bin:/usr/bin:/sbin:/usr/sbin"
GK_V='3.3.11' GK_V='3.3.11b'
TMPDIR='/var/tmp/genkernel' TMPDIR='/var/tmp/genkernel'
TODEBUGCACHE=1 # Until an error occurs or DEBUGFILE is fully qualified. TODEBUGCACHE=1 # Until an error occurs or DEBUGFILE is fully qualified.

@ -12,7 +12,7 @@ CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y
# CONFIG_FEATURE_VERBOSE_USAGE is not set # CONFIG_FEATURE_VERBOSE_USAGE is not set
# CONFIG_FEATURE_INSTALLER is not set # CONFIG_FEATURE_INSTALLER is not set
# CONFIG_LOCALE_SUPPORT is not set # CONFIG_LOCALE_SUPPORT is not set
CONFIG_FEATURE_DEVFS=y # CONFIG_FEATURE_DEVFS is not set
CONFIG_FEATURE_DEVPTS=y CONFIG_FEATURE_DEVPTS=y
# CONFIG_FEATURE_CLEAN_UP is not set # CONFIG_FEATURE_CLEAN_UP is not set
# CONFIG_FEATURE_SUID is not set # CONFIG_FEATURE_SUID is not set

@ -14,6 +14,6 @@ MODULES_ATARAID="ataraid pdcraid hptraid"
MODULES_PCMCIA="pcmcia_core yenta_socket i82365 ds ide-cs" MODULES_PCMCIA="pcmcia_core yenta_socket i82365 ds ide-cs"
MODULES_USB="ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd usbhid sl811-hcd" MODULES_USB="ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd usbhid sl811-hcd"
MODULES_LVM2="dm-mod dm-snapshot dm-mirror dm-bbr" MODULES_LVM2="dm-mod dm-snapshot dm-mirror dm-bbr"
MODULES_EVMS2="dm-mod dm-snapshot dm-mirror dm-bbr" MODULES_EVMS2="dm-mod dm-snapshot dm-mirror dm-bbr raid0 raid1 raid5 raid6 raid10"
MODULES_DMRAID="dm-mod dm-mirror" MODULES_DMRAID="dm-mod dm-mirror"
MODULES_SATA="sata_promise sata_sil sata_sil24 sata_svw sata_via sata_nv sata_sx4 sata_sis sata_uli sata_vsc sata_qstor ahci ata_piix sata_mv pdc_adma" MODULES_SATA="sata_promise sata_sil sata_sil24 sata_svw sata_via sata_nv sata_sx4 sata_sis sata_uli sata_vsc sata_qstor ahci ata_piix sata_mv pdc_adma"

@ -12,7 +12,7 @@ CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y
# CONFIG_FEATURE_VERBOSE_USAGE is not set # CONFIG_FEATURE_VERBOSE_USAGE is not set
# CONFIG_FEATURE_INSTALLER is not set # CONFIG_FEATURE_INSTALLER is not set
# CONFIG_LOCALE_SUPPORT is not set # CONFIG_LOCALE_SUPPORT is not set
CONFIG_FEATURE_DEVFS=y # CONFIG_FEATURE_DEVFS is not set
CONFIG_FEATURE_DEVPTS=y CONFIG_FEATURE_DEVPTS=y
# CONFIG_FEATURE_CLEAN_UP is not set # CONFIG_FEATURE_CLEAN_UP is not set
# CONFIG_FEATURE_SUID is not set # CONFIG_FEATURE_SUID is not set

@ -14,6 +14,6 @@ MODULES_ATARAID="ataraid pdcraid hptraid"
MODULES_PCMCIA="pcmcia_core yenta_socket i82365 ds ide-cs" MODULES_PCMCIA="pcmcia_core yenta_socket i82365 ds ide-cs"
MODULES_USB="ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd usbhid sl811-hcd" MODULES_USB="ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd usbhid sl811-hcd"
MODULES_LVM2="dm-mod dm-snapshot dm-mirror dm-bbr" MODULES_LVM2="dm-mod dm-snapshot dm-mirror dm-bbr"
MODULES_EVMS2="dm-mod dm-snapshot dm-mirror dm-bbr" MODULES_EVMS2="dm-mod dm-snapshot dm-mirror dm-bbr raid0 raid1 raid5 raid6 raid10"
MODULES_DMRAID="dm-mod dm-mirror" MODULES_DMRAID="dm-mod dm-mirror"
MODULES_SATA="sata_promise sata_sil sata_sil24 sata_svw sata_via sata_nv sata_sx4 sata_sis sata_uli sata_vsc sata_qstor ahci ata_piix sata_mv pdc_adma" MODULES_SATA="sata_promise sata_sil sata_sil24 sata_svw sata_via sata_nv sata_sx4 sata_sis sata_uli sata_vsc sata_qstor ahci ata_piix sata_mv pdc_adma"

@ -12,7 +12,7 @@ CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y
# CONFIG_FEATURE_VERBOSE_USAGE is not set # CONFIG_FEATURE_VERBOSE_USAGE is not set
# CONFIG_FEATURE_INSTALLER is not set # CONFIG_FEATURE_INSTALLER is not set
# CONFIG_LOCALE_SUPPORT is not set # CONFIG_LOCALE_SUPPORT is not set
CONFIG_FEATURE_DEVFS=y # CONFIG_FEATURE_DEVFS is not set
CONFIG_FEATURE_DEVPTS=y CONFIG_FEATURE_DEVPTS=y
# CONFIG_FEATURE_CLEAN_UP is not set # CONFIG_FEATURE_CLEAN_UP is not set
# CONFIG_FEATURE_SUID is not set # CONFIG_FEATURE_SUID is not set

@ -14,6 +14,6 @@ MODULES_ATARAID="ataraid pdcraid hptraid"
MODULES_PCMCIA="pcmcia_core yenta_socket i82365 ds ide-cs" MODULES_PCMCIA="pcmcia_core yenta_socket i82365 ds ide-cs"
MODULES_USB="ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd usbhid sl811-hcd" MODULES_USB="ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd usbhid sl811-hcd"
MODULES_LVM2="dm-mod dm-snapshot dm-mirror dm-bbr" MODULES_LVM2="dm-mod dm-snapshot dm-mirror dm-bbr"
MODULES_EVMS2="dm-mod dm-snapshot dm-mirror dm-bbr" MODULES_EVMS2="dm-mod dm-snapshot dm-mirror dm-bbr raid0 raid1 raid5 raid6 raid10"
MODULES_DMRAID="dm-mod dm-mirror" MODULES_DMRAID="dm-mod dm-mirror"
MODULES_SATA="sata_promise sata_sil sata_sil24 sata_svw sata_via sata_nv sata_sx4 sata_sis sata_uli sata_vsc sata_qstor ahci ata_piix sata_mv pdc_adma" MODULES_SATA="sata_promise sata_sil sata_sil24 sata_svw sata_via sata_nv sata_sx4 sata_sis sata_uli sata_vsc sata_qstor ahci ata_piix sata_mv pdc_adma"

@ -12,7 +12,7 @@ CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y
# CONFIG_FEATURE_VERBOSE_USAGE is not set # CONFIG_FEATURE_VERBOSE_USAGE is not set
# CONFIG_FEATURE_INSTALLER is not set # CONFIG_FEATURE_INSTALLER is not set
# CONFIG_LOCALE_SUPPORT is not set # CONFIG_LOCALE_SUPPORT is not set
CONFIG_FEATURE_DEVFS=y # CONFIG_FEATURE_DEVFS is not set
CONFIG_FEATURE_DEVPTS=y CONFIG_FEATURE_DEVPTS=y
# CONFIG_FEATURE_CLEAN_UP is not set # CONFIG_FEATURE_CLEAN_UP is not set
# CONFIG_FEATURE_SUID is not set # CONFIG_FEATURE_SUID is not set

@ -14,6 +14,6 @@ MODULES_ATARAID="ataraid pdcraid hptraid"
MODULES_PCMCIA="pcmcia_core yenta_socket i82365 ds ide-cs" MODULES_PCMCIA="pcmcia_core yenta_socket i82365 ds ide-cs"
MODULES_USB="ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd usbhid sl811-hcd" MODULES_USB="ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd usbhid sl811-hcd"
MODULES_LVM2="dm-mod dm-snapshot dm-mirror dm-bbr" MODULES_LVM2="dm-mod dm-snapshot dm-mirror dm-bbr"
MODULES_EVMS2="dm-mod dm-snapshot dm-mirror dm-bbr" MODULES_EVMS2="dm-mod dm-snapshot dm-mirror dm-bbr raid0 raid1 raid5 raid6 raid10"
MODULES_DMRAID="dm-mod dm-mirror" MODULES_DMRAID="dm-mod dm-mirror"
MODULES_SATA="sata_promise sata_sil sata_sil24 sata_svw sata_via sata_nv sata_sx4 sata_sis sata_uli sata_vsc sata_qstor ahci ata_piix sata_mv pdc_adma" MODULES_SATA="sata_promise sata_sil sata_sil24 sata_svw sata_via sata_nv sata_sx4 sata_sis sata_uli sata_vsc sata_qstor ahci ata_piix sata_mv pdc_adma"

Loading…
Cancel
Save