Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Arnout Vandecappelle <arnout@mind.be>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 02/32] package/systemd: remove BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
Date: Fri, 26 Feb 2016 00:52:07 +0100	[thread overview]
Message-ID: <56CF93A7.3060806@mind.be> (raw)
In-Reply-To: <1456437341-19025-3-git-send-email-gabe@hashrabbit.co>

On 02/25/16 22:55, Gabe Evans wrote:
> The option was a bit misleading since it only selected additional
> libraries without --enable/disabling any features. Including all of them
> here would add a lot of bloat so instead, it is replaced with notes
> detailing which features each library enables.
> 
> Signed-off-by: Gabe Evans <gabe@hashrabbit.co>
> ---
>  package/systemd/Config.in  | 11 +++--------
>  package/systemd/systemd.mk | 16 ++++++++++------
>  2 files changed, 13 insertions(+), 14 deletions(-)
> 
> diff --git a/package/systemd/Config.in b/package/systemd/Config.in
> index f7fc3bb..1972b1d 100644
> --- a/package/systemd/Config.in
> +++ b/package/systemd/Config.in
> @@ -56,6 +56,9 @@ config BR2_PACKAGE_SYSTEMD
>  	  The selection of other packages will enable some features:
>  
>  	  - acl package will add support for multi-seat.
> +	  - xz package will add compression support in journal and coredump.
> +	  - libgcrypt package will add support for journal sealing and resolved
> +	    DNSSEC verification.

 Line is too long. Also 'resolved' is a bit weird here, so:

	  - libgcrypt package will add support for journal sealing and
	    DNSSEC verification in resolved

>  
>  	  http://freedesktop.org/wiki/Software/systemd
>  
> @@ -64,14 +67,6 @@ if BR2_PACKAGE_SYSTEMD
>  config BR2_PACKAGE_PROVIDES_UDEV
>  	default "systemd"
>  
> -config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS

 You'll need to move this to Config.in.legacy, keep the two select statements
below, and add a help text explaining that the option has been removed and that
xz and libgcrypt have to be selected manually in the future.


 Regards,
 Arnout


> -	bool "enable all extras"
> -	select BR2_PACKAGE_XZ
> -	select BR2_PACKAGE_LIBGCRYPT
> -	help
> -	  Enable extra features for Systemd: journal compression and
> -	  signing.
> -
>  config BR2_PACKAGE_SYSTEMD_KDBUS
>  	bool "enable kdbus support"
>  	help
> diff --git a/package/systemd/systemd.mk b/package/systemd/systemd.mk
> index 05121cf..7a1baf5 100644
> --- a/package/systemd/systemd.mk
> +++ b/package/systemd/systemd.mk
> @@ -76,16 +76,20 @@ else
>  SYSTEMD_CONF_OPTS += --disable-kdbus
>  endif
>  
> -ifeq ($(BR2_PACKAGE_SYSTEMD_ALL_EXTRAS),y)
> -SYSTEMD_DEPENDENCIES += xz libgcrypt
> +ifeq ($(BR2_PACKAGE_XZ),y)
> +SYSTEMD_DEPENDENCIES += xz
> +SYSTEMD_CONF_OPTS += --enable-xz
> +else
> +SYSTEMD_CONF_OPTS += --disable-xz
> +endif
> +
> +ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
> +SYSTEMD_DEPENDENCIES += libgcrypt
>  SYSTEMD_CONF_OPTS += \
> -	--enable-xz \
>  	--enable-gcrypt	\
>  	--with-libgcrypt-prefix=$(STAGING_DIR)/usr
>  else
> -SYSTEMD_CONF_OPTS += \
> -	--disable-xz \
> -	--disable-gcrypt
> +SYSTEMD_CONF_OPTS += --disable-gcrypt
>  endif
>  
>  ifeq ($(BR2_PACKAGE_SYSTEMD_JOURNAL_GATEWAY),y)
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

  reply	other threads:[~2016-02-25 23:52 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-25 21:55 [Buildroot] [PATCH 00/32] systemd feature selection Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 01/32] package/lz4: bump version to r131 Gabe Evans
