aboutsummaryrefslogtreecommitdiff
path: root/meta-yerba/recipes-core/runit/runit-config.bb
diff options
context:
space:
mode:
authorArslaan Pathan <[email protected]>2026-06-15 19:59:45 +1200
committerArslaan Pathan <[email protected]>2026-06-15 19:59:45 +1200
commit13f9b37549b1a38c72d799d62830513f53c0a2ac (patch)
tree8781cab8ff864625536da3af43642d69f6535f47 /meta-yerba/recipes-core/runit/runit-config.bb
parentff6a6f030c0ab0a9c3d0370fde32e88e38b395f4 (diff)
downloadyerbalinux-main.tar.xz
yerbalinux-main.zip
Start separating runit into 2 targets: runit-config and runit itselfHEADmain
Diffstat (limited to 'meta-yerba/recipes-core/runit/runit-config.bb')
-rw-r--r--meta-yerba/recipes-core/runit/runit-config.bb15
1 files changed, 15 insertions, 0 deletions
diff --git a/meta-yerba/recipes-core/runit/runit-config.bb b/meta-yerba/recipes-core/runit/runit-config.bb
new file mode 100644
index 0000000..d5a0c6c
--- /dev/null
+++ b/meta-yerba/recipes-core/runit/runit-config.bb
@@ -0,0 +1,15 @@
+SUMMARY = "runit configuration files for Yerba Linux"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
+
+SRC_URI = "file://1 file://2 file://3"
+
+do_install() {
+ install -d ${D}/etc/runit ${D}/etc/service ${D}/sbin ${D}/etc/runit/sv ${D}/etc/sv
+
+ install -m 0755 ${WORKDIR}/1 ${D}/etc/runit/
+ install -m 0755 ${WORKDIR}/2 ${D}/etc/runit/
+ install -m 0755 ${WORKDIR}/3 ${D}/etc/runit/
+}
+
+FILES:${PN} = "/etc/runit /etc/service /etc/sv"