diff options
Diffstat (limited to 'recipes/angstrom/angstrom-led-config.bb')
-rw-r--r-- | recipes/angstrom/angstrom-led-config.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes/angstrom/angstrom-led-config.bb b/recipes/angstrom/angstrom-led-config.bb new file mode 100644 index 0000000000..12cdb96d93 --- /dev/null +++ b/recipes/angstrom/angstrom-led-config.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "Configuration files for runtime LED configuration" + +#PV = "${DISTRO_VERSION}" +PR = "r4" +PACKAGE_ARCH = "${MACHINE_ARCH}" + +inherit update-rc.d +INITSCRIPT_NAME = "led-config" +INITSCRIPT_PARAMS = "defaults 05" + +SRC_URI = "file://led-config \ + file://leds \ + " + +do_compile() { + : +} + + +do_install () { + install -d ${D}/${sysconfdir}/default + install -d ${D}/${INIT_D_DIR} + + install -m 0644 ${WORKDIR}/leds ${D}/${sysconfdir}/default/ + install -m 0755 ${WORKDIR}/led-config ${D}/${INIT_D_DIR} +} + +CONFFILES_${PN} += "${sysconfdir}/default/leds \ + ${INIT_D_DIR}/led-config \ + " + |