diff options
author | Graham Gower <graham.gower@gmail.com> | 2010-08-04 20:58:54 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2010-08-06 14:52:20 +0200 |
commit | 746a5a99da3d0f52e88fa76d4185fb0e044837ba (patch) | |
tree | 32672ec2ed275c7fd31c79f9be7c931100b1b95b /recipes/images/base-image.bb | |
parent | a7cc4bc9a7e0643e2288d4213e1fb64b7a6e6169 (diff) |
Remove redundant dependencies upon opkg and opkg-collateral.
rootfs_ipk.bbclass already pulls these in, so avoid some confusion.
This is totally untested.
Signed-off-by: Graham Gower <graham.gower@gmail.com>
Acked-by: Chris Larson <clarson@kergoth.com>
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes/images/base-image.bb')
-rw-r--r-- | recipes/images/base-image.bb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/recipes/images/base-image.bb b/recipes/images/base-image.bb index ee1f115e35..51d6d34004 100644 --- a/recipes/images/base-image.bb +++ b/recipes/images/base-image.bb @@ -20,9 +20,6 @@ IMAGE_PREPROCESS_COMMAND = "create_etc_timestamp" DISTRO_SSH_DAEMON ?= "dropbear" -IPKG_VARIANT ?= "opkg" -DISTRO_PACKAGE_MANAGER ?= "${IPKG_VARIANT}" - # FIXME: We need a distro-indendent way of specifying feed configs. # Once the RFC for the DISTRO_FEED_CONFIGS variable name is approved, # we can remove this default definition and set it in the distro config. @@ -31,7 +28,6 @@ DISTRO_FEED_CONFIGS ?= "${ANGSTROM_FEED_CONFIGS}" DEPENDS = "\ task-boot \ ${DISTRO_SSH_DAEMON} \ - ${DISTRO_PACKAGE_MANAGER} \ ${DISTRO_FEED_CONFIGS} \ ${@base_contains('MACHINE_FEATURES', 'ext2', 'task-base-ext2', '', d)} \ ${@base_contains('MACHINE_FEATURES', 'usbhost', 'task-base-usbhost', '', d)} \ @@ -40,7 +36,6 @@ DEPENDS = "\ IMAGE_INSTALL = "\ task-boot \ ${DISTRO_SSH_DAEMON} \ - ${DISTRO_PACKAGE_MANAGER} \ ${DISTRO_FEED_CONFIGS} \ ${@base_contains('MACHINE_FEATURES', 'ext2', 'task-base-ext2', '', d)} \ ${@base_contains('MACHINE_FEATURES', 'usbhost', 'task-base-usbhost', '', d)} \ |