summaryrefslogtreecommitdiff
path: root/openembedded/packages/update-rc.d
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2005-08-31 10:45:47 +0000
committerRichard Purdie <richard@openedhand.com>2005-08-31 10:45:47 +0000
commit4b46c1f6e891b1ddd5968536440b888661fade3e (patch)
treee0ba2c1f56f61b868bf746da5c4feabb25b800b2 /openembedded/packages/update-rc.d
downloadopenembedded-core-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.gz
openembedded-core-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.bz2
openembedded-core-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.xz
openembedded-core-4b46c1f6e891b1ddd5968536440b888661fade3e.zip
Initial population
git-svn-id: https://svn.o-hand.com/repos/poky@1 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/update-rc.d')
-rw-r--r--openembedded/packages/update-rc.d/update-rc.d-0.6/copyright.patch27
-rw-r--r--openembedded/packages/update-rc.d/update-rc.d_0.6.bb22
-rw-r--r--openembedded/packages/update-rc.d/update-rc.d_0.7.bb21
3 files changed, 70 insertions, 0 deletions
diff --git a/openembedded/packages/update-rc.d/update-rc.d-0.6/copyright.patch b/openembedded/packages/update-rc.d/update-rc.d-0.6/copyright.patch
new file mode 100644
index 000000000..3463247fe
--- /dev/null
+++ b/openembedded/packages/update-rc.d/update-rc.d-0.6/copyright.patch
@@ -0,0 +1,27 @@
+Index: update-rc.d
+===================================================================
+RCS file: /cvs/apps/update-rc.d/update-rc.d,v
+retrieving revision 1.6
+retrieving revision 1.7
+diff -u -r1.6 -r1.7
+--- update-rc.d/update-rc.d 31 Dec 2004 12:21:40 -0000 1.6
++++ update-rc.d/update-rc.d 31 Dec 2004 16:39:09 -0000 1.7
+@@ -2,8 +2,17 @@
+ #
+ # update-rc.d Update the links in /etc/rc[0-9S].d/
+ #
+-# Phil Blundell <pb@nexus.co.uk> 2003-06-26
++# (c) 2003, 2004 Phil Blundell <pb@handhelds.org>
+ #
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 2, or (at your option)
++# any later version.
++#
++# This program is distributed in the hope that it will be useful,
++# but WITHOUT ANY WARRANTY; without even the implied warranty of
++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
++# GNU General Public License for more details.
+
+ initd="/etc/init.d"
+ etcd="/etc/rc"
diff --git a/openembedded/packages/update-rc.d/update-rc.d_0.6.bb b/openembedded/packages/update-rc.d/update-rc.d_0.6.bb
new file mode 100644
index 000000000..ba2f55137
--- /dev/null
+++ b/openembedded/packages/update-rc.d/update-rc.d_0.6.bb
@@ -0,0 +1,22 @@
+SECTION = "base"
+PRIORITY = "standard"
+DESCRIPTION = "Manage symlinks in /etc/rcN.d"
+MAINTAINER = "Phil Blundell <pb@handhelds.org>"
+LICENSE = "GPL"
+S = "${WORKDIR}/update-rc.d"
+PR = "r1"
+
+SRC_URI = "${HANDHELDS_CVS};module=apps/update-rc.d;tag=r0_6 \
+ file://copyright.patch;patch=1"
+
+do_compile() {
+}
+
+do_stage() {
+ install -m 0755 ${S}/update-rc.d ${STAGING_BINDIR}/
+}
+
+do_install() {
+ install -d ${D}${sbindir}
+ install -m 0755 ${S}/update-rc.d ${D}${sbindir}/update-rc.d
+}
diff --git a/openembedded/packages/update-rc.d/update-rc.d_0.7.bb b/openembedded/packages/update-rc.d/update-rc.d_0.7.bb
new file mode 100644
index 000000000..ae1cfe83f
--- /dev/null
+++ b/openembedded/packages/update-rc.d/update-rc.d_0.7.bb
@@ -0,0 +1,21 @@
+SECTION = "base"
+PRIORITY = "standard"
+DESCRIPTION = "Manage symlinks in /etc/rcN.d"
+MAINTAINER = "Phil Blundell <pb@handhelds.org>"
+LICENSE = "GPL"
+S = "${WORKDIR}/update-rc.d"
+PR = "r0"
+
+SRC_URI = "${HANDHELDS_CVS};module=apps/update-rc.d;tag=r0_7"
+
+do_compile() {
+}
+
+do_stage() {
+ install -m 0755 ${S}/update-rc.d ${STAGING_BINDIR}/
+}
+
+do_install() {
+ install -d ${D}${sbindir}
+ install -m 0755 ${S}/update-rc.d ${D}${sbindir}/update-rc.d
+}