aurora-fb-image: add initial recipe for aurora based image suitable for the framebuffer
[openembedded.git] / recipes / hostap / hostap-daemon-0.7.inc
blob49f265082c0e555cb880c5feee97230abe4d93f0
1 HOMEPAGE = "http://hostap.epitest.fi"
2 SECTION = "kernel/userland"
3 PRIORITY = "optional"
4 LICENSE = "GPL"
5 DEPENDS = "libnl openssl"
7 inherit update-rc.d
8 INITSCRIPT_NAME=hostapd
10 do_configure() {
11         install -m 0644 ${WORKDIR}/defconfig ${S}/.config
14 do_compile() {
15         make
18 do_install() {
19         install -d ${D}${sbindir} ${D}${sysconfdir}/init.d
20         install -m 0644 ${S}/hostapd.conf ${D}${sysconfdir}
21         install -m 0755 ${S}/hostapd ${D}${sbindir}
22         install -m 0755 ${S}/hostapd_cli ${D}${sbindir}
23         install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/hostapd
26 CONFFILES_${PN} += "${sysconfdir}/hostapd.conf"