diff options
author | Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> | 2008-09-07 17:10:27 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-09-09 12:07:39 +0200 |
commit | 0817d688f307ee2c0598e79175c94a40ce90337b (patch) | |
tree | 7709d3fa616b357ae4e190c48fda7bc344047e6b | |
parent | 1dc306931ca5ce87f13916fa7165b052d3aa714f (diff) | |
download | u-boot-imx-0817d688f307ee2c0598e79175c94a40ce90337b.zip u-boot-imx-0817d688f307ee2c0598e79175c94a40ce90337b.tar.gz u-boot-imx-0817d688f307ee2c0598e79175c94a40ce90337b.tar.bz2 |
Remove gap fill in srec object v2
SREC files do not need gap fill: The load address is specified in the
file. On the other hand, it can't be avoided in a .bin object. It has
no information about memory location.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -295,7 +295,7 @@ $(obj)u-boot.hex: $(obj)u-boot $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ $(obj)u-boot.srec: $(obj)u-boot - $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ + $(OBJCOPY) -O srec $< $@ $(obj)u-boot.bin: $(obj)u-boot $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ |