mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-25 19:27:14 +00:00
c95e155780
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
44 lines
1.1 KiB
BlitzBasic
44 lines
1.1 KiB
BlitzBasic
HOMEPAGE = "http://hostap.epitest.fi"
|
|
SECTION = "kernel/userland"
|
|
LICENSE = "GPLv2 | BSD"
|
|
LIC_FILES_CHKSUM = "file://README;md5=4d709ce0f9c84b87d148e16731f647e1"
|
|
DEPENDS = "libnl openssl"
|
|
SUMMARY = "User space daemon for extended IEEE 802.11 management"
|
|
|
|
inherit update-rc.d
|
|
INITSCRIPT_NAME = "hostapd"
|
|
|
|
|
|
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() {
|
|
export CFLAGS="-MMD -O2 -Wall -g -I${STAGING_INCDIR}/libnl3"
|
|
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"
|