diff options
author | Christopher Larson <chris_larson@mentor.com> | 2015-08-28 13:22:59 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-01 11:43:56 +0100 |
commit | fc4a2097bf2ffe795aa23ac6c7fbf34cbbc625fe (patch) | |
tree | f17d4ba626dac5ec90c527e3ff02861a5e548d48 | |
parent | e8769bf7c399518f013106bc2dc6d864e7af4377 (diff) | |
download | poky-fc4a2097bf2ffe795aa23ac6c7fbf34cbbc625fe.tar.gz |
iw: add recipe from meta-networking
iw uses cfg80211/nl80211, which is the way of the future. wireless-tools uses
WEXT, which uses ioctl, which is in deep maintenance mode. See
http://wireless.kernel.org/en/developers/Documentation/Wireless-Extensions.
Also https://wireless.wiki.kernel.org/en/users/Documentation/iw indicates "The
old tool iwconfing, which uses Wireless Extensions interface, is deprecated
and it's strongly recommended to switch to iw and nl80211."
(From OE-Core rev: a2a7c73e08f7366030dd5165b490403a13d1d7a8)
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-connectivity/iw/iw/0001-iw-version.sh-don-t-use-git-describe-for-versioning.patch | 43 | ||||
-rw-r--r-- | meta/recipes-connectivity/iw/iw_4.1.bb | 23 |
2 files changed, 66 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/iw/iw/0001-iw-version.sh-don-t-use-git-describe-for-versioning.patch b/meta/recipes-connectivity/iw/iw/0001-iw-version.sh-don-t-use-git-describe-for-versioning.patch new file mode 100644 index 0000000000..e64dd0ad91 --- /dev/null +++ b/meta/recipes-connectivity/iw/iw/0001-iw-version.sh-don-t-use-git-describe-for-versioning.patch | |||
@@ -0,0 +1,43 @@ | |||
1 | From 5310abba864cfe3a8b65af130729447604190b29 Mon Sep 17 00:00:00 2001 | ||
2 | From: Koen Kooi <koen@dominion.thruhere.net> | ||
3 | Date: Tue, 29 Nov 2011 17:03:27 +0100 | ||
4 | Subject: [PATCH] iw: version.sh: don't use git describe for versioning | ||
5 | |||
6 | It will detect top-level git repositories like the Angstrom setup-scripts and break. | ||
7 | |||
8 | Upstream-Status: Unknown | ||
9 | |||
10 | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> | ||
11 | --- | ||
12 | version.sh | 16 +--------------- | ||
13 | 1 file changed, 1 insertion(+), 15 deletions(-) | ||
14 | |||
15 | diff --git a/version.sh b/version.sh | ||
16 | index 11d124b..5d423c4 100755 | ||
17 | --- a/version.sh | ||
18 | +++ b/version.sh | ||
19 | @@ -3,21 +3,7 @@ | ||
20 | VERSION="3.15" | ||
21 | OUT="$1" | ||
22 | |||
23 | -if [ -d .git ] && head=`git rev-parse --verify HEAD 2>/dev/null`; then | ||
24 | - git update-index --refresh --unmerged > /dev/null | ||
25 | - descr=$(git describe) | ||
26 | - | ||
27 | - # on git builds check that the version number above | ||
28 | - # is correct... | ||
29 | - [ "${descr%%-*}" = "v$VERSION" ] || exit 2 | ||
30 | - | ||
31 | - v="${descr#v}" | ||
32 | - if git diff-index --name-only HEAD | read dummy ; then | ||
33 | - v="$v"-dirty | ||
34 | - fi | ||
35 | -else | ||
36 | - v="$VERSION" | ||
37 | -fi | ||
38 | +v="$VERSION" | ||
39 | |||
40 | echo '#include "iw.h"' > "$OUT" | ||
41 | echo "const char iw_version[] = \"$v\";" >> "$OUT" | ||
42 | -- | ||
43 | 1.7.7.3 | ||
diff --git a/meta/recipes-connectivity/iw/iw_4.1.bb b/meta/recipes-connectivity/iw/iw_4.1.bb new file mode 100644 index 0000000000..e1e7c12e0d --- /dev/null +++ b/meta/recipes-connectivity/iw/iw_4.1.bb | |||
@@ -0,0 +1,23 @@ | |||
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 = "http://wireless.kernel.org/en/users/Documentation/iw" | ||
6 | SECTION = "base" | ||
7 | LICENSE = "BSD" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=878618a5c4af25e9b93ef0be1a93f774" | ||
9 | |||
10 | DEPENDS = "libnl pkgconfig" | ||
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 | " | ||
15 | |||
16 | SRC_URI[md5sum] = "68c282285c71c956069957e9ca10a6a7" | ||
17 | SRC_URI[sha256sum] = "14bfc627b37f7f607e4ffa63a70ded15fa2ea85177f703cb17d7fe36f9c8f33d" | ||
18 | |||
19 | EXTRA_OEMAKE = "" | ||
20 | |||
21 | do_install() { | ||
22 | oe_runmake DESTDIR=${D} install | ||
23 | } | ||