From 72a7049526ee107005bd39c7bdd814ed71345829 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Mon, 23 Jul 2012 13:45:30 -0700 Subject: kernel bbclass: Recreate uImage only when KEEPUIMAGE != "yes" The intent of the uImage code in this class includes the following 1) be able to specify custom load addresses without needing to patch the kernel 2) add better information to the uImage description field The current state is a NOP anyway, the kernel will always build a uImage when you tell it to 'make uImage'. weakly Set KEEPUIMAGE to 'yes' in default-distrovars.inc which preserve the current OE-Core behavior. Machines which are being ported from oe.dev and need to regenerate uImage can set this to be empty Signed-off-by: Koen Kooi Signed-off-by: Khem Raj Signed-off-by: Saul Wold --- meta/conf/distro/include/default-distrovars.inc | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/conf/distro/include/default-distrovars.inc') diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc index f7709196cb..ef8232d19c 100644 --- a/meta/conf/distro/include/default-distrovars.inc +++ b/meta/conf/distro/include/default-distrovars.inc @@ -2,6 +2,7 @@ QA_LOGFILE = "${TMPDIR}/qa.log" OEINCLUDELOGS ?= "yes" KERNEL_CONSOLE ?= "ttyS0" +KEEPUIMAGE ??= "yes" PCMCIA_MANAGER ?= "pcmciautils" -- cgit 1.2.3-korg