diff options
Diffstat (limited to 'packages/tasks/task-bootstrap.bb')
| -rw-r--r-- | packages/tasks/task-bootstrap.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/packages/tasks/task-bootstrap.bb b/packages/tasks/task-bootstrap.bb new file mode 100644 index 0000000000..ef76ec4345 --- /dev/null +++ b/packages/tasks/task-bootstrap.bb @@ -0,0 +1,36 @@ +DESCRIPTION = "Core packages required for a basic installation" +MAINTAINER = "Phil Blundell <pb@handhelds.org>" +PR = "r25" + +# 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 |
