Some CML1 grammar fixes
-Erik
This commit is contained in:
parent
1130976f8e
commit
2bec97c076
@ -14,11 +14,11 @@ bool 'rmmod' CONFIG_RMMOD
|
|||||||
|
|
||||||
if [ "$CONFIG_INSMOD" = "y" ]; then
|
if [ "$CONFIG_INSMOD" = "y" ]; then
|
||||||
comment 'Module support options'
|
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
|
if [ "$CONFIG_FEATURE_OLD_MODULE_INTERFACE" = "n" ] ; then
|
||||||
define_bool CONFIG_FEATURE_NEW_MODULE_INTERFACE y
|
define_bool CONFIG_FEATURE_NEW_MODULE_INTERFACE y
|
||||||
fi
|
fi
|
||||||
bool 'Support for new (post 2.1) kernels' CONFIG_FEATURE_NEW_MODULE_INTERFACE
|
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 module version checking' CONFIG_FEATURE_INSMOD_VERSION_CHECKING
|
||||||
bool 'Support image in kernel memory optimization (uClinux only)' CONFIG_FEATURE_INSMOD_LOADINKMEM
|
bool 'Support image in kernel memory optimization (uClinux only)' CONFIG_FEATURE_INSMOD_LOADINKMEM
|
||||||
fi
|
fi
|
||||||
|
@ -11,7 +11,8 @@ choice 'Choose your default shell' \
|
|||||||
hush CONFIG_FEATURE_SH_IS_HUSH \
|
hush CONFIG_FEATURE_SH_IS_HUSH \
|
||||||
lash CONFIG_FEATURE_SH_IS_LASH \
|
lash CONFIG_FEATURE_SH_IS_LASH \
|
||||||
msh CONFIG_FEATURE_SH_IS_MSH \
|
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
|
if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then
|
||||||
define_bool CONFIG_ASH y
|
define_bool CONFIG_ASH y
|
||||||
|
@ -28,7 +28,6 @@ endmenu
|
|||||||
source archival/config.in
|
source archival/config.in
|
||||||
source console-tools/config.in
|
source console-tools/config.in
|
||||||
source editors/config.in
|
source editors/config.in
|
||||||
source fileutils/config.in
|
|
||||||
source findutils/config.in
|
source findutils/config.in
|
||||||
source init/config.in
|
source init/config.in
|
||||||
source miscutils/config.in
|
source miscutils/config.in
|
||||||
@ -41,4 +40,5 @@ source shellutils/config.in
|
|||||||
source sysklogd/config.in
|
source sysklogd/config.in
|
||||||
source textutils/config.in
|
source textutils/config.in
|
||||||
source util-linux/config.in
|
source util-linux/config.in
|
||||||
|
source fileutils/config.in
|
||||||
|
|
||||||
|
@ -43,7 +43,9 @@ bool 'swaponoff' CONFIG_SWAPONOFF
|
|||||||
bool 'mount' CONFIG_MOUNT
|
bool 'mount' CONFIG_MOUNT
|
||||||
if [ "$CONFIG_MOUNT" = "y" ]; then
|
if [ "$CONFIG_MOUNT" = "y" ]; then
|
||||||
bool ' Support mounting nfs file systems' CONFIG_NFSMOUNT
|
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
|
fi
|
||||||
bool 'umount' CONFIG_UMOUNT
|
bool 'umount' CONFIG_UMOUNT
|
||||||
if [ "$CONFIG_UMOUNT" = "y" ]; then
|
if [ "$CONFIG_UMOUNT" = "y" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user