Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 2/3] util-linux: convert to autotarget and bump to 2.19.1
Date: Wed, 27 Jul 2011 09:43:07 +0200	[thread overview]
Message-ID: <87wrf4tbhw.fsf@macbook.be.48ers.dk> (raw)
In-Reply-To: <4E298ED8.5000901@visionsystems.de> (Yegor Yefremov's message of "Fri, 22 Jul 2011 16:53:12 +0200")

>>>>> "Yegor" == Yegor Yefremov <yegor_sub1@visionsystems.de> writes:

Thanks, committed with some changes (see below).

 Yegor> Signed-off-by: Chih-Min Chao <cmchao@gmail.com>
 Yegor> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
 Yegor> ---
 Yegor>  package/util-linux/Config.in                                            |  113 ++
 Yegor>  package/util-linux/util-linux-2.13-pre17-hardcode-a-out-constants.patch |   41 
 Yegor>  package/util-linux/util-linux-no-nls-fix.patch                          |   25 
 Yegor>  package/util-linux/util-linux-susv3-legacy.patch                        |  429 ----------
 Yegor>  package/util-linux/util-linux-uclibc-build-fix.patch                    |   16 
 Yegor>  package/util-linux/util-linux-umount2-fix.patch                         |   20 
 Yegor>  package/util-linux/util-linux.mk                                        |  180 ++--
 Yegor>  7 files changed, 230 insertions(+), 594 deletions(-)

 Yegor> Index: b/package/util-linux/Config.in
 Yegor> ===================================================================
 Yegor> --- a/package/util-linux/Config.in
 Yegor> +++ b/package/util-linux/Config.in
 Yegor> @@ -1,4 +1,4 @@
 Yegor> -config BR2_PACKAGE_UTIL-LINUX
 Yegor> +config BR2_PACKAGE_UTIL_LINUX
 Yegor>  	bool "util-linux"
 Yegor>  	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
 Yegor>  	select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE

After some tests I see that gettext/libintl/rpc aren't needed, but
instead largefile+wchar+program_invocation are.

 Yegor> @@ -12,3 +12,114 @@
 
 Yegor>  comment "util-linux requires a toolchain with RPC support"
 Yegor>  	depends on !BR2_INET_RPC
 Yegor> +
 Yegor> +menu "util-linux tool support"
 Yegor> +	depends on BR2_PACKAGE_UTIL_LINUX

I dislike all the sub menus, so I instead made all these suboptions to
util-linux instead.

 Yegor> +++ b/package/util-linux/util-linux.mk

 Yegor> +#############################################
 Yegor> +#
 Yegor> +# disable default utilities
 Yegor> +#
 Yegor> +ifeq ($(BR2_PACKAGE_UTIL_LINUX_MOUNT),n)
 Yegor> +UTIL_LINUX_CONF_OPT += --disable-mount
 Yegor>  endif

I've reworked these to the less verbose form:

     $(if $(BR2_PACKAGE_UTIL_LINUX_blah),,--disable-blah)


 Yegor> +ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),n)
 Yegor> +UTIL_LINUX_CONF_OPT += --disable-libblkid
 Yegor> +endif

Typo.

You seem to have forgotten unshare.

-- 
Bye, Peter Korsgaard

  parent reply	other threads:[~2011-07-27  7:43 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-22 14:45 [Buildroot] [PATCH 0/3] bump udev and clean up Yegor Yefremov
2011-07-22 14:51 ` [Buildroot] [PATCH 1/3] " Yegor Yefremov
2011-07-22 14:53   ` [Buildroot] [PATCH 2/3] util-linux: convert to autotarget and bump to 2.19.1 Yegor Yefremov
2011-07-22 14:58     ` [Buildroot] [PATCH 3/3] usbmount fixes Yegor Yefremov
2011-07-27 19:13       ` Peter Korsgaard
2011-07-27 19:36         ` Yegor Yefremov
2011-07-27 19:54       ` Peter Korsgaard
2011-07-28  7:08         ` Yegor Yefremov
2011-07-27  7:43     ` Peter Korsgaard [this message]
2011-07-25 22:03   ` [Buildroot] [PATCH 1/3] bump udev and clean up Peter Korsgaard
2011-07-26  7:07     ` Yegor Yefremov
2011-07-26 16:00       ` Diego Iastrubni
2011-07-27  7:34         ` Peter Korsgaard
2011-07-27  7:51           ` Thomas Petazzoni
     [not found]           ` <CALR4fEKGFH5tq-25=j3DW-CVD5Uc-QxUeLoec-JLwSxNUhQw-w@mail.gmail.com>
     [not found]             ` <87sjpst92p.fsf@macbook.be.48ers.dk>
     [not found]               ` <CALR4fEKxDB+xH1_X+0xY9KWQXAz_g6zbrQHqzOB81J2jpOcnOg@mail.gmail.com>
2011-07-27 12:53                 ` Diego Iastrubni
2011-08-03 12:37                   ` Diego Iastrubni
2011-08-03 13:41                     ` Yegor Yefremov
2011-08-03 13:51                       ` Diego Iastrubni

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=87wrf4tbhw.fsf@macbook.be.48ers.dk \
    --to=jacmet@uclibc.org \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox