Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
SECTION = "console/network"
|
||||
SUMMARY = "dhcpcd - a DHCP client"
|
||||
DESCRIPTION = "dhcpcd runs on your machine and silently configures your \
|
||||
computer to work on the attached networks without trouble \
|
||||
and mostly without configuration."
|
||||
|
||||
HOMEPAGE = "http://roy.marples.name/projects/dhcpcd/"
|
||||
|
||||
LICENSE = "BSD-2-Clause"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=ba9c7e534853aaf3de76c905b2410ffd"
|
||||
|
||||
SRC_URI = "git://github.com/NetworkConfiguration/dhcpcd;protocol=https;branch=master \
|
||||
file://0001-remove-INCLUDEDIR-to-prevent-build-issues.patch \
|
||||
file://0001-20-resolv.conf-improve-the-sitation-of-working-with-.patch \
|
||||
file://dhcpcd.service \
|
||||
file://dhcpcd@.service \
|
||||
file://0001-dhcpcd.8-Fix-conflict-error-when-enable-multilib.patch \
|
||||
"
|
||||
|
||||
SRCREV = "1c8ae59836fa87b4c63c598087f0460ec20ed862"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit pkgconfig autotools-brokensep systemd useradd
|
||||
|
||||
SYSTEMD_SERVICE:${PN} = "dhcpcd.service"
|
||||
|
||||
PACKAGECONFIG ?= "udev ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
|
||||
|
||||
PACKAGECONFIG[udev] = "--with-udev,--without-udev,udev,udev"
|
||||
PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6"
|
||||
# ntp conflicts with chrony
|
||||
PACKAGECONFIG[ntp] = "--with-hook=ntp, , ,ntp"
|
||||
PACKAGECONFIG[chrony] = "--with-hook=ntp, , ,chrony"
|
||||
PACKAGECONFIG[ypbind] = "--with-eghook=yp, , ,ypbind-mt"
|
||||
|
||||
# add option to override DBDIR location
|
||||
DBDIR ?= "${localstatedir}/lib/${BPN}"
|
||||
|
||||
EXTRA_OECONF = "--enable-ipv4 \
|
||||
--dbdir=${DBDIR} \
|
||||
--sbindir=${base_sbindir} \
|
||||
--runstatedir=/run \
|
||||
--enable-privsep \
|
||||
--privsepuser=dhcpcd \
|
||||
--with-hooks \
|
||||
--with-eghooks \
|
||||
"
|
||||
|
||||
USERADD_PACKAGES = "${PN}"
|
||||
USERADD_PARAM:${PN} = "--system -d ${DBDIR} -M -s /bin/false -U dhcpcd"
|
||||
|
||||
do_install:append () {
|
||||
# install systemd unit files
|
||||
install -d ${D}${systemd_system_unitdir}
|
||||
install -m 0644 ${WORKDIR}/dhcpcd*.service ${D}${systemd_system_unitdir}
|
||||
|
||||
chmod 700 ${D}${DBDIR}
|
||||
chown dhcpcd:dhcpcd ${D}${DBDIR}
|
||||
}
|
||||
|
||||
FILES:${PN}-dbg += "${libdir}/dhcpcd/dev/.debug"
|
||||
Reference in New Issue
Block a user