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
35 lines
1.1 KiB
BlitzBasic
35 lines
1.1 KiB
BlitzBasic
# Copyright (C) 2018 Daniel Dickinson <cshored@thecshore.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "OpenWrt DHCPv6 client"
|
|
HOMEPAGE = "http://git.openwrt.org/?p=project/odhcp63.git;a=summary"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://src/odhcp6c.c;beginline=1;endline=13;md5=41d01a2c8e6a8ef58b8e5f18e68118a8"
|
|
SECTION = "base"
|
|
DEPENDS = "libubox"
|
|
|
|
SRCREV_odhcp6c = "0ffa3a31f7146d320214f431291c1196070a010f"
|
|
|
|
SRC_URI = "\
|
|
git://git.openwrt.org/project/odhcp6c.git;protocol=https;branch=master;name=odhcp6c \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
OF = "${S}/openwrt/package/network/ipv6/odhcp6c/files"
|
|
|
|
inherit cmake pkgconfig openwrt openwrt-services openwrt-base-files
|
|
|
|
SRCREV_openwrt = "${OPENWRT_SRCREV}"
|
|
|
|
do_install:append() {
|
|
install -Dm 0755 ${OF}/dhcpv6.sh ${D}${base_libdir}/netifd/proto/dhcpv6.sh
|
|
install -Dm 0755 ${OF}/dhcpv6.script ${D}${base_libdir}/netifd/dhcpv6.script
|
|
}
|
|
|
|
FILES:${PN} += "\
|
|
${base_libdir}/netifd/proto/dhcpv6.sh \
|
|
${base_libdir}/netifd/dhcpv6.script \
|
|
"
|
|
|
|
RRECOMMENDS:${PN} += "netifd"
|