mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
8ea80933fc
We don't set this field in recipes anymore. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
44 lines
1.0 KiB
BlitzBasic
44 lines
1.0 KiB
BlitzBasic
HOMEPAGE = "http://hostap.epitest.fi"
|
|
SECTION = "kernel/userland"
|
|
LICENSE = "GPLv2 | BSD"
|
|
LIC_FILES_CHKSUM = "file://README;md5=4d709ce0f9c84b87d148e16731f647e1"
|
|
DEPENDS = "libnl openssl"
|
|
DESCRIPTION = "User space daemon for extended IEEE 802.11 management"
|
|
|
|
inherit update-rc.d
|
|
INITSCRIPT_NAME = "hostapd"
|
|
|
|
PR = "r0"
|
|
|
|
DEFAULT_PREFERENCE = "-1"
|
|
|
|
SRC_URI = " \
|
|
http://hostap.epitest.fi/releases/hostapd-${PV}.tar.gz \
|
|
file://defconfig \
|
|
file://init \
|
|
"
|
|
|
|
S = "${WORKDIR}/hostapd-${PV}/hostapd"
|
|
|
|
|
|
do_configure() {
|
|
install -m 0644 ${WORKDIR}/defconfig ${S}/.config
|
|
}
|
|
|
|
do_compile() {
|
|
make
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${sbindir} ${D}${sysconfdir}/init.d
|
|
install -m 0644 ${S}/hostapd.conf ${D}${sysconfdir}
|
|
install -m 0755 ${S}/hostapd ${D}${sbindir}
|
|
install -m 0755 ${S}/hostapd_cli ${D}${sbindir}
|
|
install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/hostapd
|
|
}
|
|
|
|
CONFFILES_${PN} += "${sysconfdir}/hostapd.conf"
|
|
|
|
SRC_URI[md5sum] = "236247a7bbd4f60d5fa3e99849d1ffc9"
|
|
SRC_URI[sha256sum] = "002e9dcb7e46cf82b5900a2fcf92b30fc8cdfd32a72d7fd4488588f1c013dfcc"
|