diff options
| author | Ricardo Cerqueira <ricardo@cyngn.com> | 2015-07-12 02:08:27 +0100 |
|---|---|---|
| committer | Michael Bestas <mikeioannina@gmail.com> | 2017-01-01 19:40:34 +0200 |
| commit | cd1d18c8d35d85058dbf801cdf96f59153a1de59 (patch) | |
| tree | 67b086edad5c530c70706294e4be6e08ea5d76ac /src | |
| parent | a0574a600e92178b1b7156d255226dfd369f9ca2 (diff) | |
| download | android_external_wpa_supplicant_8-cd1d18c8d35d85058dbf801cdf96f59153a1de59.tar.gz android_external_wpa_supplicant_8-cd1d18c8d35d85058dbf801cdf96f59153a1de59.tar.bz2 android_external_wpa_supplicant_8-cd1d18c8d35d85058dbf801cdf96f59153a1de59.zip | |
eap_peer: Make the QMI EAP proxy a standalone lib
This code can't be built without linking to some proprietary libs
and headers. Split it off so a prebuilt can be distributed for
OSS builds
Ref: CYNGNOS-428
Change-Id: I430dda72e8cb156d86ef286244230bb3f511ca23
Fix dependencies
Change-Id: I86c5e41e4d6987e432cb2f129ad585149228b04a
wpa_supplicant: Remove unnecessary QMI linkage
* The QMI libraries are linked with the intermediate lib, we don't
need to link them directly to the executable.
Change-Id: Ifedf5c480af6b5f0309cd36da719e98ae3a69750
Diffstat (limited to 'src')
| -rw-r--r-- | src/eap_peer/eap_proxy_qmi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/eap_peer/eap_proxy_qmi.c b/src/eap_peer/eap_proxy_qmi.c index bd132cff..b1bf2b3c 100644 --- a/src/eap_peer/eap_proxy_qmi.c +++ b/src/eap_peer/eap_proxy_qmi.c @@ -1563,6 +1563,8 @@ static char bin_to_hexchar(u8 ch) } return ch + 'a' - 10; } + +extern struct eap_peer_config * eap_get_config(struct eap_sm *sm) __attribute__((weak)); static Boolean eap_proxy_build_identity(struct eap_proxy_sm *eap_proxy, u8 id, struct eap_sm *eap_sm) { struct eap_hdr *resp; |
