summaryrefslogtreecommitdiff
path: root/openembedded/packages/meta/task-bootstrap.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-07-04 20:18:25 +0000
committerRichard Purdie <richard@openedhand.com>2006-07-04 20:18:25 +0000
commit38a06013d777588bd40cacc16d354e62caa3e6ab (patch)
treea0228e51275d10434f7006168fac6f0c9758b003 /openembedded/packages/meta/task-bootstrap.bb
parentae58f06c2bea7bbc51ef5058b8dbf71eda7e4898 (diff)
downloadopenembedded-core-38a06013d777588bd40cacc16d354e62caa3e6ab.tar.gz
openembedded-core-38a06013d777588bd40cacc16d354e62caa3e6ab.tar.bz2
openembedded-core-38a06013d777588bd40cacc16d354e62caa3e6ab.tar.xz
openembedded-core-38a06013d777588bd40cacc16d354e62caa3e6ab.zip
Remove unneeded packages/meta files
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@500 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/meta/task-bootstrap.bb')
-rw-r--r--openembedded/packages/meta/task-bootstrap.bb36
1 files changed, 0 insertions, 36 deletions
diff --git a/openembedded/packages/meta/task-bootstrap.bb b/openembedded/packages/meta/task-bootstrap.bb
deleted file mode 100644
index 497fc31d8..000000000
--- a/openembedded/packages/meta/task-bootstrap.bb
+++ /dev/null
@@ -1,36 +0,0 @@
-DESCRIPTION = "Core packages required for a basic installation"
-MAINTAINER = "Phil Blundell <pb@handhelds.org>"
-PR = "r26"
-
-# The BOOTSTRAP_EXTRA_ variables are often manipulated by the
-# MACHINE .conf files, so adjust PACKAGE_ARCH accordingly.
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-
-ALLOW_EMPTY = 1
-PACKAGES = "${PN}"
-
-MODUTILS ?= "24 26"
-
-def bootstrap_modutils_rdepends(d):
- import bb
- m = bb.data.getVar('MODUTILS', d, 1)
- r = []
- if '24' in m:
- r.append('modutils-depmod')
- if '26' in m:
- r.append('module-init-tools-depmod')
- return ' '.join(r)
-
-HOTPLUG ?= "linux-hotplug"
-
-RDEPENDS = 'base-files base-passwd busybox \
- initscripts \
- netbase sysvinit sysvinit-pidof tinylogin \
- modutils-initscripts fuser setserial\
- ${HOTPLUG} \
- ${BOOTSTRAP_EXTRA_RDEPENDS} \
- ${@bootstrap_modutils_rdepends(d)}'
-
-RRECOMMENDS = 'dropbear portmap \
- ${BOOTSTRAP_EXTRA_RRECOMMENDS}'
-LICENSE = MIT