Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | QA_LOGFILE = "${TMPDIR}/qa.log" |
| 2 | |
| 3 | OEINCLUDELOGS ?= "yes" |
| 4 | KERNEL_CONSOLE ?= "ttyS0" |
| 5 | KEEPUIMAGE ??= "yes" |
| 6 | |
| 7 | IMAGE_LINGUAS ?= "en-us en-gb" |
| 8 | ENABLE_BINARY_LOCALE_GENERATION ?= "1" |
| 9 | LOCALE_UTF8_ONLY ?= "0" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 10 | LOCALE_UTF8_IS_DEFAULT ?= "1" |
Brad Bishop | 0011132 | 2018-04-01 22:23:53 -0400 | [diff] [blame] | 11 | LOCALE_UTF8_IS_DEFAULT_class-nativesdk = "0" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 12 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 13 | DISTRO_FEATURES_DEFAULT ?= "acl alsa argp bluetooth ext2 ipv4 ipv6 largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc x11" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 14 | DISTRO_FEATURES ?= "${DISTRO_FEATURES_DEFAULT}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 15 | IMAGE_FEATURES ?= "" |
| 16 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 17 | WHITELIST_GPL-3.0 ?= "" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 18 | |
| 19 | COMMERCIAL_AUDIO_PLUGINS ?= "" |
| 20 | # COMMERCIAL_AUDIO_PLUGINS ?= "gst-plugins-ugly-mad gst-plugins-ugly-mpegaudioparse" |
| 21 | COMMERCIAL_VIDEO_PLUGINS ?= "" |
| 22 | # COMMERCIAL_VIDEO_PLUGINS ?= "gst-plugins-ugly-mpeg2dec gst-plugins-ugly-mpegstream gst-plugins-bad-mpegvideoparse" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 23 | # Set of common licenses used for license.bbclass |
| 24 | COMMON_LICENSE_DIR ??= "${COREBASE}/meta/files/common-licenses" |
| 25 | |
| 26 | BB_GENERATE_MIRROR_TARBALLS ??= "0" |
| 27 | |
| 28 | NO32LIBS ??= "1" |
| 29 | |
| 30 | # Default to emitting logfiles if a build fails. |
| 31 | BBINCLUDELOGS ??= "yes" |
| 32 | SDK_VERSION ??= "nodistro.0" |
| 33 | DISTRO_VERSION ??= "nodistro.0" |
| 34 | |
| 35 | # Missing checksums should raise an error |
| 36 | BB_STRICT_CHECKSUM = "1" |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 37 | |
| 38 | GTK2DISTROFEATURES = "directfb x11" |
| 39 | GTK3DISTROFEATURES = "x11 wayland" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 40 | |
| 41 | ARCH_DEFAULT_KERNELIMAGETYPE = "zImage" |
| 42 | ARCH_DEFAULT_KERNELIMAGETYPE_x86 = "bzImage" |
| 43 | ARCH_DEFAULT_KERNELIMAGETYPE_x86-64 = "bzImage" |
| 44 | KERNEL_IMAGETYPE ??= "${ARCH_DEFAULT_KERNELIMAGETYPE}" |
| 45 | KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 46 | |
| 47 | # 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 |
| 49 | # the variable to be empty. |
| 50 | # Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master |
| 51 | CONNECTIVITY_CHECK_URIS ?= "https://www.example.com/" |