summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/iw/iw_5.8.bb
diff options
context:
space:
mode:
authorChanghyeok Bae <changhyeok.bae@gmail.com>2020-08-31 11:59:47 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-02 16:00:46 +0100
commit4855a8db073bff96678d15e9119887fc53fccd67 (patch)
treebc4c24068fe9c39946408196f7edf600e2c20bac /meta/recipes-connectivity/iw/iw_5.8.bb
parent08b7aaea34747818f4cd89e4e561a8d333f558cd (diff)
downloadpoky-4855a8db073bff96678d15e9119887fc53fccd67.tar.gz
iw: upgrade 5.4 -> 5.8
(From OE-Core rev: 42e6b9d12db36004d1fd6b81f53f9bc071bf7f8b) Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/iw/iw_5.8.bb')
-rw-r--r--meta/recipes-connectivity/iw/iw_5.8.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/iw/iw_5.8.bb b/meta/recipes-connectivity/iw/iw_5.8.bb
new file mode 100644
index 0000000000..97ca66d66f
--- /dev/null
+++ b/meta/recipes-connectivity/iw/iw_5.8.bb
@@ -0,0 +1,32 @@
1SUMMARY = "nl80211 based CLI configuration utility for wireless devices"
2DESCRIPTION = "iw is a new nl80211 based CLI configuration utility for \
3wireless devices. It supports almost all new drivers that have been added \
4to the kernel recently. "
5HOMEPAGE = "http://wireless.kernel.org/en/users/Documentation/iw"
6SECTION = "base"
7LICENSE = "BSD-2-Clause"
8LIC_FILES_CHKSUM = "file://COPYING;md5=878618a5c4af25e9b93ef0be1a93f774"
9
10DEPENDS = "libnl"
11
12SRC_URI = "http://www.kernel.org/pub/software/network/iw/${BP}.tar.gz \
13 file://0001-iw-version.sh-don-t-use-git-describe-for-versioning.patch \
14 file://separate-objdir.patch \
15"
16
17SRC_URI[md5sum] = "98129d64212bdbb408f009c56ed5c62a"
18SRC_URI[sha256sum] = "cd9125c7e560926d66b09977fe0f75e5365ffd05a15df67d86a421dc76f96a96"
19
20inherit pkgconfig
21
22EXTRA_OEMAKE = "\
23 -f '${S}/Makefile' \
24 \
25 'PREFIX=${prefix}' \
26 'SBINDIR=${sbindir}' \
27 'MANDIR=${mandir}' \
28"
29
30do_install() {
31 oe_runmake 'DESTDIR=${D}' install
32}