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
18 lines
462 B
Plaintext
18 lines
462 B
Plaintext
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
S = "${STAGING_KERNEL_DIR}"
|
|
deltask do_fetch
|
|
deltask do_unpack
|
|
do_patch[depends] += "virtual/kernel:do_shared_workdir"
|
|
do_patch[noexec] = "1"
|
|
do_package[depends] += "virtual/kernel:do_populate_sysroot"
|
|
KERNEL_VERSION = "${@get_kernelversion_file("${STAGING_KERNEL_BUILDDIR}")}"
|
|
LOCAL_VERSION = "${@get_kernellocalversion_file("${STAGING_KERNEL_BUILDDIR}")}"
|
|
|
|
inherit linux-kernel-base
|
|
|