On Wed, Nov 20, 2019 at 10:36 PM Marek Vasut <[email protected]> wrote: > > The NAND devices with 128 kiB erase blocks require extra 64 kiB padding > between each SPL image. Generate U-Boot image with such a padding using > this new target. > > Signed-off-by: Marek Vasut <[email protected]> > Cc: Chin Liang See <[email protected]> > Cc: Dalon Westergreen <[email protected]> > Cc: Dinh Nguyen <[email protected]> > Cc: Ley Foon Tan <[email protected]> > Cc: Simon Goldschmidt <[email protected]> > Cc: Tien Fong Chee <[email protected]> > --- > Makefile | 11 +++++++++++ > 1 file changed, 11 insertions(+) > > diff --git a/Makefile b/Makefile > index 7485bc2594..d3038cf665 100644 > --- a/Makefile > +++ b/Makefile > @@ -1476,6 +1476,17 @@ cmd_socboot = cat spl/u-boot-spl.sfp > spl/u-boot-spl.sfp \ > u-boot.img > $@ || rm -f $@ > u-boot-with-spl.sfp: spl/u-boot-spl.sfp u-boot.img FORCE > $(call if_changed,socboot) > + > +quiet_cmd_socnandboot = SOCNANDBOOT $@ > +cmd_socnandboot = dd if=/dev/zero of=spl/u-boot-spl.pad bs=64 count=1024 ; \
There's already a file 'spl/u-boot-spl-pad.bin' which is used for reserving bss between spl binary and dtb. Could we use a more speaking name here? Regards, Simon > + cat spl/u-boot-spl.sfp spl/u-boot-spl.pad \ > + spl/u-boot-spl.sfp spl/u-boot-spl.pad \ > + spl/u-boot-spl.sfp spl/u-boot-spl.pad \ > + spl/u-boot-spl.sfp spl/u-boot-spl.pad \ > + u-boot.img > $@ || rm -f $@ spl/u-boot-spl.pad > +u-boot-with-nand-spl.sfp: spl/u-boot-spl.sfp u-boot.img FORCE > + $(call if_changed,socnandboot) > + > endif > > ifeq ($(CONFIG_MPC85xx)$(CONFIG_OF_SEPARATE),yy) > -- > 2.24.0.432.g9d3f5f5b63 > _______________________________________________ U-Boot mailing list [email protected] https://lists.denx.de/listinfo/u-boot

