diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-02-26 18:21:02 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-28 14:01:12 +0000 |
commit | 8d13b43f16ea289afc93f14d5dfbff5d81520a01 (patch) | |
tree | 216f5a8cf0128ddbda161050654562a84f06d854 /meta/recipes-core | |
parent | d2f5f2b0b129a654ae8b3ff3f048b582c93c385b (diff) | |
download | poky-8d13b43f16ea289afc93f14d5dfbff5d81520a01.tar.gz |
core-image-minimal-initramfs: Use PACKAGE_INSTALL instead of IMAGE_INSTALL
PACKAGE_INSTALL is set from the IMAGE_INSTALL variable with some additional
items, since PACKAGE_INSTALL is intended to be more an internal variable, use
it instead of the IMAGE_INSTALL which is recommeded for installing additional
packages. This will allow the initramfs recipe to use a fixed set of packages
and not be affected by IMAGE_INSTALL.
[YOCTO #5791]
(From OE-Core rev: abf40223d1412ee8f9d2b5269fad7c6aca6c2570)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/images/core-image-minimal-initramfs.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/images/core-image-minimal-initramfs.bb b/meta/recipes-core/images/core-image-minimal-initramfs.bb index 46a9dc41c2..1f0fa9580b 100644 --- a/meta/recipes-core/images/core-image-minimal-initramfs.bb +++ b/meta/recipes-core/images/core-image-minimal-initramfs.bb | |||
@@ -3,7 +3,7 @@ DESCRIPTION = "Small image capable of booting a device. The kernel includes \ | |||
3 | the Minimal RAM-based Initial Root Filesystem (initramfs), which finds the \ | 3 | the Minimal RAM-based Initial Root Filesystem (initramfs), which finds the \ |
4 | first 'init' program more efficiently." | 4 | first 'init' program more efficiently." |
5 | 5 | ||
6 | IMAGE_INSTALL = "initramfs-live-boot initramfs-live-install initramfs-live-install-efi busybox udev base-passwd" | 6 | PACKAGE_INSTALL = "initramfs-live-boot initramfs-live-install initramfs-live-install-efi busybox udev base-passwd ${ROOTFS_BOOTSTRAP_INSTALL}" |
7 | 7 | ||
8 | # Do not pollute the initrd image with rootfs features | 8 | # Do not pollute the initrd image with rootfs features |
9 | IMAGE_FEATURES = "" | 9 | IMAGE_FEATURES = "" |