summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-07-09 17:57:32 +0000
committerChris Larson <clarson@kergoth.com>2003-07-09 17:57:32 +0000
commit94c600728e790a64cbd6d642d79609f47f67eeac (patch)
treee23d3ae5aaf6416dfcd1fc2bfdd67e50bb99ee9a
parenta5576f60a9bab1e17a614a62ee414d2a3efff251 (diff)
patcher-1.0.oe, kernel-headers-2.4.21.oe, ipkg-utils-1.0_cvs.oe:
Add some missing fields for ipk creation BKrev: 3f0c578c1xSmv7hhzPJG9_qRPhrgWQ
-rw-r--r--content/ipkg-utils-1.0_cvs.oe4
-rw-r--r--content/kernel-headers-2.4.21.oe4
-rw-r--r--content/patcher-1.0.oe20
3 files changed, 28 insertions, 0 deletions
diff --git a/content/ipkg-utils-1.0_cvs.oe b/content/ipkg-utils-1.0_cvs.oe
index c744923db2..038f717207 100644
--- a/content/ipkg-utils-1.0_cvs.oe
+++ b/content/ipkg-utils-1.0_cvs.oe
@@ -1,4 +1,8 @@
DESCRIPTION="Itsy Package Manager utilities"
+DEPENDS=""
+SECTION="base"
+PRIORITY="optional"
+MAINTAINER="Chris Larson <kergoth@handhelds.org>"
LICENSE="GPL"
SRC_URI="cvs://anoncvs:anoncvs@192.58.209.91/cvs;module=ipkg-utils"
#DEPENDS=virtual/libc
diff --git a/content/kernel-headers-2.4.21.oe b/content/kernel-headers-2.4.21.oe
index 1792853acb..4774aba6d6 100644
--- a/content/kernel-headers-2.4.21.oe
+++ b/content/kernel-headers-2.4.21.oe
@@ -1,4 +1,8 @@
DESCRIPTION="Kernel headers need to compile the C-Library"
+DEPENDS=""
+SECTION="base"
+PRIORITY="optional"
+MAINTAINER="Chris Larson <kergoth@handhelds.org>"
LICENSE="GPL"
SRC_URI="http://www.uclibc.org/downloads/toolchain/${P}.tar.bz2"
PROVIDES=virtual/kernel-header
diff --git a/content/patcher-1.0.oe b/content/patcher-1.0.oe
index e69de29bb2..63bfe64aa3 100644
--- a/content/patcher-1.0.oe
+++ b/content/patcher-1.0.oe
@@ -0,0 +1,20 @@
+SRC_URI="http://www.mn-logistik.de/unsupported/pxa250/patcher"
+DESCRIPTION="Patcher tool"
+LICENSE="Unknown"
+DEPENDS=
+SECTION="base"
+PRIORITY="optional"
+MAINTAINER="Chris Larson <kergoth@handhelds.org>"
+
+do_unpack() {
+ oenote "Nothing to unpack!"
+}
+
+do_stage() {
+ install -m 0755 ${DL_DIR}/patcher ${STAGING_BINDIR}/
+}
+
+do_install() {
+ install -d ${D}/usr/bin
+ install -m 0755 ${DL_DIR}/patcher ${D}/usr/bin
+}