Update buildroot & docker (#25)
* Update docker & buildroot * Fix * fix versions
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
BASH_VERSION = 4.4.12
|
||||
BASH_VERSION = 4.4.18
|
||||
BASH_SITE = $(BR2_GNU_MIRROR)/bash
|
||||
# Build after since bash is better than busybox shells
|
||||
BASH_DEPENDENCIES = ncurses readline host-bison \
|
||||
@@ -39,14 +39,18 @@ BASH_CONF_ENV += bash_cv_getenv_redef=yes
|
||||
endif
|
||||
endif
|
||||
|
||||
# Add /bin/bash to /etc/shells otherwise some login tools like dropbear
|
||||
# can reject the user connexion. See man shells.
|
||||
define BASH_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
||||
DESTDIR=$(TARGET_DIR) exec_prefix=/ install
|
||||
rm -f $(TARGET_DIR)/bin/bashbug
|
||||
grep -qsE '^/bin/bash' $(TARGET_DIR)/etc/shells \
|
||||
|| echo "/bin/bash" >> $(TARGET_DIR)/etc/shells
|
||||
endef
|
||||
|
||||
# Add /bin/bash to /etc/shells otherwise some login tools like dropbear
|
||||
# can reject the user connection. See man shells.
|
||||
define BASH_ADD_MKSH_TO_SHELLS
|
||||
grep -qsE '^/bin/bash$$' $(TARGET_DIR)/etc/shells \
|
||||
|| echo "/bin/bash" >> $(TARGET_DIR)/etc/shells
|
||||
endef
|
||||
BASH_TARGET_FINALIZE_HOOKS += BASH_ADD_MKSH_TO_SHELLS
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
||||
Reference in New Issue
Block a user