diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-02-03 16:11:00 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-02-03 16:11:00 +0100 |
commit | a86ca6b0fa2e0e34b17c95c10a0d1f6234b6273c (patch) | |
tree | d3cbdfc8330738fb636bb843dd912267213d1f21 /target/config | |
parent | c186165a9c09eb6535b91a7d349fa2a75d914933 (diff) |
busybox: fix ash/hush selection
Diffstat (limited to 'target/config')
-rw-r--r-- | target/config/Config.in.runtime | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/config/Config.in.runtime b/target/config/Config.in.runtime index 3dfa1eff6..4e1d82168 100644 --- a/target/config/Config.in.runtime +++ b/target/config/Config.in.runtime @@ -384,7 +384,7 @@ default ADK_ROOTSH_MKSH config ADK_ROOTSH_MKSH bool "mksh (MirBSD Korn Shell)" - select ADK_PACKAGE_MKSH if !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_ARCH_OR1K + select ADK_PACKAGE_MKSH if !ADK_APPLIANCE_TOOLCHAIN help Use mksh (a Korn Shell variant) as standard login shell for the superuser. @@ -392,7 +392,7 @@ config ADK_ROOTSH_MKSH config ADK_ROOTSH_HUSH bool "hush (busybox shell compatible with non-MMU systems)" select BUSYBOX_HUSH if !ADK_APPLIANCE_TOOLCHAIN - select BUSYBOX_FEATURE_SH_IS_HUSH if !ADK_APPLIANCE_TOOLCHAIN + select BUSYBOX_SH_IS_HUSH if !ADK_APPLIANCE_TOOLCHAIN help hush shell from busybox. @@ -405,7 +405,7 @@ config ADK_ROOTSH_SASH config ADK_ROOTSH_ASH bool "ash (busybox shell)" select BUSYBOX_ASH - select BUSYBOX_FEATURE_SH_IS_ASH + select BUSYBOX_SH_IS_ASH help Use the minimalistic ash variant that is part of busybox as standard login shell for the superuser. This is the |