buildroot/package/bash
Thomas Petazzoni ff299cff58 package/bash: add option to keep or remove loadable examples
bash has a concept of "loadables", which are "plugins" that can be
loaded at runtime by bash to add new builtin. For example:

    # type whoami
    whoami is hashed (/usr/bin/whoami)
    # whoami
    root

    # enable -f /usr/lib/bash/whoami whoami
    # type whoami
    whoami is a shell builtin
    # whoami
    root

    # enable -d whoami
    # type whoami
    whoami is hashed (/usr/bin/whoami)
    # whoami
    root

bash comes with a set of example loadables, installed in
/usr/lib/bash/. They take 312 KB on ARM32, and are by default not
used, and provide builtins that are for the most part already
available as external commands in Busybox/coreutils:

    Makefile.inc  finfo         mkfifo        realpath      sync
    accept        head          mktemp        rm            tee
    basename      id            mypid         rmdir         truefalse
    csv           ln            pathchk       seq           tty
    cut           loadables.h   print         setpgid       uname
    dirname       logname       printenv      sleep         unlink
    fdflags       mkdir         push          strftime      whoami

So instead of having them unconditionally installed, add an option to
enable/disable their installation (their build apparently cannot be
disabled via a configure option).

Normally, we try to keep backward compatibility by preserving the
existing behavior. In this case, this would have meant making this
option "default y". But this also breaks our principle of "being
minimal by default", and in this case, it feels preferable to be
"minimal by default" than preserving existing behavior.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2021-04-24 09:42:04 +02:00
..
0001-bash51-001.patch package/bash: bump version to 5.1 2021-03-11 22:05:29 +01:00
0002-bash51-002.patch package/bash: bump version to 5.1 2021-03-11 22:05:29 +01:00
0003-bash51-003.patch package/bash: bump version to 5.1 2021-03-11 22:05:29 +01:00
0004-bash51-004.patch package/bash: bump version to 5.1 2021-03-11 22:05:29 +01:00
0005-input.h-add-missing-include-on-stdio.h.patch package/bash: bump version to 5.1 2021-03-11 22:05:29 +01:00
0006-locale-fix-typo-local_shiftstates-vs.-locale_shiftst.patch package/bash: bump version to 5.1 2021-03-11 22:05:29 +01:00
0007-glob-fix-dequote_pathname-vs.-udequote_pathname.patch package/bash: fix seventh patch 2021-03-12 22:02:05 +01:00
bash.hash package/bash: bump version to 5.1 2021-03-11 22:05:29 +01:00
bash.mk package/bash: add option to keep or remove loadable examples 2021-04-24 09:42:04 +02:00
Config.in package/bash: add option to keep or remove loadable examples 2021-04-24 09:42:04 +02:00