All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Cercueil <paul@crapouillou.net>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 09/11] util-linux: Add config switches for some more binaries
Date: Fri, 04 Apr 2014 00:00:02 +0200	[thread overview]
Message-ID: <533DD9E2.80803@crapouillou.net> (raw)
In-Reply-To: <20140403215539.GI17328@free.fr>

Yann,

On 03/04/2014 23:55, Yann E. MORIN wrote:
> Paul, All,
>
> On 2014-04-03 23:01 +0200, Paul Cercueil spake thusly:
>> Signed-Off-By: Paul Cercueil <paul@crapouillou.net>
>> Acked-By: Maarten ter Huurne <maarten@treewalker.org>
> NAK: this patch was already applied and then reverted:
>      280b16f Revert "util-linux: Add config switches for some more binaries"
>
> Because:
>      http://lists.busybox.net/pipermail/buildroot/2013-December/085198.html
>
> It looks like the comment made by Peter in his mail were not addressed
> (unless I missed them.)
>
> Regards,
> Yann E. MORIN.

You are absolutely right, I just forgot that I already tried to push 
that patch. Sorry about that.

Paul

>
>> ---
>>   package/util-linux/Config.in     | 25 +++++++++++++++++++++++++
>>   package/util-linux/util-linux.mk |  7 ++++++-
>>   2 files changed, 31 insertions(+), 1 deletion(-)
>>
>> diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in
>> index b1db99a..e0143f7 100644
>> --- a/package/util-linux/Config.in
>> +++ b/package/util-linux/Config.in
>> @@ -56,6 +56,11 @@ config BR2_PACKAGE_UTIL_LINUX_ARCH
>>   	help
>>   	  Print machine architecture
>>   
>> +config BR2_PACKAGE_UTIL_LINUX_CHFN_CHSH
>> +	bool "chfn/chsh"
>> +	help
>> +	  Change login shell, real user name and information
>> +
>>   config BR2_PACKAGE_UTIL_LINUX_CRAMFS
>>   	bool "cramfs utilities"
>>   	select BR2_PACKAGE_ZLIB
>> @@ -88,6 +93,11 @@ config BR2_PACKAGE_UTIL_LINUX_KILL
>>   	help
>>   	  Send a signal to a process
>>   
>> +config BR2_PACKAGE_UTIL_LINUX_LAST
>> +	bool "last"
>> +	help
>> +	  Show listing of last logged in users
>> +
>>   config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
>>   	bool "login utilities"
>>   	depends on BR2_ENABLE_LOCALE # linux-pam
>> @@ -98,6 +108,11 @@ config BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS
>>   comment "login utilities needs a toolchain w/ locale"
>>   	depends on !BR2_ENABLE_LOCALE
>>   
>> +config BR2_PACKAGE_UTIL_LINUX_LOSETUP
>> +	bool "losetup"
>> +	help
>> +	  Set up and control loop devices
>> +
>>   config BR2_PACKAGE_UTIL_LINUX_MESG
>>   	bool "mesg"
>>   	help
>> @@ -108,6 +123,11 @@ config BR2_PACKAGE_UTIL_LINUX_MOUNT
>>   	help
>>   	  Mount/unmount filesystems
>>   
>> +config BR2_PACKAGE_UTIL_LINUX_NEWGRP
>> +	bool "newgrp"
>> +	help
>> +	  Log in to a new group
>> +
>>   config BR2_PACKAGE_UTIL_LINUX_PIVOT_ROOT
>>   	bool "pivot_root"
>>   	help
>> @@ -158,6 +178,11 @@ config BR2_PACKAGE_UTIL_LINUX_UUIDD
>>   	help
>>   	  UUID generation daemon
>>   
>> +config BR2_PACKAGE_UTIL_LINUX_VIPW
>> +	bool "vipw"
>> +	help
>> +	  Edit the password, group, shadow-password or shadow-group file
>> +
>>   config BR2_PACKAGE_UTIL_LINUX_WALL
>>   	bool "wall"
>>   	help
>> diff --git a/package/util-linux/util-linux.mk b/package/util-linux/util-linux.mk
>> index 20b3d35..4b822c7 100644
>> --- a/package/util-linux/util-linux.mk
>> +++ b/package/util-linux/util-linux.mk
>> @@ -50,19 +50,23 @@ UTIL_LINUX_DEPENDENCIES += $(if $(BR2_PACKAGE_LINUX_PAM),linux-pam)
>>   UTIL_LINUX_CONF_OPT += \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_AGETTY),--enable-agetty,--disable-agetty) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_ARCH),--enable-arch,--disable-arch) \
>> +	$(if $(BR2_PACKAGE_UTIL_LINUX_CHFN_CHSH),--enable-chfn-chsh,--disable-chfn-chsh) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_CRAMFS),--enable-cramfs,--disable-cramfs) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_DDATE),--enable-ddate,--disable-ddate) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_EJECT),--enable-eject,--disable-eject) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_FALLOCATE),--enable-fallocate,--disable-fallocate) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_FSCK),--enable-fsck,--disable-fsck) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_KILL),--enable-kill,--disable-kill) \
>> +	$(if $(BR2_PACKAGE_UTIL_LINUX_LAST),--enable-last,--disable-last) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_LIBBLKID),--enable-libblkid,--disable-libblkid) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_LIBMOUNT),--enable-libmount,--disable-libmount) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_LIBUUID),--enable-libuuid,--disable-libuuid) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_LOGIN_UTILS),--enable-last --enable-login --enable-su --enable-sulogin,--disable-last --disable-login --disable-su --disable-sulogin) \
>> +	$(if $(BR2_PACKAGE_UTIL_LINUX_LOSETUP),--enable-losetup,--disable-losetup) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_MESG),--enable-mesg,--disable-mesg) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_MOUNT),--enable-mount,--disable-mount) \
>> -	$(if $(BR2_PACKAGE_UTIL_LINUX_PARTX),,--disable-partx) \
>> +	$(if $(BR2_PACKAGE_UTIL_LINUX_NEWGRP),--enable-newgrp,--disable-newgrp) \
>> +	$(if $(BR2_PACKAGE_UTIL_LINUX_PARTX),--enable-partx,--disable-partx) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_PIVOT_ROOT),--enable-pivot_root,--disable-pivot_root) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_RAW),--enable-raw,--disable-raw) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_RENAME),--enable-rename,--disable-rename) \
>> @@ -72,6 +76,7 @@ UTIL_LINUX_CONF_OPT += \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_UNSHARE),--enable-unshare,--disable-unshare) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_UTMPDUMP),--enable-utmpdump,--disable-utmpdump) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_UUIDD),--enable-uuidd,--disable-uuidd) \
>> +	$(if $(BR2_PACKAGE_UTIL_LINUX_VIPW),--enable-vipw,--disable-vipw) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_WALL),--enable-wall,--disable-wall) \
>>   	$(if $(BR2_PACKAGE_UTIL_LINUX_WRITE),--enable-write,--disable-write)
>>   
>> -- 
>> 1.9.0
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot

  reply	other threads:[~2014-04-03 22:00 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-03 21:01 [Buildroot] [PATCH 01/11] toolchain: Make vendor configurable Paul Cercueil
2014-04-03 21:01 ` [Buildroot] [PATCH 02/11] arch: MIPS: Add config option BR2_GCC_TARGET_TUNE Paul Cercueil
2014-04-03 21:19   ` Yann E. MORIN
2014-04-03 21:50     ` Paul Cercueil
2014-04-03 22:12       ` Yann E. MORIN
2014-04-05 15:53         ` Paul Cercueil
2014-04-05 16:47           ` Yann E. MORIN
2014-04-07 13:53       ` Markos Chandras
2014-04-03 21:01 ` [Buildroot] [PATCH 03/11] gdb: Patch for "unrecognized real-time signal" bug Paul Cercueil
2014-10-12 14:06   ` Vincent Olivert Riera
2014-10-12 15:57   ` Thomas Petazzoni
2014-04-03 21:01 ` [Buildroot] [PATCH 04/11] gdb: Fix on-target threads debugging Paul Cercueil
2014-04-03 21:23   ` Yann E. MORIN
2014-04-03 21:01 ` [Buildroot] [PATCH 05/11] dialog: Patch incorrect use of toupper() Paul Cercueil
2014-04-03 21:32   ` Yann E. MORIN
2014-04-04  6:45     ` Arnout Vandecappelle
2014-04-08 16:56       ` Paul Cercueil
2014-04-10  8:40       ` Thomas De Schampheleire
2014-04-10  9:44         ` Arnout Vandecappelle
2014-07-19 14:06           ` Thomas De Schampheleire
2014-08-15 23:00   ` Paul Cercueil
2014-04-03 21:01 ` [Buildroot] [PATCH 06/11] libao: Remove OSS plugin when ALSA is enabled Paul Cercueil
2014-04-03 21:37   ` Yann E. MORIN
2014-04-03 21:01 ` [Buildroot] [PATCH 07/11] fmtools: Switch to 2.x series Paul Cercueil
2014-04-03 21:45   ` Yann E. MORIN
2014-04-06 13:26   ` Thomas Petazzoni
2014-04-03 21:01 ` [Buildroot] [PATCH 08/11] python-pygame: Make installation of examples optional Paul Cercueil
2014-04-03 21:48   ` Yann E. MORIN
2014-04-04  6:14     ` Arnout Vandecappelle
2014-04-03 21:01 ` [Buildroot] [PATCH 09/11] util-linux: Add config switches for some more binaries Paul Cercueil
2014-04-03 21:55   ` Yann E. MORIN
2014-04-03 22:00     ` Paul Cercueil [this message]
2014-04-03 21:01 ` [Buildroot] [PATCH 10/11] luajit: Allow to build on Mips and Mipsel platforms Paul Cercueil
2014-04-04 21:41   ` Thomas Petazzoni
2014-04-03 21:01 ` [Buildroot] [PATCH 11/11] stress: Patch to fix documentation source Paul Cercueil
2014-04-03 21:12 ` [Buildroot] [PATCH 01/11] toolchain: Make vendor configurable Yann E. MORIN

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=533DD9E2.80803@crapouillou.net \
    --to=paul@crapouillou.net \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.