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