xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-core/systemd/systemd-systemctl-native.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "Wrapper for enabling systemd services"
2
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
5
6PR = "r6"
7
8inherit native
9
10SRC_URI = "file://systemctl"
11
12S = "${WORKDIR}"
13
14do_install() {
15	install -d ${D}${bindir}
16	install -m 0755 ${WORKDIR}/systemctl ${D}${bindir}
17}
18