summaryrefslogtreecommitdiff
path: root/utils/imxtools/sbtools/Makefile
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2012-11-26 23:54:44 +0100
committerAmaury Pouly <amaury.pouly@gmail.com>2012-11-26 23:58:30 +0100
commit4e95b72ecbd972b9e1eb162c40a559b94eebac69 (patch)
tree2c71c5b9c07ba5758d6faadb93a7b2c7a252aa7d /utils/imxtools/sbtools/Makefile
parent33b7ade67f67e1358a60e68d5e2c6d8959acd45b (diff)
downloadrockbox-4e95b72ecbd972b9e1eb162c40a559b94eebac69.tar.gz
rockbox-4e95b72ecbd972b9e1eb162c40a559b94eebac69.zip
sbtools: add support for the stmp36xx format
The STMP36xx series also uses .sb files but with a different format. The main differences are the encryption and the lack of sections, making it basically a list of commands: fill, load, call, jump, switch mode, set sdram settings. Currently only the sbtoelf has support for the sb1 and can only dump the list of commands. Actual support for elf creation will come later. Change-Id: I1f2e0230c91ac64efd0e8430e0c5212098c599fd
Diffstat (limited to 'utils/imxtools/sbtools/Makefile')
-rw-r--r--utils/imxtools/sbtools/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/imxtools/sbtools/Makefile b/utils/imxtools/sbtools/Makefile
index 7a09d86d24..7d00e4b8c1 100644
--- a/utils/imxtools/sbtools/Makefile
+++ b/utils/imxtools/sbtools/Makefile
@@ -10,7 +10,7 @@ all: $(BINS)
10%.o: %.c 10%.o: %.c
11 $(CC) $(CFLAGS) -c -o $@ $< 11 $(CC) $(CFLAGS) -c -o $@ $<
12 12
13sbtoelf: sbtoelf.o crc.o crypto.o aes128.o sha1.o elf.o misc.o sb.o 13sbtoelf: sbtoelf.o crc.o crypto.o aes128.o sha1.o xorcrypt.o elf.o misc.o sb.o sb1.o
14 $(LD) -o $@ $^ $(LDFLAGS) 14 $(LD) -o $@ $^ $(LDFLAGS)
15 15
16elftosb: elftosb.o crc.o crypto.o aes128.o sha1.o elf.o dbparser.o misc.o sb.o 16elftosb: elftosb.o crc.o crypto.o aes128.o sha1.o elf.o dbparser.o misc.o sb.o