summaryrefslogtreecommitdiffstats
path: root/meta/conf/distro/include/default-distrovars.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/conf/distro/include/default-distrovars.inc')
-rw-r--r--meta/conf/distro/include/default-distrovars.inc31
1 files changed, 22 insertions, 9 deletions
diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc
index 433d4b6651..7554081e8b 100644
--- a/meta/conf/distro/include/default-distrovars.inc
+++ b/meta/conf/distro/include/default-distrovars.inc
@@ -4,18 +4,31 @@ OEINCLUDELOGS ?= "yes"
4KERNEL_CONSOLE ?= "ttyS0" 4KERNEL_CONSOLE ?= "ttyS0"
5KEEPUIMAGE ??= "yes" 5KEEPUIMAGE ??= "yes"
6 6
7IMAGE_LINGUAS ?= "en-us en-gb" 7DEFAULT_IMAGE_LINGUAS = "en-us en-gb"
8DEFAULT_IMAGE_LINGUAS:libc-glibc = "c en-us en-gb"
9IMAGE_LINGUAS ?= "${DEFAULT_IMAGE_LINGUAS}"
10
8ENABLE_BINARY_LOCALE_GENERATION ?= "1" 11ENABLE_BINARY_LOCALE_GENERATION ?= "1"
9LOCALE_UTF8_ONLY ?= "0" 12LOCALE_UTF8_ONLY ?= "0"
10LOCALE_UTF8_IS_DEFAULT ?= "1" 13LOCALE_UTF8_IS_DEFAULT ?= "1"
11LOCALE_UTF8_IS_DEFAULT_class-nativesdk = "0" 14LOCALE_UTF8_IS_DEFAULT:class-nativesdk = "0"
15
16# seccomp is not yet ported to rv32
17DISTRO_FEATURES_DEFAULT:remove:riscv32 = "seccomp"
18
19# seccomp is not yet ported to ARC
20DISTRO_FEATURES_DEFAULT:remove:arc = "seccomp"
12 21
13DISTRO_FEATURES_DEFAULT ?= "acl alsa argp bluetooth ext2 ipv4 ipv6 largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc x11 vfat" 22# seccomp is not yet ported to microblaze
23DISTRO_FEATURES_DEFAULT:remove:microblaze = "seccomp"
24
25# seccomp is not yet ported to loongarch64
26DISTRO_FEATURES_DEFAULT:remove:loongarch64 = "seccomp"
27
28DISTRO_FEATURES_DEFAULT ?= "acl alsa bluetooth debuginfod ext2 ipv4 ipv6 pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc x11 vfat seccomp"
14DISTRO_FEATURES ?= "${DISTRO_FEATURES_DEFAULT}" 29DISTRO_FEATURES ?= "${DISTRO_FEATURES_DEFAULT}"
15IMAGE_FEATURES ?= "" 30IMAGE_FEATURES ?= ""
16 31
17WHITELIST_GPL-3.0 ?= ""
18
19COMMERCIAL_AUDIO_PLUGINS ?= "" 32COMMERCIAL_AUDIO_PLUGINS ?= ""
20# COMMERCIAL_AUDIO_PLUGINS ?= "gst-plugins-ugly-mad gst-plugins-ugly-mpegaudioparse" 33# COMMERCIAL_AUDIO_PLUGINS ?= "gst-plugins-ugly-mad gst-plugins-ugly-mpegaudioparse"
21COMMERCIAL_VIDEO_PLUGINS ?= "" 34COMMERCIAL_VIDEO_PLUGINS ?= ""
@@ -39,13 +52,13 @@ GTK2DISTROFEATURES = "directfb x11"
39GTK3DISTROFEATURES = "x11 wayland" 52GTK3DISTROFEATURES = "x11 wayland"
40 53
41ARCH_DEFAULT_KERNELIMAGETYPE = "zImage" 54ARCH_DEFAULT_KERNELIMAGETYPE = "zImage"
42ARCH_DEFAULT_KERNELIMAGETYPE_x86 = "bzImage" 55ARCH_DEFAULT_KERNELIMAGETYPE:x86 = "bzImage"
43ARCH_DEFAULT_KERNELIMAGETYPE_x86-64 = "bzImage" 56ARCH_DEFAULT_KERNELIMAGETYPE:x86-64 = "bzImage"
44KERNEL_IMAGETYPE ??= "${ARCH_DEFAULT_KERNELIMAGETYPE}" 57KERNEL_IMAGETYPE ??= "${ARCH_DEFAULT_KERNELIMAGETYPE}"
45KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}" 58KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}"
46 59
47# The CONNECTIVITY_CHECK_URIS are used to test whether we can succesfully 60# The CONNECTIVITY_CHECK_URIS are used to test whether we can succesfully
48# fetch from the network (and warn you if not). To disable the test set 61# fetch from the network (and warn you if not). To disable the test set
49# the variable to be empty. 62# the variable to be empty.
50# Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master 63# Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master;branch=master
51CONNECTIVITY_CHECK_URIS ?= "https://www.example.com/" 64CONNECTIVITY_CHECK_URIS ?= "https://yoctoproject.org/connectivity.html"