diff options
author | Carlos Santos <casantos@datacom.ind.br> | 2017-06-22 23:52:31 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-06-23 21:12:42 +0200 |
commit | 74235a6854d6e469f2dbc141fe08ce9ae94e7d3c (patch) | |
tree | 5d103972b91f6c120cdb41a5ecfa161a9fd67562 /package/util-linux/Config.in | |
parent | 2b38e6dab83fa4623575d5bd500ab794f976ecd6 (diff) | |
download | buildroot-74235a6854d6e469f2dbc141fe08ce9ae94e7d3c.tar.gz buildroot-74235a6854d6e469f2dbc141fe08ce9ae94e7d3c.zip |
util-linux: bump to version 2.30
- Update the "basic set" description to include fincore, which is built
by default, and remove tailf, which was removed in this version.
- Add configuration options for the new utilities "chmem" and "lsmem".
- Add a patch to revert the assumption that ncursesw headers are under
/usr/include/ncursesw/ only. That's necessary to have both versions
for ABI/API compatibility but does not make sense on embedded systems.
- Drop autoreconf, since the patch on term-utils/Makemodule.am is gone.
The patch is a bit drastic but it solves the problem of using ncursews
while we discuss a better solution in the util-linux mailing list.
Signed-off-by: Carlos Santos <casantos@datacom.ind.br>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/util-linux/Config.in')
-rw-r--r-- | package/util-linux/Config.in | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in index 86db3722c7..6ba239efb0 100644 --- a/package/util-linux/Config.in +++ b/package/util-linux/Config.in @@ -55,12 +55,12 @@ config BR2_PACKAGE_UTIL_LINUX_BINARIES Install the basic set of util-linux binaries. blkdiscard, blkid, blockdev, chcpu, col, colcrt, colrm, - column, ctrlaltdel, dmesg, fdisk, findfs, findmnt, flock, - fsfreeze, fstrim, getopt, hexdump, ipcmk, isosize, ldattach, - look, lsblk, lscpu, lsipc, lslocks, lsns, mcookie, mkfs, - mkswap, namei, prlimit, readprofile, renice, rev, rtcwake, - script, scriptreplay, setarch, setsid, sfdisk, swaplabel, - swapoff, swapon, tailf, uuidgen, whereis, wipefs + column, ctrlaltdel, dmesg, fdisk, fincore, findfs, findmnt, + flock, fsfreeze, fstrim, getopt, hexdump, ipcmk, isosize, + ldattach, look, lsblk, lscpu, lsipc, lslocks, lsns, mcookie, + mkfs, mkswap, namei, prlimit, readprofile, renice, rev, + rtcwake, script, scriptreplay, setarch, setsid, sfdisk, + swaplabel, swapoff, swapon, uuidgen, whereis, wipefs The setarch utility also installs architecture-specific symlinks like linux32, linux64, uname26, i386 and x86_64. @@ -95,6 +95,11 @@ comment "chfn/chsh needs a uClibc or glibc toolchain w/ wchar, locale, dynamic l depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \ || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL +config BR2_PACKAGE_UTIL_LINUX_CHMEM + bool "chmem" + help + Sets a particular size or range of memory online or offline + config BR2_PACKAGE_UTIL_LINUX_CRAMFS bool "cramfs utilities" select BR2_PACKAGE_ZLIB @@ -194,6 +199,13 @@ config BR2_PACKAGE_UTIL_LINUX_LSLOGINS help Display information about known users in the system +config BR2_PACKAGE_UTIL_LINUX_LSMEM + bool "lsmem" + depends on BR2_USE_MMU # libsmartcols + select BR2_PACKAGE_UTIL_LINUX_LIBSMARTCOLS + help + List the ranges of available memory with their online status + config BR2_PACKAGE_UTIL_LINUX_MESG bool "mesg" help |