add mksh to system shell choice
authorWaldemar Brodkorb <wbx@openadk.org>
Wed, 28 Sep 2016 13:58:51 +0000 (15:58 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Sat, 1 Oct 2016 21:22:18 +0000 (23:22 +0200)
Add mksh as a choice for system shells.

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
system/Config.in

index 77c665b17398201bc01172147d07da858e95ac0a..d3b2889bbd197f731397de877f276cc54dd73b0f 100644 (file)
@@ -276,13 +276,19 @@ config BR2_SYSTEM_BIN_SH_DASH
        depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
        select BR2_PACKAGE_DASH
 
+config BR2_SYSTEM_BIN_SH_MKSH
+       bool "mksh"
+       depends on BR2_USE_MMU # mksh
+       depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
+       select BR2_PACKAGE_MKSH
+
 config BR2_SYSTEM_BIN_SH_ZSH
        bool "zsh"
        depends on BR2_USE_MMU # zsh
        depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
        select BR2_PACKAGE_ZSH
 
-comment "bash, dash, zsh need BR2_PACKAGE_BUSYBOX_SHOW_OTHERS"
+comment "bash, dash, mksh, zsh need BR2_PACKAGE_BUSYBOX_SHOW_OTHERS"
        depends on !BR2_PACKAGE_BUSYBOX_SHOW_OTHERS && BR2_PACKAGE_BUSYBOX
 
 config BR2_SYSTEM_BIN_SH_NONE
@@ -295,6 +301,7 @@ config BR2_SYSTEM_BIN_SH
        default "busybox" if BR2_SYSTEM_BIN_SH_BUSYBOX
        default "bash"    if BR2_SYSTEM_BIN_SH_BASH
        default "dash"    if BR2_SYSTEM_BIN_SH_DASH
+       default "mksh"    if BR2_SYSTEM_BIN_SH_MKSH
        default "zsh"     if BR2_SYSTEM_BIN_SH_ZSH
 
 menuconfig BR2_TARGET_GENERIC_GETTY