aboutsummaryrefslogtreecommitdiffstats
path: root/classes/kernel.bbclass
diff options
context:
space:
mode:
authorTom Walsh <tom@openhardware.net>2006-09-26 08:56:28 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2006-09-26 08:56:28 +0000
commit2f1de0170fca203b0715f51689b38080314b8a78 (patch)
tree2a0e843dfa1965858543e91bc0fed4d58d04f761 /classes/kernel.bbclass
parent38497be873296b8ff53f0ea46898b1fd6ba0b0f9 (diff)
downloadopenembedded-2f1de0170fca203b0715f51689b38080314b8a78.tar.gz
kernel.bbclass: do not override machine/*.conf setting of KERNEL_IMAGETYPE to allow image other than zImage to be produced - close #1435
Diffstat (limited to 'classes/kernel.bbclass')
-rw-r--r--classes/kernel.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass
index f5938a798f..94e02925d7 100644
--- a/classes/kernel.bbclass
+++ b/classes/kernel.bbclass
@@ -10,7 +10,7 @@ PACKAGES_DYNAMIC += "kernel-image-*"
export OS = "${TARGET_OS}"
export CROSS_COMPILE = "${TARGET_PREFIX}"
-KERNEL_IMAGETYPE = "zImage"
+KERNEL_IMAGETYPE ?= "zImage"
KERNEL_PRIORITY = "${@bb.data.getVar('PV',d,1).split('-')[0].split('.')[-1]}"