xref: /openbmc/openbmc/poky/meta/conf/distro/include/default-distrovars.inc (revision f1e5d6968976c2341c6d554bfcc8895f1b33c26b)
1QA_LOGFILE = "${TMPDIR}/qa.log"
2
3OEINCLUDELOGS ?= "yes"
4# if SERIAL_CONSOLES is set, take the first device entry.  Otherwise use ttyS0 as the default
5KERNEL_CONSOLE ?= "${@','.join(d.getVar('SERIAL_CONSOLES').split(' ')[0].split(';')[::-1]) or 'ttyS0,115200'}"
6KEEPUIMAGE ??= "yes"
7
8DEFAULT_IMAGE_LINGUAS = "en-us en-gb"
9DEFAULT_IMAGE_LINGUAS:libc-glibc = "c en-us en-gb"
10IMAGE_LINGUAS ?= "${DEFAULT_IMAGE_LINGUAS}"
11
12ENABLE_BINARY_LOCALE_GENERATION ?= "1"
13LOCALE_UTF8_ONLY ?= "0"
14LOCALE_UTF8_IS_DEFAULT ?= "1"
15LOCALE_UTF8_IS_DEFAULT:class-nativesdk = "0"
16
17# seccomp is not yet ported to rv32
18DISTRO_FEATURES_DEFAULT:remove:riscv32 = "seccomp"
19
20# seccomp is not yet ported to ARC
21DISTRO_FEATURES_DEFAULT:remove:arc = "seccomp"
22
23# seccomp is not yet ported to microblaze
24DISTRO_FEATURES_DEFAULT:remove:microblaze = "seccomp"
25
26# seccomp is not yet ported to loongarch64
27DISTRO_FEATURES_DEFAULT:remove:loongarch64 = "seccomp"
28
29DISTRO_FEATURES_DEFAULT ?= "acl alsa bluetooth debuginfod ext2 ipv4 ipv6 pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc x11 vfat seccomp"
30DISTRO_FEATURES ?= "${DISTRO_FEATURES_DEFAULT}"
31IMAGE_FEATURES ?= ""
32
33COMMERCIAL_AUDIO_PLUGINS ?= ""
34# COMMERCIAL_AUDIO_PLUGINS ?= "gst-plugins-ugly-mad gst-plugins-ugly-mpegaudioparse"
35COMMERCIAL_VIDEO_PLUGINS ?= ""
36# COMMERCIAL_VIDEO_PLUGINS ?= "gst-plugins-ugly-mpeg2dec gst-plugins-ugly-mpegstream gst-plugins-bad-mpegvideoparse"
37# Set of common licenses used for license.bbclass
38COMMON_LICENSE_DIR ??= "${COREBASE}/meta/files/common-licenses"
39
40BB_GENERATE_MIRROR_TARBALLS ??= "0"
41
42NO32LIBS ??= "1"
43
44# Default to emitting logfiles if a build fails.
45BBINCLUDELOGS ??= "yes"
46SDK_VERSION ??= "nodistro.0"
47DISTRO_VERSION ??= "nodistro.0"
48
49# Missing checksums should raise an error
50BB_STRICT_CHECKSUM = "1"
51
52GTK2DISTROFEATURES = "directfb x11"
53GTK3DISTROFEATURES = "x11 wayland"
54
55ARCH_DEFAULT_KERNELIMAGETYPE = "zImage"
56ARCH_DEFAULT_KERNELIMAGETYPE:x86 = "bzImage"
57ARCH_DEFAULT_KERNELIMAGETYPE:x86-64 = "bzImage"
58KERNEL_IMAGETYPE ??= "${ARCH_DEFAULT_KERNELIMAGETYPE}"
59KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}"
60
61# The CONNECTIVITY_CHECK_URIS are used to test whether we can succesfully
62# fetch from the network (and warn you if not). To disable the test set
63# the variable to be empty.
64# Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master;branch=master
65CONNECTIVITY_CHECK_URIS ?= "https://yoctoproject.org/connectivity.html"
66