From 6159c85e74c2cbc04bf537fa41ea1f58e871883a Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Mon, 10 Aug 2015 15:50:13 +0200 Subject: [PATCH] sysmocom-defaults: Be a bit more aggressive for the size E.g. when using musl and trying to build the smallest possible rootfs. Existing builds should not start to use these flags as they would be likely to force a big rebuild. --- conf/distro/include/sysmocom-defaults.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/conf/distro/include/sysmocom-defaults.conf b/conf/distro/include/sysmocom-defaults.conf index 90f50ca..3714010 100644 --- a/conf/distro/include/sysmocom-defaults.conf +++ b/conf/distro/include/sysmocom-defaults.conf @@ -20,3 +20,18 @@ INHERIT += " sysmocom-archive-patched-source" # We use opkg and not rpm/smart PACKAGE_CLASSES ?= "package_ipk" + + +# When using uclibc/musl.. avoid pulling in gettext. We do +# not need i18n in our tools right now. +USE_NLS = "no" + + +# We don't need x11, nfc, selinux, pam in our builds +DISTRO_FEATURES_remove = "x11 nfc selinux pam" + +# Get rid off XZ for systemd +PACKAGECONFIG_pn-systemd = "ldconfig" + +# From fido on.. build curl with libssl to avoid gnutls +PACKAGECONFIG_pn-curl="ipv6 ssl zlib"