mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
Since commit [1] package dash requires wchar so let's depend on it to fix build failure. Doing so makes default non-busybox shell dash to depend on wchar. This is too restrictive since this way wchar becomes mandatory, so let's switch default non-busybox shell to bash. [1]: https://git.kernel.org/pub/scm/utils/dash/dash.git/commit/?id=c0674f487c7aec2a3bdf6795cea7e60c9530c360 Fixes: https://autobuild.buildroot.org/results/e9108ebd9fb8c471add1c5a7f581757175fa5f15/ Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
580 B
Plaintext
19 lines
580 B
Plaintext
config BR2_PACKAGE_DASH
|
|
bool "dash"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
|
depends on BR2_USE_WCHAR
|
|
help
|
|
DASH is a POSIX-compliant implementation of /bin/sh that
|
|
aims to be as small as possible. It does this without
|
|
sacrificing speed where possible. In fact, it is
|
|
significantly faster than bash (the GNU Bourne-Again SHell)
|
|
for most tasks.
|
|
|
|
http://gondor.apana.org.au/~herbert/dash
|
|
|
|
comment "dash needs a toolchain w/ wchar"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
|
depends on !BR2_USE_WCHAR
|