From b066accc47f9524fde54efcc106273f8d84a4839 Mon Sep 17 00:00:00 2001 From: Phil Blundell Date: Sun, 5 Dec 2004 18:51:54 +0000 Subject: remove modutils-modinfo from task-bootstrap allow MACHINE.conf to control which of modutils-depmod and module-init-tools-depmod is included; default is both BKrev: 41b358caOFyRowRQOFcc7Y1khQnzlA --- meta/task-bootstrap.oe | 32 ++++++++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) (limited to 'meta') diff --git a/meta/task-bootstrap.oe b/meta/task-bootstrap.oe index ebcbcc6a4b..cd84ad5904 100644 --- a/meta/task-bootstrap.oe +++ b/meta/task-bootstrap.oe @@ -1,6 +1,6 @@ DESCRIPTION = "Core packages required for a basic installation" MAINTAINER = "Phil Blundell " -PR = "r11" +PR = "r13" # The BOOTSTRAP_EXTRA_ variables are often manipulated by the # MACHINE .conf files, so adjust PACKAGE_ARCH accordingly. @@ -9,17 +9,41 @@ PACKAGE_ARCH := "${MACHINE_ARCH}" ALLOW_EMPTY = 1 PACKAGES = "${PN}" +MODUTILS ?= "24 26" + +def bootstrap_modutils_depends(d): + import oe + m = oe.data.getVar('MODUTILS', d, 1) + r = [] + if '24' in m: + r.append('modutils') + if '26' in m: + r.append('module-init-tools') + return ' '.join(r) + +def bootstrap_modutils_rdepends(d): + import oe + m = oe.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) + DEPENDS = 'base-files base-passwd-3.5.7 \ busybox dropbear hotplug initscripts modutils netbase \ sysvinit tinylogin portmap \ modutils-initscripts \ - ${BOOTSTRAP_EXTRA_DEPENDS}' + ${BOOTSTRAP_EXTRA_DEPENDS} \ + ${@bootstrap_modutils_depends(d)}' RDEPENDS = 'base-files base-passwd busybox \ - hotplug initscripts modutils-depmod modutils-modinfo \ + hotplug initscripts \ netbase sysvinit tinylogin \ modutils-initscripts \ - ${BOOTSTRAP_EXTRA_RDEPENDS}' + ${BOOTSTRAP_EXTRA_RDEPENDS} \ + ${@bootstrap_modutils_rdepends(d)}' RRECOMMENDS = 'dropbear portmap \ ${BOOTSTRAP_EXTRA_RRECOMMENDS}' -- cgit v1.2.3