diff options
author | Justin Patrin <papercrane@gmail.com> | 2005-09-02 18:00:05 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-02 18:00:05 +0000 |
commit | 85804786bcde3d7cd77db5d4c1918659a2a7d636 (patch) | |
tree | 306b13a3dce00b1d4806684aa59044ece80554c9 /packages/slutils/slutils_0.1.0.bb | |
parent | 809d7e642cf1a5bbcd184acb316c6ffeb79e7077 (diff) |
slutils: add slfb, a command-line utility to turn on/off the FrameBuffer for 2.4 Zaurus kernels
Diffstat (limited to 'packages/slutils/slutils_0.1.0.bb')
-rw-r--r-- | packages/slutils/slutils_0.1.0.bb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/packages/slutils/slutils_0.1.0.bb b/packages/slutils/slutils_0.1.0.bb index 4b18d2855a..958fab46d5 100644 --- a/packages/slutils/slutils_0.1.0.bb +++ b/packages/slutils/slutils_0.1.0.bb @@ -1,9 +1,12 @@ DESCRIPTION = "Console utilities for certain hardware aspects of Sharp Linux based Zaurii" +DESCRIPTION_slfb = "A command-line utility to turn on/off the FrameBuffer on Linux 2.4-based Zaurii" +DESCRIPTION_slbl = "A command-line utility to control the BackLight on Linux 2.4-based Zaurii" +DESCRIPTION_sltime = "A ustility to save and restore the time on Sharp Linux based Zaurii" SECTION = "console/utils" PRIORITY = "optional" MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" LICENSE = "GPL" -PR = "r3" +PR = "r4" inherit qmake update-rc.d @@ -12,7 +15,7 @@ SRC_URI = "file://sltime.sh" INITSCRIPT_NAME = "sltime" INITSCRIPT_PARAMS = "defaults 5" -export UTILS = "sltime slbl" +export UTILS = "sltime slbl slfb" do_fetch() { for u in ${UTILS} @@ -37,6 +40,7 @@ do_install() { install -m 0755 ${WORKDIR}/sltime.sh ${D}${sysconfdir}/init.d/sltime } -PACKAGES =+ "slbl" +PACKAGES =+ "slbl slfb" FILES_slbl = "${sbindir}/slbl" +FILES_slfb = "${sbindir}/slfb" |