diff options
author | Maxin B. John <maxin.john@intel.com> | 2016-06-01 16:25:55 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:36:24 +0100 |
commit | 0c6fc9a01ba58adc221f04cc79ece7efc16c0ee7 (patch) | |
tree | 1ac49b9822121e8174452b0a6af76f1a927d937f /meta/recipes-connectivity/iw/iw_4.7.bb | |
parent | 77187701e35e858835ae51b3ac089a385e97657a (diff) | |
download | openembedded-core-0c6fc9a01ba58adc221f04cc79ece7efc16c0ee7.tar.gz openembedded-core-0c6fc9a01ba58adc221f04cc79ece7efc16c0ee7.tar.bz2 openembedded-core-0c6fc9a01ba58adc221f04cc79ece7efc16c0ee7.zip |
iw: update to version 4.7
4.3 -> 4.7
Refreshed the patch for new version:
1) 0001-iw-version.sh-don-t-use-git-describe-for-versioning.patch
Signed-off-by: Maxin B. John <maxin.john@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/iw/iw_4.7.bb')
-rw-r--r-- | meta/recipes-connectivity/iw/iw_4.7.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/iw/iw_4.7.bb b/meta/recipes-connectivity/iw/iw_4.7.bb new file mode 100644 index 0000000000..e9f414129c --- /dev/null +++ b/meta/recipes-connectivity/iw/iw_4.7.bb @@ -0,0 +1,33 @@ +SUMMARY = "nl80211 based CLI configuration utility for wireless devices" +DESCRIPTION = "iw is a new nl80211 based CLI configuration utility for \ +wireless devices. It supports almost all new drivers that have been added \ +to the kernel recently. " +HOMEPAGE = "http://wireless.kernel.org/en/users/Documentation/iw" +SECTION = "base" +LICENSE = "BSD" +LIC_FILES_CHKSUM = "file://COPYING;md5=878618a5c4af25e9b93ef0be1a93f774" + +DEPENDS = "libnl" + +SRC_URI = "http://www.kernel.org/pub/software/network/iw/${BP}.tar.gz \ + file://0001-iw-version.sh-don-t-use-git-describe-for-versioning.patch \ + file://separate-objdir.patch \ +" + +SRC_URI[md5sum] = "19d1edd276b2ac0c6cccfc7ae8d2b732" +SRC_URI[sha256sum] = "758092229f13d691968060a0ad41364ba8eb8da4503626c20233a5b1eb33b4d9" + +inherit pkgconfig + +EXTRA_OEMAKE = "\ + -f '${S}/Makefile' \ + \ + 'PREFIX=${prefix}' \ + 'SBINDIR=${sbindir}' \ + 'MANDIR=${mandir}' \ +" +B = "${WORKDIR}/build" + +do_install() { + oe_runmake 'DESTDIR=${D}' install +} |