Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
22 lines
770 B
Plaintext
22 lines
770 B
Plaintext
include conf/distro/include/default-providers.inc
|
|
include conf/distro/include/default-versions.inc
|
|
include conf/distro/include/default-distrovars.inc
|
|
include conf/distro/include/maintainers.inc
|
|
include conf/distro/include/time64.inc
|
|
require conf/distro/include/tcmode-${TCMODE}.inc
|
|
require conf/distro/include/tclibc-${TCLIBC}.inc
|
|
|
|
require conf/distro/include/uninative-flags.inc
|
|
|
|
# Allow single libc distros to disable this code
|
|
TCLIBCAPPEND ?= "-${TCLIBC}"
|
|
TMPDIR .= "${TCLIBCAPPEND}"
|
|
|
|
USER_CLASSES ?= ""
|
|
PACKAGE_CLASSES ?= "package_ipk"
|
|
INHERIT_DISTRO ?= "debian devshell sstate license remove-libtool create-spdx"
|
|
INHERIT += "${PACKAGE_CLASSES} ${USER_CLASSES} ${INHERIT_DISTRO}"
|
|
|
|
INIT_MANAGER ??= "none"
|
|
require conf/distro/include/init-manager-${INIT_MANAGER}.inc
|