[oe-commits] Roman I Khimov : image.bbclass: IMAGE_VARS->IMAGE_BOOT, make overridable

GIT User account git at amethyst.openembedded.net
Tue Apr 21 20:51:52 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 5773ed1828d801d9ad9187bc0b217b3da8842758
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=5773ed1828d801d9ad9187bc0b217b3da8842758

Author: Roman I Khimov <khimov at altell.ru>
Date:   Thu Apr 16 01:47:01 2009 +0000

image.bbclass: IMAGE_VARS->IMAGE_BOOT, make overridable

IMAGE_VARS usage forces images to have init, dev management, login
management and other stuff. In cases where you don't need any of those
(like initramfs images or other special-purpose images) you need to
override 4 variables in order to get clean image that only installs
things from IMAGE_INSTALL.

So, this changes IMAGE_VARS to more meaningful IMAGE_BOOT and makes it
possible to build images without boot components with single
IMAGE_BOOT="".
Acked-by: Otavio Salvador <otavio at ossystems.com.br>

Signed-off-by: Koen Kooi <koen at openembedded.org>

---

 classes/image.bbclass |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/classes/image.bbclass b/classes/image.bbclass
index 3a0bc32..cbbbbd1 100644
--- a/classes/image.bbclass
+++ b/classes/image.bbclass
@@ -17,16 +17,16 @@ IMAGE_INITSCRIPTS ?= "initscripts"
 #
 IMAGE_LOGIN_MANAGER ?= "tinylogin"
 
-IMAGE_VARS = "${IMAGE_INITSCRIPTS} \
+IMAGE_BOOT ?= "${IMAGE_INITSCRIPTS} \
 ${IMAGE_DEV_MANAGER} \
 ${IMAGE_INIT_MANAGER} \
 ${IMAGE_LOGIN_MANAGER} "
 
-RDEPENDS += "${IMAGE_INSTALL} ${IMAGE_VARS}"
+RDEPENDS += "${IMAGE_INSTALL} ${IMAGE_BOOT}"
 
 # "export IMAGE_BASENAME" not supported at this time
 IMAGE_BASENAME[export] = "1"
-export PACKAGE_INSTALL ?= "${IMAGE_INSTALL} ${IMAGE_VARS}"
+export PACKAGE_INSTALL ?= "${IMAGE_INSTALL} ${IMAGE_BOOT}"
 
 # We need to recursively follow RDEPENDS and RRECOMMENDS for images
 do_rootfs[recrdeptask] += "do_deploy do_populate_staging"





More information about the Openembedded-commits mailing list