From 2d1f700ad098c942834524891ccc90e3a391a09f Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Thu, 14 May 2015 14:31:10 +0200 Subject: 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. Signed-off-by: Marek Vasut Cc: Richard Purdie Cc: Koen Kooi Cc: Paul Eggleton Cc: Ross Burton Cc: Bruce Ashfield Signed-off-by: Richard Purdie --- meta/classes/kernel-uboot.bbclass | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 meta/classes/kernel-uboot.bbclass (limited to 'meta/classes/kernel-uboot.bbclass') 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 @@ +uboot_prep_kimage() { + if test -e arch/${ARCH}/boot/compressed/vmlinux ; then + vmlinux_path="arch/${ARCH}/boot/compressed/vmlinux" + linux_suffix="" + linux_comp="none" + else + vmlinux_path="vmlinux" + linux_suffix=".gz" + linux_comp="gzip" + fi + + ${OBJCOPY} -O binary -R .note -R .comment -S "${vmlinux_path}" linux.bin + + if [ "${linux_comp}" != "none" ] ; then + rm -f linux.bin + gzip -9 linux.bin + mv -f "linux.bin${linux_suffix}" linux.bin + fi + + echo "${linux_comp}" +} -- cgit v1.2.3