On Tue, 2017-10-17 at 18:54 +0200, Thomas Perrot wrote: > - Bad image type replacement for aarch64 > - Fix DTB path in fitimage.its > - Ignore fitImage type during the packaging of the initramfs > > Signed-off-by: Thomas Perrot <[email protected]> > --- > meta/classes/kernel-fitimage.bbclass | 6 +++++- > meta/classes/kernel.bbclass | 4 +++- > 2 files changed, 8 insertions(+), 2 deletions(-) > > diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel- > fitimage.bbclass > index 2630b47316..abbc309b09 100644 > --- a/meta/classes/kernel-fitimage.bbclass > +++ b/meta/classes/kernel-fitimage.bbclass > @@ -7,8 +7,11 @@ python __anonymous () { > depends = "%s u-boot-mkimage-native dtc-native" % depends > d.setVar("DEPENDS", depends) > > - if d.getVar("UBOOT_ARCH") == "x86": > + uarch = d.getVar("UBOOT_ARCH") > + if uarch == "x86": > replacementtype = "bzImage" > + elif uarch == "arm64": > + replacementtype = "Image"
I can't see this in master - it should go there first. Cheers, Andre' -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
