diff options
author | wangmy <wangmy@fujitsu.com> | 2022-05-30 14:38:42 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-31 15:24:18 +0100 |
commit | dd6f2f61e03a8f3db3bc2282273f5dce078241ee (patch) | |
tree | c0369d2ac95d7f686e0c3338351216b14cb218df /meta/recipes-connectivity/iw/iw_5.19.bb | |
parent | e5cb34e50e35bbe48b6d5e0675dc044f2edd8fbc (diff) | |
download | poky-dd6f2f61e03a8f3db3bc2282273f5dce078241ee.tar.gz |
iw: upgrade 5.16 -> 5.19
(From OE-Core rev: 3e33ed8afa7bb4001ebe40b7a92d776bc4adf61d)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/iw/iw_5.19.bb')
-rw-r--r-- | meta/recipes-connectivity/iw/iw_5.19.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/iw/iw_5.19.bb b/meta/recipes-connectivity/iw/iw_5.19.bb new file mode 100644 index 0000000000..a19ae304d5 --- /dev/null +++ b/meta/recipes-connectivity/iw/iw_5.19.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | SUMMARY = "nl80211 based CLI configuration utility for wireless devices" | ||
2 | DESCRIPTION = "iw is a new nl80211 based CLI configuration utility for \ | ||
3 | wireless devices. It supports almost all new drivers that have been added \ | ||
4 | to the kernel recently. " | ||
5 | HOMEPAGE = "https://wireless.wiki.kernel.org/en/users/documentation/iw" | ||
6 | SECTION = "base" | ||
7 | LICENSE = "BSD-2-Clause" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=878618a5c4af25e9b93ef0be1a93f774" | ||
9 | |||
10 | DEPENDS = "libnl" | ||
11 | |||
12 | SRC_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 | |||
17 | SRC_URI[sha256sum] = "2a44676d28a87bbc232903d5d573e7618e4fae0cea3a1aff067a26fa66652b75" | ||
18 | |||
19 | inherit pkgconfig | ||
20 | |||
21 | EXTRA_OEMAKE = "\ | ||
22 | -f '${S}/Makefile' \ | ||
23 | \ | ||
24 | 'PREFIX=${prefix}' \ | ||
25 | 'SBINDIR=${sbindir}' \ | ||
26 | 'MANDIR=${mandir}' \ | ||
27 | " | ||
28 | |||
29 | do_install() { | ||
30 | oe_runmake 'DESTDIR=${D}' install | ||
31 | } | ||