[OE-core] [PATCH] kernel-uimage.bbclass: Build uImage with Initramfs

2018-03-08 Thread Vineeth Chowdary Karumanchi
This patch adds support for building uImage with Initramfs. Signed-off-by: Vineeth Chowdary Karumanchi <vineethchowz.chowd...@xilinx.com> --- meta/classes/kernel-uimage.bbclass | 18 +- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/meta/classes/

[OE-core] [PATCH v2] kernel-fitimage.bbclass: Deploy fitImage without Initramfs

2018-03-07 Thread Vineeth Chowdary Karumanchi
This patch deploys fitImage (linux.bin + dtb ). The use case is to have 2 partioned sd card, with FAT partition having bootloader + fitImage and ext4 partion having rootfs. Signed-off-by: Vineeth Chowdary Karumanchi <vineethchowz.chowd...@xilinx.com> --- v2: Proper signed off --- meta/c

[OE-core] [PATCH] kernel-fitimage.bbclass: Deploy fitImage without Initramfs

2018-03-07 Thread Vineeth Chowdary Karumanchi
This patch deploys fitImage (linux.bin + dtb ). The use case is to have 2 partioned sd card, with FAT partition having bootloader + fitImage and ext4 partion having rootfs. Signen-off-by: Vineeth Chowdary Karumanchi <vineethchowz.chowd...@xilinx.com> --- meta/classes/kernel-fitimage.bbcla

[OE-core] [PATCH] kernel-fitimage.bbclass: Fix 64 bit ENTRYPOINT

2018-02-07 Thread Vineeth Chowdary Karumanchi
64 bit entry point should be passed in 2 literals ( "0x1 0x8000" ).ENTRYPOINT is assigned with first half only and erroring out as 'command not found' for the second half. Adding quotes while assignment fixes the issue. Signed-off-by: Vineeth Chowdary Karumanchi <vinee