[oe-commits] [openembedded-core] 04/04: kernel-fitimage: support RISC-V

git at git.openembedded.org git at git.openembedded.org
Fri Apr 12 09:01:56 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch warrior-next
in repository openembedded-core.

commit bbbbeee55f33da4f5ae4b95d2baa422f063b4825
Author: Michael Scott <mike at foundries.io>
AuthorDate: Thu Apr 11 22:46:25 2019 -0700

    kernel-fitimage: support RISC-V
    
    Support RISC-V kernel image, using the "Image" target.
    
    This change allows RISC-V support for fitImage via the following
    flow: OpenSBI -> u-boot (as payload) -> Linux kernel (as fitImage
    with ramdisk and dtb).
    
    This was tested using QEMU RISC-V 64-bit.
    
    Signed-off-by: Michael Scott <mike at foundries.io>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/kernel-fitimage.bbclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass
index 2517d75..2820ff9 100644
--- a/meta/classes/kernel-fitimage.bbclass
+++ b/meta/classes/kernel-fitimage.bbclass
@@ -10,6 +10,8 @@ python __anonymous () {
         uarch = d.getVar("UBOOT_ARCH")
         if uarch == "arm64":
             replacementtype = "Image"
+        elif uarch == "riscv":
+            replacementtype = "Image"
         elif uarch == "mips":
             replacementtype = "vmlinuz.bin"
         elif uarch == "x86":

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list