mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-23 04:59:17 +00:00
Fixes
beaglebone-capes-1.0-r4 do_populate_lic: ${COREBASE}/LICENSE is not a valid license file, please use '${COMMON_LICENSE_DIR}/MIT' for a MIT License file in LIC_FILES_CHKSUM. This will become an error in the future
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
27 lines
706 B
BlitzBasic
27 lines
706 B
BlitzBasic
DESCRIPTION = "Userspace setup for beaglebone capes"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
PR = "r4"
|
|
|
|
inherit allarch
|
|
|
|
SRC_URI = "file://cape.service \
|
|
file://cape.sh \
|
|
file://cape-stop.sh \
|
|
"
|
|
|
|
do_install() {
|
|
install -d ${D}${base_libdir}/systemd/system/
|
|
install -m 0644 ${WORKDIR}/cape.service ${D}${base_libdir}/systemd/system
|
|
|
|
install -d ${D}${base_libdir}/systemd/system/basic.target.wants
|
|
ln -sf ../cape.service ${D}${base_libdir}/systemd/system/basic.target.wants/
|
|
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${WORKDIR}/cape*.sh ${D}${bindir}
|
|
}
|
|
|
|
FILES_${PN} += "${base_libdir}/systemd/system"
|