[oe-commits] [openembedded-core] 01/34: kernel: Permit overriding of KERNEL_IMAGETYPE_FOR_MAKE

git at git.openembedded.org git at git.openembedded.org
Wed May 9 20:10:58 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 38abd26fe7de321e0f1fc4895f754f34dee90f6c
Author: Mike Crowe <mac at mcrowe.com>
AuthorDate: Wed May 2 17:02:34 2018 +0100

    kernel: Permit overriding of KERNEL_IMAGETYPE_FOR_MAKE
    
    Commit a1690131691507bbf5853540229b3ad775b836bf removed the ability of
    recipes to set KERNEL_IMAGETYPE_FOR_MAKE. Fix that by letting recipes
    continue to set their own KERNEL_IMAGETYPE_FOR_MAKE if they so wish.
    They may have been doing so for a while, and don't want to have their
    carefully-selected value trampled on by kernel.bbclass.
    
    This may be required if the recipe itself wants to build one type of
    kernel, but post-process it into a different type, rather like the
    vmlinux->vmlinux.gz support provided by kernel.bbclass.
    
    Signed-off-by: Mike Crowe <mac at mcrowe.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/classes/kernel.bbclass | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 78d6c30..6595a04 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -69,11 +69,12 @@ python __anonymous () {
         types = (alttype + ' ' + types).strip()
     d.setVar('KERNEL_IMAGETYPES', types)
 
-    # some commonly used kernel images aren't generated by the kernel build system, such as vmlinux.gz
-    # typeformake lists only valid kernel make targets, and post processing can be done after the kernel
-    # is built (such as using gzip to compress vmlinux)
-    typeformake = types.replace('vmlinux.gz', 'vmlinux')
-    d.setVar('KERNEL_IMAGETYPE_FOR_MAKE', typeformake)
+    if not d.getVar('KERNEL_IMAGETYPE_FOR_MAKE'):
+        # some commonly used kernel images aren't generated by the kernel build system, such as vmlinux.gz
+        # typeformake lists only valid kernel make targets, and post processing can be done after the kernel
+        # is built (such as using gzip to compress vmlinux)
+        typeformake = types.replace('vmlinux.gz', 'vmlinux')
+        d.setVar('KERNEL_IMAGETYPE_FOR_MAKE', typeformake)
 
     for type in types.split():
         typelower = type.lower()

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list