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
39 lines
1.2 KiB
BlitzBasic
39 lines
1.2 KiB
BlitzBasic
# Copyright (C) 2015 Khem Raj <raj.khem@gmail.com>
|
|
# Copyright (C) 2018 Daniel Dickinson <cshored@thecshore.com>
|
|
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "Normal Openwrt system requirements"
|
|
DESCRIPTION = "The set of packages required for a more traditional full-featured Openwrt system"
|
|
LICENSE = "MIT"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
inherit packagegroup openwrt openwrt-services
|
|
|
|
PACKAGES = "\
|
|
packagegroup-openwrt-base \
|
|
packagegroup-openwrt-base-network \
|
|
packagegroup-openwrt-base-luci \
|
|
"
|
|
|
|
RDEPENDS:${PN} = "\
|
|
packagegroup-openwrt-minimal \
|
|
packagegroup-openwrt-base-network \
|
|
packagegroup-openwrt-base-luci \
|
|
"
|
|
|
|
RDEPENDS:${PN}-network = "\
|
|
dnsmasq \
|
|
\
|
|
${@bb.utils.contains('COMBINED_FEATURES', 'wifi', 'iwinfo', '',d)} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'odhcpd', '', d)} \
|
|
umdnsd \
|
|
"
|
|
|
|
RDEPENDS:${PN}-luci = "\
|
|
lua5.1 \
|
|
luci \
|
|
uhttpd \
|
|
"
|