From patchwork Mon Mar 11 20:07:33 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [3/9] systemd: make xz support (compressed journal) optional Date: Mon, 11 Mar 2013 20:07:33 -0000 From: Ross Burton X-Patchwork-Id: 45987 Message-Id: <235fd7e6b568af089d6591d6ed8c4f2d577cc5a7.1363031776.git.ross.burton@intel.com> To: openembedded-core@lists.openembedded.org Defaults to enabled but if you don't want to use the journal and need some space, this can now be disabled. Signed-off-by: Ross Burton --- meta/recipes-core/systemd/systemd_197.bb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/systemd/systemd_197.bb b/meta/recipes-core/systemd/systemd_197.bb index 962b120..9a66a4e 100644 --- a/meta/recipes-core/systemd/systemd_197.bb +++ b/meta/recipes-core/systemd/systemd_197.bb @@ -11,7 +11,7 @@ PROVIDES = "udev" PE = "1" PR = "r4" -DEPENDS = "xz kmod docbook-sgml-dtd-4.1-native intltool-native gperf-native acl readline dbus libcap libcgroup tcp-wrappers glib-2.0" +DEPENDS = "kmod docbook-sgml-dtd-4.1-native intltool-native gperf-native acl readline dbus libcap libcgroup tcp-wrappers glib-2.0" DEPENDS += "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" SECTION = "base/shell" @@ -43,9 +43,11 @@ LDFLAGS_libc-uclibc_append = " -lrt" GTKDOC_DOCDIR = "${S}/docs/" -PACKAGECONFIG ??= "" +PACKAGECONFIG ??= "xz" # Sign the journal for anti-tampering PACKAGECONFIG[gcrypt] = "--enable-gcrypt,--disable-gcrypt,libgcrypt" +# Compress the journal +PACKAGECONFIG[xz] = "--enable-xz,--disable-xz,xz" CACHED_CONFIGUREVARS = "ac_cv_path_KILL=${base_bindir}/kill"