summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel-uimage.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/kernel-uimage.bbclass')
-rw-r--r--meta/classes/kernel-uimage.bbclass24
1 files changed, 2 insertions, 22 deletions
diff --git a/meta/classes/kernel-uimage.bbclass b/meta/classes/kernel-uimage.bbclass
index 8a3efc6835..ce8f96f65b 100644
--- a/meta/classes/kernel-uimage.bbclass
+++ b/meta/classes/kernel-uimage.bbclass
@@ -1,3 +1,5 @@
1inherit kernel-uboot
2
1python __anonymous () { 3python __anonymous () {
2 kerneltype = d.getVar('KERNEL_IMAGETYPE', True) 4 kerneltype = d.getVar('KERNEL_IMAGETYPE', True)
3 if kerneltype == 'uImage': 5 if kerneltype == 'uImage':
@@ -6,28 +8,6 @@ python __anonymous () {
6 d.setVar("DEPENDS", depends) 8 d.setVar("DEPENDS", depends)
7} 9}
8 10
9uboot_prep_kimage() {
10 if test -e arch/${ARCH}/boot/compressed/vmlinux ; then
11 vmlinux_path="arch/${ARCH}/boot/compressed/vmlinux"
12 linux_suffix=""
13 linux_comp="none"
14 else
15 vmlinux_path="vmlinux"
16 linux_suffix=".gz"
17 linux_comp="gzip"
18 fi
19
20 ${OBJCOPY} -O binary -R .note -R .comment -S "${vmlinux_path}" linux.bin
21
22 if [ "${linux_comp}" != "none" ] ; then
23 rm -f linux.bin
24 gzip -9 linux.bin
25 mv -f "linux.bin${linux_suffix}" linux.bin
26 fi
27
28 echo "${linux_comp}"
29}
30
31do_uboot_mkimage() { 11do_uboot_mkimage() {
32 if test "x${KERNEL_IMAGETYPE}" = "xuImage" ; then 12 if test "x${KERNEL_IMAGETYPE}" = "xuImage" ; then
33 if test "x${KEEPUIMAGE}" != "xyes" ; then 13 if test "x${KEEPUIMAGE}" != "xyes" ; then