Re: [PATCH 0/2] iw: fixes to Android.mk to include iw in AOSP builds

2015-08-13 Thread Filipe Brandenburger
Hi Johannes, On Thu, Aug 13, 2015 at 2:01 AM, Johannes Berg johan...@sipsolutions.net wrote: We have a very similar patch internally as well (that I was still evualating/reviewing) but it was less complete, so I've applied this despite Arik's objections. Thank you! I think that if anyone

[PATCH 2/2] iw: remove android-nl.c with unneeded workaround

2015-07-30 Thread Filipe Brandenburger
, tested the generated iw binary. Signed-off-by: Filipe Brandenburger filbran...@google.com --- Android.mk | 2 +- android-nl.c | 6 -- 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 android-nl.c diff --git a/Android.mk b/Android.mk index 0820892c6c19..8d6567f624c1 100644

[PATCH 1/2] iw: fix references to libnl in Android.mk

2015-07-30 Thread Filipe Brandenburger
The latest AOSP refers to that library as libnl and not libnl_2. TEST=Built AOSP tree with this patchset, tested the generated iw binary. Signed-off-by: Filipe Brandenburger filbran...@google.com --- Android.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Android.mk b

[PATCH 0/2] iw: fixes to Android.mk to include iw in AOSP builds

2015-07-30 Thread Filipe Brandenburger
. If that's what you prefer, let me know and I can send you an alternative commit to just remove those files. Let me know if you have questions or suggestions. Cheers, Filipe Filipe Brandenburger (2): iw: fix references to libnl in Android.mk iw: remove android-nl.c with unneeded workaround

[PATCH v2 1/2] iw: fix references to libnl in Android.mk

2015-07-30 Thread Filipe Brandenburger
The latest AOSP refers to that library as libnl and not libnl_2. TEST=Built AOSP tree with this patchset, tested the generated iw binary. Signed-off-by: Filipe Brandenburger filbran...@google.com --- v2: Removed now redundant LOCAL_C_INCLUDES as suggested by Elliott. Retested to confirm