blob: 991fd2b82e2770269e4ececbff8aa73de3ef8b90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "Configuration files for SoftAP with udhcpd"
SECTION = "console/network"
HOMEPAGE = "http://udhcp.busybox.net/"
LICENSE = "GPLv2 & BSD-4-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=de10de48642ab74318e893a61105afbb"
PR = "r1"
PACKAGE_ARCH = "${MACHINE_ARCH}"
S = "${WORKDIR}"
# Default configuration file is from the base udhcp package
SRC_URI = "file://udhcpd.conf \
file://LICENSE"
do_install() {
install -d ${D}${sysconfdir}
install -m 0755 ${S}/udhcpd.conf ${D}${sysconfdir}
}
FILES_${PN} += "${sysconfdir}/udhcpd.conf"
CONFFILES_${PN} += "${sysconfdir}/udhcpd.conf"
|