From a446bf18f0ef68a1a39fbf51d79cec2fa8bb4bf2 Mon Sep 17 00:00:00 2001 From: Phil Wise Date: Tue, 23 May 2017 14:17:10 +0200 Subject: Extract common distro configuration into sota.conf.inc Pull the common lines from the poky-sota.conf and poky-sota-systemd.conf example distributions into a separate include file that can be pulled into other environments. This might be by including it in a user's own custom distro, or by directly including it in local.conf (e.g. AGL). require conf/distro/sota.conf.inc --- conf/distro/sota.conf.inc | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 conf/distro/sota.conf.inc (limited to 'conf/distro/sota.conf.inc') diff --git a/conf/distro/sota.conf.inc b/conf/distro/sota.conf.inc new file mode 100644 index 0000000..fddd1d2 --- /dev/null +++ b/conf/distro/sota.conf.inc @@ -0,0 +1,11 @@ +# Common settings to enable SOTA +# This can be pulled into a custom distribution, or included in +# local.conf directly with: +# +# require conf/distro/sota.conf.inc + +DISTRO_FEATURES_append = " sota" +INHERIT += " sota" +IMAGE_INSTALL_append = " aktualizr" +# Prelinking increases the size of downloads and causes build errors +USER_CLASSES_remove = "image-prelink" -- cgit v1.2.3-54-g00ecf