diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
commit | a780643c4b6aa11e1a36965a69df7116477c7b4c (patch) | |
tree | 17e81e77bde19931facf9b30fa5b5981df796071 /slutils | |
parent | 88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff) |
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb
2004/12/07 04:58:25-06:00 ti.com!kergoth
More updates per the core rename.
2004/12/07 04:46:51-06:00 ti.com!kergoth
Update soundtracker per the core rename.
2004/12/07 04:44:14-06:00 ti.com!kergoth
Merge
2004/12/07 04:42:38-06:00 ti.com!kergoth
Updates per the recent rename of the oe core from 'oe' to 'bitbake'.
BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'slutils')
-rw-r--r-- | slutils/slutils_0.1.0.bb | 0 | ||||
-rw-r--r-- | slutils/slutils_0.1.0.oe | 38 |
2 files changed, 0 insertions, 38 deletions
diff --git a/slutils/slutils_0.1.0.bb b/slutils/slutils_0.1.0.bb new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/slutils/slutils_0.1.0.bb diff --git a/slutils/slutils_0.1.0.oe b/slutils/slutils_0.1.0.oe deleted file mode 100644 index e4205f62fc..0000000000 --- a/slutils/slutils_0.1.0.oe +++ /dev/null @@ -1,38 +0,0 @@ -DESCRIPTION = "Console utilities for certain hardware aspects of the SL-C7x0 based Zaurii" -SECTION = "base" -PRIORITY = "optional" -MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" -LICENSE = "GPL" -PR = "r1" - -inherit qmake update-rc.d - -SRC_URI = "file://sltime.sh" - -INITSCRIPT_NAME = "sltime" -INITSCRIPT_PARAMS = "defaults 5" - -export UTILS = "sltime" - -do_fetch() { - for u in ${UTILS} - do - install -d ${S}/$u - cp -dfR `ls -dp ${FILESDIR}/$u/*|grep -v SCCS` ${S}/$u/ - done -} - -do_configure_prepend() { - cd ${S}/ - echo -e "TEMPLATE=subdirs\nSUBDIRS=${UTILS}\n" >slutils.pro -} - -do_install() { - install -d ${D}/${sbindir} - for u in ${UTILS} - do - install -m 0755 ${S}/${u}/${u} ${D}/${sbindir}/ - done - install -d ${D}/${sysconfdir}/init.d/ - install -m 0755 ${WORKDIR}/sltime.sh ${D}/${sysconfdir}/init.d/sltime -} |