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
19 lines
674 B
BlitzBasic
19 lines
674 B
BlitzBasic
# Copyright (C) 2017 Aaron Brice <aaron.brice@datasoft.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
DESCRIPTION = "Administration tool for IP sets"
|
|
HOMEPAGE = "http://ipset.netfilter.org"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
|
|
SECTION = "base"
|
|
|
|
DEPENDS = "libtool libmnl"
|
|
RDEPENDS:${PN} = "kernel-module-ip-set"
|
|
|
|
SRC_URI = "http://ftp.netfilter.org/pub/ipset/${BP}.tar.bz2"
|
|
SRC_URI[sha256sum] = "b75c13689eddf1d95b396840a69dc04fd7ae4112b10b70594bc0405df7b9b30a"
|
|
|
|
inherit autotools pkgconfig module-base
|
|
|
|
EXTRA_OECONF += "-with-kbuild=${KBUILD_OUTPUT} --with-ksource=${STAGING_KERNEL_DIR}"
|