2016-02-25 23:44   ` Arnout Vandecappelle
2016-02-25 23:57     ` Gabe Evans
2016-02-26  0:16       ` Arnout Vandecappelle
2016-02-29 21:40   ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 02/32] package/systemd: remove BR2_PACKAGE_SYSTEMD_ALL_EXTRAS Gabe Evans
2016-02-25 23:52   ` Arnout Vandecappelle [this message]
2016-02-29 21:44   ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 03/32] package/systemd: add --enable/disable-bzip2 Gabe Evans
2016-02-26  0:01   ` Arnout Vandecappelle
2016-02-29 21:48   ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 04/32] package/systemd: add --enable/disable-lz4 Gabe Evans
2016-02-26  0:03   ` Arnout Vandecappelle
2016-02-29 21:48   ` Thomas Petazzoni
2016-02-29 22:02     ` Peter Korsgaard
2016-02-29 22:15       ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 05/32] package/systemd: add --enable/disable-zlib Gabe Evans
2016-02-26  0:05   ` Arnout Vandecappelle
2016-02-26  0:27     ` Gabe Evans
2016-02-29 21:48   ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 06/32] package/systemd: add --enable/disable-libcurl Gabe Evans
2016-02-26  0:07   ` Arnout Vandecappelle
2016-02-29 21:48   ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 07/32] package/systemd: explicitly --enable/disable-microhttpd Gabe Evans
2016-02-26  0:08   ` Arnout Vandecappelle
2016-02-29 21:48   ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 08/32] package/systemd: remove networkd depends from timesyncd Gabe Evans
2016-02-26  0:10   ` Arnout Vandecappelle
2016-02-29 21:52     ` Thomas Petazzoni
2016-02-29 21:50   ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 09/32] package/systemd: add support for specifying NTP servers Gabe Evans
2016-02-29 21:50   ` Thomas Petazzoni
2016-03-02 18:10     ` Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 10/32] package/systemd: add optional support for binfmt Gabe Evans
2016-02-29 21:55   ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 11/32] package/systemd: add optional support for vconsole Gabe Evans
2016-02-29 21:56   ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 12/32] package/systemd: add optional support for bootchart Gabe Evans
2016-02-29 21:56   ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 13/32] package/systemd: add optional support for quotacheck Gabe Evans
2016-02-29 21:56   ` Thomas Petazzoni
2016-02-25 21:55 ` [Buildroot] [PATCH 14/32] package/systemd: add optional support for tmpfiles Gabe Evans
2016-02-29 21:56   ` Thomas Petazzoni
2016-03-01 22:00     ` Arnout Vandecappelle
2016-03-02 11:55       ` Maxime Hadjinlian
2016-03-02 18:05         ` Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 15/32] package/systemd: add optional support for sysusers Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 16/32] package/systemd: add optional support for firstboot Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 17/32] package/systemd: add optional support for random-seed Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 18/32] package/systemd: add optional support for backlight Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 19/32] package/systemd: add optional support for rfkill Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 20/32] package/systemd: add optional support for logind Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 21/32] package/systemd: add optional support for machined Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 22/32] package/systemd: add optional support for importd Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 23/32] package/systemd: add optional support for hostnamed Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 24/32] package/systemd: add optional support for timedated Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 25/32] package/systemd: add optional support for localed Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 26/32] package/systemd: add optional support for coredump Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 27/32] package/systemd: add optional support for polkit Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 28/32] package/systemd: add optional support for hwdb Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 29/32] package/systemd: add optional support for hibernation Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 30/32] package/systemd: use 'menuconfig' Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 31/32] package/systemd: only create 'systemd-journal' group Gabe Evans
2016-02-25 21:55 ` [Buildroot] [PATCH 32/32] package/systemd: remove unnecessary make opts Gabe Evans
2016-06-07 20:21 ` [Buildroot] [PATCH 00/32] systemd feature selection Yann E. MORIN
2016-07-01  8:37   ` Maxime Hadjinlian
2016-07-01 23:00     ` Gabe Evans

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=56CF93A7.3060806@mind.be \
    --to=arnout@mind.be \
    --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