diff options
author | Philipp Zabel <philipp.zabel@gmail.com> | 2006-07-23 14:19:49 +0000 |
---|---|---|
committer | Philipp Zabel <philipp.zabel@gmail.com> | 2006-07-23 14:19:49 +0000 |
commit | 7ade510f39625ad0a6744db95160f661ab4bbd1e (patch) | |
tree | 5803162ed78c25ebeb126c7a017ba936c76d1153 /packages/tasks/task-bootstrap-unionroot.bb | |
parent | 68b5df2b8115eee9576ea414d2663a9000f54ee8 (diff) | |
parent | 8a7dd61b6490353b3a284c7100e0adb9840d6da4 (diff) |
merge of 206b9c34335d6624ecb83fa31c72e4d6fbe3b541
and da3bdc9f7b7872511bed7da95bbe562ffd88f6fe
Diffstat (limited to 'packages/tasks/task-bootstrap-unionroot.bb')
-rw-r--r-- | packages/tasks/task-bootstrap-unionroot.bb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/packages/tasks/task-bootstrap-unionroot.bb b/packages/tasks/task-bootstrap-unionroot.bb new file mode 100644 index 0000000000..5db841903d --- /dev/null +++ b/packages/tasks/task-bootstrap-unionroot.bb @@ -0,0 +1,43 @@ +DESCRIPTION = "Core packages required for a basic installation with unionroot" +MAINTAINER = "Chris Lord <cwiiis@handhelds.org>" +PROVIDES = "task-bootstrap" +RPROVIDES = "task-bootstrap" +PR = "r2" +DEFAULT_PREFERENCE = "-1" + +# 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 \ + ${HOTPLUG} \ + ${BOOTSTRAP_EXTRA_RDEPENDS} \ + ${@bootstrap_modutils_rdepends(d)} \ + unionfs-modules \ + unionfs-utils \ + unionroot \ + unionroot-utils' + +RRECOMMENDS = 'dropbear portmap \ + ${BOOTSTRAP_EXTRA_RRECOMMENDS}' +LICENSE = MIT |