summaryrefslogtreecommitdiffstats
path: root/meta-poky/conf/distro/poky-tiny.conf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-25 22:29:23 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-29 23:38:21 +0100
commit9826f87cb466a85cba736529831175437dcc621a (patch)
treecbcabea97ff4d1225102495cd629888bbc384468 /meta-poky/conf/distro/poky-tiny.conf
parentd41af446febd516f14f26db53e6572d9eae35b1e (diff)
downloadpoky-9826f87cb466a85cba736529831175437dcc621a.tar.gz
meta-poky/meta-yocto-bsp: Convert to new override syntax
This converts the two layers to the new override syntax. This was done using <oe-core>/scripts/contrib/convert-overrides.py <this-layer> with no manual fixes. (From meta-yocto rev: 387eab70f343966267c2a68746aea1bbb8525191) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-poky/conf/distro/poky-tiny.conf')
-rw-r--r--meta-poky/conf/distro/poky-tiny.conf14
1 files changed, 7 insertions, 7 deletions
diff --git a/meta-poky/conf/distro/poky-tiny.conf b/meta-poky/conf/distro/poky-tiny.conf
index 8545341d84..80fb368142 100644
--- a/meta-poky/conf/distro/poky-tiny.conf
+++ b/meta-poky/conf/distro/poky-tiny.conf
@@ -57,7 +57,7 @@ TCLIBCAPPEND = ""
57# in the LIBC features below. 57# in the LIBC features below.
58# Leave native enable to avoid build failures 58# Leave native enable to avoid build failures
59ENABLE_WIDEC = "false" 59ENABLE_WIDEC = "false"
60ENABLE_WIDEC_class-native = "true" 60ENABLE_WIDEC:class-native = "true"
61 61
62# Drop native language support. This removes the 62# Drop native language support. This removes the
63# eglibc->bash->gettext->libc-posix-clang-wchar dependency. 63# eglibc->bash->gettext->libc-posix-clang-wchar dependency.
@@ -80,11 +80,11 @@ DISTRO_FEATURES = "${DISTRO_FEATURES_TINY} \
80 " 80 "
81 81
82# Enable LFS - see bug YOCTO #5865 82# Enable LFS - see bug YOCTO #5865
83DISTRO_FEATURES_append_libc-uclibc = " largefile" 83DISTRO_FEATURES:append_libc-uclibc = " largefile"
84DISTRO_FEATURES_append_libc-musl = " largefile" 84DISTRO_FEATURES:append:libc-musl = " largefile"
85 85
86DISTRO_FEATURES_class-native = "${DISTRO_FEATURES_DEFAULT} ${POKY_DEFAULT_DISTRO_FEATURES}" 86DISTRO_FEATURES:class-native = "${DISTRO_FEATURES_DEFAULT} ${POKY_DEFAULT_DISTRO_FEATURES}"
87DISTRO_FEATURES_class-nativesdk = "${DISTRO_FEATURES_DEFAULT} ${POKY_DEFAULT_DISTRO_FEATURES}" 87DISTRO_FEATURES:class-nativesdk = "${DISTRO_FEATURES_DEFAULT} ${POKY_DEFAULT_DISTRO_FEATURES}"
88 88
89# enable mdev/busybox for init 89# enable mdev/busybox for init
90INIT_MANAGER ?= "mdev-busybox" 90INIT_MANAGER ?= "mdev-busybox"
@@ -111,7 +111,7 @@ MACHINE_ESSENTIAL_EXTRA_RDEPENDS = ""
111# The mtrace script included by eglibc is a perl script. This means the system 111# The mtrace script included by eglibc is a perl script. This means the system
112# will build perl in case this package is installed. Since we don't care about 112# will build perl in case this package is installed. Since we don't care about
113# this script for the purposes of tiny, remove the dependency from here. 113# this script for the purposes of tiny, remove the dependency from here.
114RDEPENDS_${PN}-mtrace_pn-eglibc = "" 114RDEPENDS:${PN}-mtrace:pn-eglibc = ""
115 115
116PNBLACKLIST[build-appliance-image] = "not buildable with poky-tiny" 116PNBLACKLIST[build-appliance-image] = "not buildable with poky-tiny"
117PNBLACKLIST[core-image-base] = "not buildable with poky-tiny" 117PNBLACKLIST[core-image-base] = "not buildable with poky-tiny"
@@ -125,4 +125,4 @@ PNBLACKLIST[core-image-x11] = "not buildable with poky-tiny"
125PNBLACKLIST[core-image-weston] = "not buildable with poky-tiny" 125PNBLACKLIST[core-image-weston] = "not buildable with poky-tiny"
126 126
127# Disable python usage in opkg-utils since it won't build with tiny config 127# Disable python usage in opkg-utils since it won't build with tiny config
128PACKAGECONFIG_remove_pn-opkg-utils = "python" 128PACKAGECONFIG:remove:pn-opkg-utils = "python"