summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOYTIS <tossel@gmail.com>2017-04-20 15:13:34 +0300
committerGitHub <noreply@github.com>2017-04-20 15:13:34 +0300
commitc5ca4c893bf6336bb3675b2aa24dc8c6e44fc82f (patch)
treee0f016c0c24d8f602093b2d7b1151142453eef45
parent41d94be49618bee93d1779625ab304a8c6f82c3b (diff)
parent70bad6051c38233884279dfad14e62863efb4827 (diff)
downloadmeta-updater-c5ca4c893bf6336bb3675b2aa24dc8c6e44fc82f.tar.gz
Merge pull request #53 from advancedtelematic/fix/disable-prelink
Set default DISTRO, disable prelink
-rw-r--r--conf/distro/sota.conf.inc4
-rwxr-xr-xscripts/envsetup.sh1
2 files changed, 4 insertions, 1 deletions
diff --git a/conf/distro/sota.conf.inc b/conf/distro/sota.conf.inc
index a2d8184..a7d3aae 100644
--- a/conf/distro/sota.conf.inc
+++ b/conf/distro/sota.conf.inc
@@ -1,7 +1,7 @@
1DISTRO_FEATURES_append = " sota" 1DISTRO_FEATURES_append = " sota"
2OVERRIDES .= ":sota" 2OVERRIDES .= ":sota"
3 3
4IMAGE_INSTALL_append = " ostree os-release" 4IMAGE_INSTALL_append = " ostree os-release rvi-sota-client"
5 5
6# live image for OSTree-enabled systems 6# live image for OSTree-enabled systems
7IMAGE_CLASSES += "image_types_ostree image_types_ota" 7IMAGE_CLASSES += "image_types_ostree image_types_ota"
@@ -24,3 +24,5 @@ OSTREE_BRANCHNAME ?= "ota-${MACHINE}"
24OSTREE_OSNAME ?= "poky" 24OSTREE_OSNAME ?= "poky"
25OSTREE_INITRAMFS_IMAGE ?= "initramfs-ostree-image" 25OSTREE_INITRAMFS_IMAGE ?= "initramfs-ostree-image"
26 26
27# Prelinking increases the size of downloads and causes build errors
28USER_CLASSES_remove = "image-prelink"
diff --git a/scripts/envsetup.sh b/scripts/envsetup.sh
index 316a782..6c01d5b 100755
--- a/scripts/envsetup.sh
+++ b/scripts/envsetup.sh
@@ -49,5 +49,6 @@ else
49 cat ${METADIR}/meta-updater/conf/include/bblayers/sota_${MACHINE}.inc >> conf/bblayers.conf 49 cat ${METADIR}/meta-updater/conf/include/bblayers/sota_${MACHINE}.inc >> conf/bblayers.conf
50 echo "include conf/include/local/sota_${MACHINE}.inc" >> conf/local.conf 50 echo "include conf/include/local/sota_${MACHINE}.inc" >> conf/local.conf
51 echo "include conf/distro/sota.conf.inc" >> conf/local.conf 51 echo "include conf/distro/sota.conf.inc" >> conf/local.conf
52 echo "DISTRO = \"poky-sota-systemd\"" >> conf/local.conf
52fi 53fi
53 54