16 lines
394 B
Plaintext
16 lines
394 B
Plaintext
# Copyright (C) 2022 Vincent BENOIT <vincent.benoit@benserv.fr>
|
|
# Release under the MIT license (see COPYING.MIT for the terms)
|
|
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI += " \
|
|
file://hostapd.conf \
|
|
"
|
|
|
|
inherit systemd
|
|
SYSTEMD_AUTO_ENABLE:${PN} = "enable"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${sysconfdir}/
|
|
install -m 0644 ${WORKDIR}/hostapd.conf ${D}${sysconfdir}/
|
|
}
|