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
29 lines
810 B
BlitzBasic
29 lines
810 B
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 = "Extras Openwrt system requirements"
|
|
LICENSE = "MIT"
|
|
|
|
inherit packagegroup openwrt openwrt-services
|
|
|
|
PACKAGES = "\
|
|
packagegroup-openwrt-full \
|
|
packagegroup-openwrt-full-base \
|
|
packagegroup-openwrt-full-network \
|
|
"
|
|
|
|
RDEPENDS:${PN} = "\
|
|
packagegroup-openwrt-base \
|
|
packagegroup-openwrt-full-network \
|
|
"
|
|
|
|
RDEPENDS:${PN}-network = "\
|
|
relayd \
|
|
tcpdump \
|
|
umbim \
|
|
umdnsd \
|
|
uqmi \
|
|
"
|