155 lines
5.9 KiB
Plaintext
155 lines
5.9 KiB
Plaintext
DISTRO = "dey"
|
|
DISTRO_NAME = "Digi Embedded for Yocto"
|
|
DISTRO_VERSION = "1.6.0"
|
|
DISTRO_CODENAME = "daisy"
|
|
SDK_DISTRO = "poky"
|
|
SDK_VENDOR = "-pokysdk"
|
|
SDK_VERSION := "1.6"
|
|
|
|
MAINTAINER = "Digi Support <support@digi.com>"
|
|
|
|
TARGET_VENDOR = "-dey"
|
|
|
|
LOCALCONF_VERSION = "1"
|
|
LAYER_CONF_VERSION ?= "6"
|
|
|
|
# Override these in poky based distros
|
|
POKY_DEFAULT_DISTRO_FEATURES = "largefile opengl ptest multiarch wayland"
|
|
POKY_DEFAULT_EXTRA_RDEPENDS = "packagegroup-dey-core"
|
|
POKY_DEFAULT_EXTRA_RRECOMMENDS = ""
|
|
|
|
DISTRO_FEATURES ?= "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC} ${POKY_DEFAULT_DISTRO_FEATURES}"
|
|
|
|
# Remove X-related features for DEY distro
|
|
DISTRO_FEATURES_DEFAULT_remove = "x11"
|
|
POKY_DEFAULT_DISTRO_FEATURES_remove = "wayland"
|
|
|
|
# DEY image features (alphabetical order)
|
|
FEATURE_PACKAGES_dey-audio = "packagegroup-dey-audio"
|
|
FEATURE_PACKAGES_dey-bluetooth = "packagegroup-dey-bluetooth"
|
|
FEATURE_PACKAGES_dey-debug = "packagegroup-dey-debug"
|
|
FEATURE_PACKAGES_dey-examples = "packagegroup-dey-examples"
|
|
FEATURE_PACKAGES_dey-gstreamer = "packagegroup-dey-gstreamer"
|
|
FEATURE_PACKAGES_dey-network = "packagegroup-dey-network"
|
|
FEATURE_PACKAGES_dey-qt = "packagegroup-dey-qt"
|
|
FEATURE_PACKAGES_dey-wireless = "packagegroup-dey-wireless"
|
|
|
|
# Features without a packagegroup need to be explicitely added.
|
|
IMAGE_FEATURES[validitems] += "dey-test"
|
|
|
|
# Set the PREFERRED_PROVIDER for jpeg functionality based on the MACHINE
|
|
# architecture. For armv7a devices libjpeg-turbo should be used to take
|
|
# advantage of the SIMD instructions.
|
|
PREFERRED_PROVIDER_jpeg ?= "jpeg"
|
|
PREFERRED_PROVIDER_jpeg_armv7a ?= "libjpeg-turbo"
|
|
|
|
PREFERRED_VERSION_linux-yocto ?= "3.14%"
|
|
PREFERRED_VERSION_linux-yocto_qemux86 ?= "3.14%"
|
|
PREFERRED_VERSION_linux-yocto_qemux86-64 ?= "3.14%"
|
|
PREFERRED_VERSION_linux-yocto_qemuarm ?= "3.14%"
|
|
PREFERRED_VERSION_linux-yocto_qemumips ?= "3.14%"
|
|
PREFERRED_VERSION_linux-yocto_qemumips64 ?= "3.14%"
|
|
PREFERRED_VERSION_linux-yocto_qemuppc ?= "3.14%"
|
|
|
|
SDK_NAME = "${DISTRO}-${TCLIBC}-${SDK_ARCH}-${IMAGE_BASENAME}-${TUNE_PKGARCH}"
|
|
SDKPATH = "/opt/${SDK_DISTRO}/${SDK_VERSION}"
|
|
|
|
EXTRAOPKGCONFIG = "poky-feed-config-opkg"
|
|
|
|
DISTRO_EXTRA_RDEPENDS += " ${POKY_DEFAULT_EXTRA_RDEPENDS}"
|
|
DISTRO_EXTRA_RRECOMMENDS += " ${POKY_DEFAULT_EXTRA_RRECOMMENDS}"
|
|
|
|
POKYQEMUDEPS = "${@base_contains("INCOMPATIBLE_LICENSE", "GPLv3", "", "qemu-config",d)}"
|
|
DISTRO_EXTRA_RDEPENDS_append_qemuarm = " ${POKYQEMUDEPS}"
|
|
DISTRO_EXTRA_RDEPENDS_append_qemumips = " ${POKYQEMUDEPS}"
|
|
DISTRO_EXTRA_RDEPENDS_append_qemuppc = " ${POKYQEMUDEPS}"
|
|
DISTRO_EXTRA_RDEPENDS_append_qemux86 = " ${POKYQEMUDEPS}"
|
|
DISTRO_EXTRA_RDEPENDS_append_qemux86-64 = " ${POKYQEMUDEPS}"
|
|
|
|
TCLIBCAPPEND = ""
|
|
|
|
QEMU_TARGETS ?= "arm i386 mips mipsel ppc x86_64"
|
|
# Other QEMU_TARGETS "mips64 mips64el sh4"
|
|
|
|
# Some packages like gst-plugins-ugly need this
|
|
LICENSE_FLAGS_WHITELIST += "commercial"
|
|
|
|
# The oracle java JRE needs this
|
|
LICENSE_FLAGS_WHITELIST += "oracle_java"
|
|
|
|
PREMIRRORS ??= "\
|
|
bzr://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
|
|
cvs://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
|
|
git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
|
|
hg://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
|
|
osc://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
|
|
p4://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
|
|
svk://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
|
|
svn://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n"
|
|
|
|
MIRRORS =+ "\
|
|
ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
|
|
http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
|
|
https://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n"
|
|
|
|
MIRRORS += "\
|
|
ftp://.*/.* ${DIGI_MIRROR}/ \n \
|
|
http://.*/.* ${DIGI_MIRROR}/ \n \
|
|
https://.*/.* ${DIGI_MIRROR}/ \n"
|
|
|
|
# The CONNECTIVITY_CHECK_URI's 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=HEAD
|
|
|
|
CONNECTIVITY_CHECK_URIS ?= " \
|
|
https://eula-downloads.yoctoproject.org/index.php \
|
|
http://bugzilla.yoctoproject.org/report.cgi"
|
|
|
|
SANITY_TESTED_DISTROS ?= " \
|
|
Poky-1.4 \n \
|
|
Poky-1.5 \n \
|
|
Poky-1.6 \n \
|
|
Ubuntu-12.04 \n \
|
|
Ubuntu-13.10 \n \
|
|
Ubuntu-14.04 \n \
|
|
Fedora-19 \n \
|
|
Fedora-20 \n \
|
|
CentOS-6.4 \n \
|
|
CentOS-6.5 \n \
|
|
Debian-7.0 \n \
|
|
Debian-7.1 \n \
|
|
Debian-7.2 \n \
|
|
Debian-7.3 \n \
|
|
Debian-7.4 \n \
|
|
SUSE-LINUX-12.2 \n \
|
|
openSUSE-project-12.3 \n \
|
|
openSUSE-project-13.1 \n \
|
|
"
|
|
|
|
# Default hash policy for distro
|
|
BB_SIGNATURE_HANDLER ?= 'OEBasicHash'
|
|
#
|
|
# OELAYOUT_ABI allows us to notify users when the format of TMPDIR changes in
|
|
# an incompatible way. Such changes should usually be detailed in the commit
|
|
# that breaks the format and have been previously discussed on the mailing list
|
|
# with general agreement from the core team.
|
|
#
|
|
OELAYOUT_ABI = "8"
|
|
|
|
# add poky sanity bbclass
|
|
INHERIT += "poky-sanity"
|
|
|
|
# QA check settings - a little stricter than the OE-Core defaults
|
|
WARN_QA = "textrel files-invalid incompatible-license xorg-driver-abi libdir \
|
|
unknown-configure-option"
|
|
ERROR_QA = "dev-so debug-deps dev-deps debug-files arch pkgconfig la perms \
|
|
useless-rpaths rpaths staticdev ldflags pkgvarcheck already-stripped \
|
|
compile-host-path dep-cmp installed-vs-shipped install-host-path \
|
|
packages-list perm-config perm-line perm-link pkgv-undefined \
|
|
pn-overrides split-strip var-undefined version-going-backwards"
|
|
|
|
# Mask unused kernel recipes from "meta-fsl-arm" to clean warning
|
|
# WARNING: Unable to get checksum for linux-imx SRC_URI entry defconfig
|
|
BBMASK = "meta-fsl-arm/recipes-kernel/linux/"
|