mirror of
https://git.yoctoproject.org/poky
synced 2026-03-09 16:59:40 +01:00
The default CONNECTIVITY_CHECK_URIS uses "https://yoctoproject.org/connectivity.html" which redirect to "https://www.yoctoproject.org/connectivity.html". Some network configurations with proxies or restricted internet access don't handle HTTP redirects properly during the sanity check phase, causing build failures with: ERROR: OE-core's config sanity checker detected a potential misconfiguration. Either fix the cause of this error or at your own risk disable the checker (see sanity.conf). Following is the list of potential problems / advisories: Fetcher failure for URL: 'https://yoctoproject.org/connectivity.html'. URL doesn't work. Updated the default URL to use the final destination directly to avoid redirect-related connectivity check failures. Also updated SDK test cases in https.py to use the corrected URL for consistency. (From OE-Core rev: aceb2920fbdef43db7b0b698865358e288901610) Signed-off-by: Deepak Rathore <deeratho@cisco.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 60cdf960a3560f391babd559737f1afb31fb2c5c) Signed-off-by: Deepak Rathore <deeratho@cisco.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
56 lines
1.9 KiB
PHP
56 lines
1.9 KiB
PHP
QA_LOGFILE = "${TMPDIR}/qa.log"
|
|
|
|
OEINCLUDELOGS ?= "yes"
|
|
KERNEL_CONSOLE ?= "ttyS0"
|
|
KEEPUIMAGE ??= "yes"
|
|
|
|
IMAGE_LINGUAS ?= "en-us en-gb"
|
|
ENABLE_BINARY_LOCALE_GENERATION ?= "1"
|
|
LOCALE_UTF8_ONLY ?= "0"
|
|
LOCALE_UTF8_IS_DEFAULT ?= "1"
|
|
LOCALE_UTF8_IS_DEFAULT:class-nativesdk = "0"
|
|
|
|
# seccomp is not yet ported to rv32
|
|
DISTRO_FEATURES_DEFAULT:remove:riscv32 = "seccomp"
|
|
|
|
# seccomp is not yet ported to ARC
|
|
DISTRO_FEATURES_DEFAULT:remove:arc = "seccomp"
|
|
|
|
DISTRO_FEATURES_DEFAULT ?= "acl alsa argp bluetooth debuginfod ext2 ipv4 ipv6 largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc x11 vfat seccomp"
|
|
DISTRO_FEATURES ?= "${DISTRO_FEATURES_DEFAULT}"
|
|
IMAGE_FEATURES ?= ""
|
|
|
|
COMMERCIAL_AUDIO_PLUGINS ?= ""
|
|
# COMMERCIAL_AUDIO_PLUGINS ?= "gst-plugins-ugly-mad gst-plugins-ugly-mpegaudioparse"
|
|
COMMERCIAL_VIDEO_PLUGINS ?= ""
|
|
# COMMERCIAL_VIDEO_PLUGINS ?= "gst-plugins-ugly-mpeg2dec gst-plugins-ugly-mpegstream gst-plugins-bad-mpegvideoparse"
|
|
# Set of common licenses used for license.bbclass
|
|
COMMON_LICENSE_DIR ??= "${COREBASE}/meta/files/common-licenses"
|
|
|
|
BB_GENERATE_MIRROR_TARBALLS ??= "0"
|
|
|
|
NO32LIBS ??= "1"
|
|
|
|
# Default to emitting logfiles if a build fails.
|
|
BBINCLUDELOGS ??= "yes"
|
|
SDK_VERSION ??= "nodistro.0"
|
|
DISTRO_VERSION ??= "nodistro.0"
|
|
|
|
# Missing checksums should raise an error
|
|
BB_STRICT_CHECKSUM = "1"
|
|
|
|
GTK2DISTROFEATURES = "directfb x11"
|
|
GTK3DISTROFEATURES = "x11 wayland"
|
|
|
|
ARCH_DEFAULT_KERNELIMAGETYPE = "zImage"
|
|
ARCH_DEFAULT_KERNELIMAGETYPE:x86 = "bzImage"
|
|
ARCH_DEFAULT_KERNELIMAGETYPE:x86-64 = "bzImage"
|
|
KERNEL_IMAGETYPE ??= "${ARCH_DEFAULT_KERNELIMAGETYPE}"
|
|
KERNEL_IMAGETYPES ??= "${KERNEL_IMAGETYPE}"
|
|
|
|
# The CONNECTIVITY_CHECK_URIS are used to test whether we can succesfully
|
|
# fetch from the network (and warn you if not). To disable the test set
|
|
# the variable to be empty.
|
|
# Git example url: git://git.yoctoproject.org/yocto-firewall-test;protocol=git;rev=master;branch=master
|
|
CONNECTIVITY_CHECK_URIS ?= "https://www.yoctoproject.org/connectivity.html"
|