diff options
Diffstat (limited to 'meta/packages/wpa-supplicant/wpa-supplicant_0.2.6.inc')
-rw-r--r-- | meta/packages/wpa-supplicant/wpa-supplicant_0.2.6.inc | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant_0.2.6.inc b/meta/packages/wpa-supplicant/wpa-supplicant_0.2.6.inc deleted file mode 100644 index e75ce2e570..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant_0.2.6.inc +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | SECTION = "kernel/userland" | ||
2 | HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/" | ||
3 | PRIORITY = "optional" | ||
4 | LICENSE = "GPL" | ||
5 | |||
6 | SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-${PV}.tar.gz \ | ||
7 | file://wpa-defconfig \ | ||
8 | file://wpa_supplicant_default.conf" | ||
9 | |||
10 | RREPLACES_${PN} = "hostap-${PN}" | ||
11 | RPROVIDES_${PN} = "hostap-${PN}" | ||
12 | RCONFLICTS_${PN} = "hostap-${PN}" | ||
13 | |||
14 | S = "${WORKDIR}/wpa_supplicant-${PV}" | ||
15 | |||
16 | do_compile() { | ||
17 | unset CFLAGS | ||
18 | base_do_compile | ||
19 | } | ||
20 | |||
21 | do_configure() { | ||
22 | install -m 0644 ${WORKDIR}/wpa-defconfig .config | ||
23 | } | ||
24 | |||
25 | do_install() { | ||
26 | install -d ${D}${sysconfdir} ${D}${bindir} | ||
27 | install -m 0644 wpa_supplicant.conf ${D}${sysconfdir}/wpa_supplicant.conf.sample | ||
28 | install -m 0644 ../wpa_supplicant_default.conf ${D}${sysconfdir}/wpa_supplicant.conf | ||
29 | install -m 0755 wpa_passphrase ${D}${bindir} | ||
30 | install -m 0755 wpa_cli ${D}${bindir} | ||
31 | install -m 0755 wpa_supplicant ${D}${bindir} | ||
32 | } | ||
33 | |||