Bump buildroot to version 2017-02

TG-3 #closed
This commit is contained in:
jbnadal
2017-03-28 18:29:16 +02:00
parent 93b7fd91d2
commit 42c92a6bcb
3010 changed files with 41289 additions and 46428 deletions

View File

@@ -0,0 +1,25 @@
config BR2_PACKAGE_MKSH
bool "mksh"
depends on BR2_USE_MMU # fork()
help
The MirBSD Korn Shell,
mksh is a successor of pdksh but not affiliated with the
pdksh developers or contributors. mksh is not affiliated
with the AT&T Korn Shell, its past or present owners,
other than that both attempt to implement the Korn Shell
programming language.
mksh targets users who desire a compact, fast, reliable,
secure shell not cut off modern extensions; a shell with
Unicode support; an actively developed, current, and
portable product; one with developers that listen to
their users requests and implement them if they
actually make sense.
mksh aims to replace pdksh in all but very rare use cases
(such as support for checking the Unix mbox) and in all
operating environments
(thus including patches from pdksh on e.g. Debian).
http://mirbsd.de/mksh

View File

@@ -0,0 +1,4 @@
# From http://www.mirbsd.org/mksh.htm#build
md5 be0a6fb93b4a5f927bcc1893bb6692f8 mksh-R54.tgz
# Calculated based on the hash above
sha256 8bce3837c386684aa7780f085f1a4dbd5e3e26fb5c528ee0d41ae29af7f39013 mksh-R54.tgz

View File

@@ -0,0 +1,24 @@
################################################################################
#
# mksh
#
################################################################################
MKSH_VERSION = R54
MKSH_SOURCE = mksh-$(MKSH_VERSION).tgz
MKSH_SITE = https://www.mirbsd.org/MirOS/dist/mir/mksh
# For MirOS License see https://www.mirbsd.org/TaC-mksh.txt
MKSH_LICENSE = MirOS, ISC
MKSH_LICENSE_FILES = mksh.1
define MKSH_BUILD_CMDS
cd $(@D) && $(TARGET_MAKE_ENV) \
TARGET_OS=Linux $(TARGET_CONFIGURE_OPTS) \
sh ./Build.sh
endef
define MKSH_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 -D $(@D)/mksh $(TARGET_DIR)/bin/mksh
endef
$(eval $(generic-package))