blob: 97d4ca39f08cbb13e7b941a2824aa077131c1824 [file] [log] [blame]
charkear2f9414d2023-03-01 20:40:35 +00001FILESEXTRAPATHS:append := "${THISDIR}/${PN}:"
2SRC_URI += " file://start-ipkvm.service "
3SRC_URI += " file://create_usbhid.sh "
4
5FILES:${PN} += " \
6 ${systemd_system_unitdir}/start-ipkvm.service \
7 ${bindir}/create_usbhid.sh \
8"
9
10do_install:append () {
Matt Fischerde0c27e2024-01-17 14:33:40 -070011 install -D -m 0644 ${WORKDIR}/start-ipkvm.service ${D}${systemd_system_unitdir}
charkear2f9414d2023-03-01 20:40:35 +000012 install -D -m 0755 ${WORKDIR}/create_usbhid.sh ${D}${bindir}
Matt Fischerde0c27e2024-01-17 14:33:40 -070013}