Some CML1 grammar fixes

-Erik
This commit is contained in:
Eric Andersen 2002-09-01 06:45:55 +00:00
parent 1130976f8e
commit 2bec97c076
4 changed files with 7 additions and 4 deletions

View File

@ -14,11 +14,11 @@ bool 'rmmod' CONFIG_RMMOD
if [ "$CONFIG_INSMOD" = "y" ]; then
comment 'Module support options'
bool 'Support for older (pre 2.1) Linux kernels' CONFIG_FEATURE_OLD_MODULE_INTERFACE
if [ "$CONFIG_FEATURE_OLD_MODULE_INTERFACE" = "n" ] ; then
define_bool CONFIG_FEATURE_NEW_MODULE_INTERFACE y
fi
bool 'Support for new (post 2.1) kernels' CONFIG_FEATURE_NEW_MODULE_INTERFACE
bool 'Support for older (pre 2.1) Linux kernels' CONFIG_FEATURE_OLD_MODULE_INTERFACE
bool 'Support module version checking' CONFIG_FEATURE_INSMOD_VERSION_CHECKING
bool 'Support image in kernel memory optimization (uClinux only)' CONFIG_FEATURE_INSMOD_LOADINKMEM
fi

View File

@ -11,7 +11,8 @@ choice 'Choose your default shell' \
hush CONFIG_FEATURE_SH_IS_HUSH \
lash CONFIG_FEATURE_SH_IS_LASH \
msh CONFIG_FEATURE_SH_IS_MSH \
none CONFIG_FEATURE_SH_IS_NONE"
none CONFIG_FEATURE_SH_IS_NONE" \
ash
if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then
define_bool CONFIG_ASH y

View File

@ -28,7 +28,6 @@ endmenu
source archival/config.in
source console-tools/config.in
source editors/config.in
source fileutils/config.in
source findutils/config.in
source init/config.in
source miscutils/config.in
@ -41,4 +40,5 @@ source shellutils/config.in
source sysklogd/config.in
source textutils/config.in
source util-linux/config.in
source fileutils/config.in

View File

@ -43,7 +43,9 @@ bool 'swaponoff' CONFIG_SWAPONOFF
bool 'mount' CONFIG_MOUNT
if [ "$CONFIG_MOUNT" = "y" ]; then
bool ' Support mounting nfs file systems' CONFIG_NFSMOUNT
bool ' Use devmtab instead of /proc (needs a patched kernel)' CONFIG_FEATURE_USE_DEVPS_PATCH
if [ "$CONFIG_FEATURE_USE_DEVPS_PATCH" = "n" ]; then
bool ' Use devmtab instead of /proc (needs a patched kernel)' CONFIG_FEATURE_USE_DEVPS_PATCH
fi
fi
bool 'umount' CONFIG_UMOUNT
if [ "$CONFIG_UMOUNT" = "y" ]; then