Message ID | 5314C7DD.4090406@ti.com |
---|---|
State | New |
Headers | show |
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 03/03/2014 01:20 PM, Murali Karicheri wrote: > > diff --git a/Makefile b/Makefile > index 47a03e3..ea2a387 100644 > --- a/Makefile > +++ b/Makefile > @@ -491,6 +491,23 @@ $(obj)u-boot.spr: $(obj)u-boot.img > $(obj)spl/u-boot-spl.bin > --pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff $@ > cat $(obj)u-boot.img >> $@ > > +$(obj)u-boot-spi.gph: $(obj)u-boot.img $(obj)spl/u-boot-spl.bin > + $(obj)tools/mkimage -A $(ARCH) -T gpimage -C none \ > + -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) \ > + -n SPL -d $(obj)spl/u-boot-spl.bin $(obj)spl/u-boot-spl.gph > + $(OBJCOPY) ${OBJCFLAGS} -I binary \ > + --pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0 -O binary \ > + $(obj)spl/u-boot-spl.gph $(obj)spl/u-boot-spl-pad.gph > + cat $(obj)spl/u-boot-spl-pad.gph $(obj)u-boot.img > $@ > + > +$(obj)u-boot-nand.gph: $(obj)u-boot.bin > + $(obj)tools/mkimage -A $(ARCH) -T gpimage -C none \ > + -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) \ > + -n U-Boot -d $(obj)u-boot.bin $(obj)gph-u-boot.bin > + @dd if=/dev/zero of=$(obj)zero.bin bs=8 count=1 2>/dev/null > + @cat $(obj)gph-u-boot.bin $(obj)zero.bin > $@ > + @rm $(obj)zero.bin > >> First, these need re-writing for Kbuild. Second, we don't ever use >> u-boot-nand.gph or talk about it in the README, do we? > Tom, > > Will remove remove u-boot-nand.gph for time being as we didn't verify > nand boot in this > series. What you mean by re-writing for kbuild. The u-boot-spi.gph > target is added similar to > existing u-boot-spr (see just above this target). Could you provide an > example? Yes, look at how u-boot.spr looks on master now. Things have changed a good bit and this needs updating again. - -- Tom -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJTFMoGAAoJENk4IS6UOR1WlpIP/Rkbl9ejGjmlvUcFQ6klnrNH ztie7jDThbxqlnGJJJVCALCf5sWgI/W5X/IaiFtBJsAF2JE0h8HaCQjvjBU2r0vq HSXMzBMfXXURrgbtuU8OcrkG8CUN93rQj06Q3hDNSej2cIQAuZt685G3svQ//Jnw rvhg3rnnXFK/ypEE20ZT1bETlH76e/RAZXd/V897j53j4rnWzonQisF0P1C9Nguu DRdH0DPQ4VaDfQ8MHAG9M0L79mSFFaDS6o9fkipEiPJjwYjoI5CNbzcd9jszcWhw fQtkTl1B7tiD7Aqd48apytOvjO8RSrGyJ1ntdOCvnqlemvACMMO/RoWqJtOnZLD/ 6PhPIN4ewYPoWop5Hf8fgSAvaYEQW7s5TnB6KKnk3MTixCtzdFOywoAqAhxZAV6p eOglTRQ81rR702fHJBT7uNQrUGIjc6DebjtcJkEZmWNoT8TZAvpXXIqLu/3PeFna U/Ppfq2C4SUyRXf365aODGicKhkEuRi1XseluytvHFHL3/sJZgrkRF32+/g3JBv/ haP/MVw4nGSN4dgsb/UQCBxoLHe6wWfXPktYvHN1ne1QUaXzLbHdi7TM4tejfjjS ULjMWpaaOuPPgrkQsleAL20Ctx6oY/aArnXf1qjj+CJ0cU1hnYWOxXoOEDVVjYI+ 5f9FAQtYTSgSV1uvhX9u =k4+m -----END PGP SIGNATURE-----
diff --git a/Makefile b/Makefile index 47a03e3..ea2a387 100644 --- a/Makefile +++ b/Makefile @@ -491,6 +491,23 @@ $(obj)u-boot.spr: $(obj)u-boot.img $(obj)spl/u-boot-spl.bin --pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff $@ cat $(obj)u-boot.img >> $@ +$(obj)u-boot-spi.gph: $(obj)u-boot.img $(obj)spl/u-boot-spl.bin + $(obj)tools/mkimage -A $(ARCH) -T gpimage -C none \ + -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) \ + -n SPL -d $(obj)spl/u-boot-spl.bin $(obj)spl/u-boot-spl.gph + $(OBJCOPY) ${OBJCFLAGS} -I binary \ + --pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0 -O binary \ + $(obj)spl/u-boot-spl.gph $(obj)spl/u-boot-spl-pad.gph + cat $(obj)spl/u-boot-spl-pad.gph $(obj)u-boot.img > $@ + +$(obj)u-boot-nand.gph: $(obj)u-boot.bin + $(obj)tools/mkimage -A $(ARCH) -T gpimage -C none \ + -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) \ + -n U-Boot -d $(obj)u-boot.bin $(obj)gph-u-boot.bin + @dd if=/dev/zero of=$(obj)zero.bin bs=8 count=1 2>/dev/null + @cat $(obj)gph-u-boot.bin $(obj)zero.bin > $@ + @rm $(obj)zero.bin > First, these need re-writing for Kbuild. Second, we don't ever use > u-boot-nand.gph or talk about it in the README, do we? Tom,