summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel-uboot.bbclass
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2015-05-14 14:31:10 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-26 10:57:51 +0100
commitbb68c7c9f05a6c2f0a8e724caefb843870d4100c (patch)
tree0265f77415990715358b5185217bcd8efeaaec0e /meta/classes/kernel-uboot.bbclass
parent7f131b88631223df342148e54811a2b125b73819 (diff)
downloadpoky-bb68c7c9f05a6c2f0a8e724caefb843870d4100c.tar.gz
kernel: Separate out uboot_prep_kimage
Separate the function which prepares the kernel for packing into uImage into separate class, so this function can be reused by the fitImage class. (From OE-Core rev: 2d1f700ad098c942834524891ccc90e3a391a09f) Signed-off-by: Marek Vasut <marex@denx.de> Cc: Richard Purdie <richard.purdie@linuxfoundation.org> Cc: Koen Kooi <koen@dominion.thruhere.net> Cc: Paul Eggleton <paul.eggleton@linux.intel.com> Cc: Ross Burton <ross.burton@intel.com> Cc: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel-uboot.bbclass')
-rw-r--r--meta/classes/kernel-uboot.bbclass21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/classes/kernel-uboot.bbclass b/meta/classes/kernel-uboot.bbclass
new file mode 100644
index 0000000000..8ab30b8649
--- /dev/null
+++ b/meta/classes/kernel-uboot.bbclass
@@ -0,0 +1,21 @@
1uboot_prep_kimage() {
2 if test -e arch/${ARCH}/boot/compressed/vmlinux ; then
3 vmlinux_path="arch/${ARCH}/boot/compressed/vmlinux"
4 linux_suffix=""
5 linux_comp="none"
6 else
7 vmlinux_path="vmlinux"
8 linux_suffix=".gz"
9 linux_comp="gzip"
10 fi
11
12 ${OBJCOPY} -O binary -R .note -R .comment -S "${vmlinux_path}" linux.bin
13
14 if [ "${linux_comp}" != "none" ] ; then
15 rm -f linux.bin
16 gzip -9 linux.bin
17 mv -f "linux.bin${linux_suffix}" linux.bin
18 fi
19
20 echo "${linux_comp}"
21}