hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
SUMMARY = "Linux Firmware Loader Daemon"
DESCRIPTION = "The Linux Firmware Loader Daemon monitors the kernel for \
firmware requests and uploads the firmware blobs it has via the sysfs \
interface."
HOMEPAGE = "https://github.com/teg/firmwared"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE-APACHE;md5=7b486c2338d225a1405d979ed2c15ce8 \
                    file://COPYING;md5=daa868b8e1ae17d03228a1145b4060da"
 
SRC_URI = "git://github.com/teg/firmwared.git;branch=master;protocol=https \
           file://firmwared.service"
 
PV = "0+git${SRCPV}"
SRCREV = "2e6b5db43d63a5c0283a4cae9a6a20b7ad107a04"
 
S = "${WORKDIR}/git"
 
DEPENDS = "glib-2.0 systemd"
 
inherit pkgconfig autotools systemd features_check
 
REQUIRED_DISTRO_FEATURES = "systemd"
 
SYSTEMD_SERVICE:${PN} = "firmwared.service"
 
do_configure:prepend() {
    ${S}/autogen.sh
}
 
do_install:append() {
    install -d ${D}${systemd_system_unitdir}
    install -m 0644 ${WORKDIR}/firmwared.service ${D}${systemd_system_unitdir}
    sed -i -e 's,@BINDIR@,${bindir},g' ${D}${systemd_system_unitdir}/firmwared.service
}