summaryrefslogtreecommitdiffstats
path: root/conf/distro
diff options
context:
space:
mode:
authorAnton Gerasimov <anton@advancedtelematic.com>2017-04-25 15:21:07 +0200
committerAnton Gerasimov <anton@advancedtelematic.com>2017-04-26 11:04:39 +0200
commit4d610e9f230dd23589b18588446c2368f3a99446 (patch)
tree4c2f39cc49525698ef8197646bd652db270df8b8 /conf/distro
parent4ebfc44b3eff288b8cc2f6b2b4251159cbeab14b (diff)
downloadmeta-updater-4d610e9f230dd23589b18588446c2368f3a99446.tar.gz
Replace includes with bblcasses
They are more flexible and allow tricks like conditionally inheriting machine-related classes from the main one which makes things easier for external users like AGL
Diffstat (limited to 'conf/distro')
-rw-r--r--conf/distro/poky-sota-systemd.conf2
-rw-r--r--conf/distro/poky-sota.conf2
-rw-r--r--conf/distro/sota.conf.inc25
3 files changed, 2 insertions, 27 deletions
diff --git a/conf/distro/poky-sota-systemd.conf b/conf/distro/poky-sota-systemd.conf
index 85744ea..e6f43f7 100644
--- a/conf/distro/poky-sota-systemd.conf
+++ b/conf/distro/poky-sota-systemd.conf
@@ -1,5 +1,4 @@
1require conf/distro/poky.conf 1require conf/distro/poky.conf
2require conf/distro/sota.conf.inc
3 2
4DISTRO = "poky-sota" 3DISTRO = "poky-sota"
5DISTRO_NAME = "OTA-enabled Linux" 4DISTRO_NAME = "OTA-enabled Linux"
@@ -9,4 +8,5 @@ DISTRO_CODENAME = "sota"
9DISTRO_FEATURES_append = " systemd" 8DISTRO_FEATURES_append = " systemd"
10VIRTUAL-RUNTIME_init_manager = "systemd" 9VIRTUAL-RUNTIME_init_manager = "systemd"
11 10
11INHERIT += " sota"
12IMAGE_INSTALL_append = " connman connman-client rvi-sota-client" 12IMAGE_INSTALL_append = " connman connman-client rvi-sota-client"
diff --git a/conf/distro/poky-sota.conf b/conf/distro/poky-sota.conf
index 2bbc62b..6972a94 100644
--- a/conf/distro/poky-sota.conf
+++ b/conf/distro/poky-sota.conf
@@ -1,9 +1,9 @@
1require conf/distro/poky.conf 1require conf/distro/poky.conf
2require conf/distro/sota.conf.inc
3 2
4DISTRO = "poky-sota" 3DISTRO = "poky-sota"
5DISTRO_NAME = "OTA-enabled Linux" 4DISTRO_NAME = "OTA-enabled Linux"
6DISTRO_VERSION = "1.0" 5DISTRO_VERSION = "1.0"
7DISTRO_CODENAME = "sota" 6DISTRO_CODENAME = "sota"
8 7
8INHERIT += " sota"
9IMAGE_INSTALL_append = " connman connman-client" 9IMAGE_INSTALL_append = " connman connman-client"
diff --git a/conf/distro/sota.conf.inc b/conf/distro/sota.conf.inc
deleted file mode 100644
index 20946a6..0000000
--- a/conf/distro/sota.conf.inc
+++ /dev/null
@@ -1,25 +0,0 @@
1DISTRO_FEATURES_append = " sota"
2OVERRIDES .= ":sota"
3
4IMAGE_INSTALL_append = " ostree os-release"
5
6# live image for OSTree-enabled systems
7IMAGE_CLASSES += "image_types_ostree image_types_ota"
8IMAGE_FSTYPES += "ostreepush otaimg"
9
10# if don't build wic image unless IMAGE_BOOT_FILES is set. Prevents build from failing
11# on machines that don't support updater yet
12IMAGE_FSTYPES += "${@' wic' if (d.getVar("IMAGE_BOOT_FILES", True)) else ''}"
13WKS_FILE ?= "sdimage-sota.wks"
14do_image_wic[depends] += "${IMAGE_BASENAME}:do_image_otaimg"
15
16EXTRA_IMAGEDEPENDS += " parted-native mtools-native dosfstools-native"
17
18# Please redefine OSTREE_REPO in order to have a persistent OSTree repo
19OSTREE_REPO ?= "${DEPLOY_DIR_IMAGE}/ostree_repo"
20OSTREE_BRANCHNAME ?= "ota-${MACHINE}"
21OSTREE_OSNAME ?= "poky"
22OSTREE_INITRAMFS_IMAGE ?= "initramfs-ostree-image"
23
24# Prelinking increases the size of downloads and causes build errors
25USER_CLASSES_remove = "image-prelink"