diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2012-11-26 23:54:44 +0100 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2012-11-26 23:58:30 +0100 |
| commit | 4e95b72ecbd972b9e1eb162c40a559b94eebac69 (patch) | |
| tree | 2c71c5b9c07ba5758d6faadb93a7b2c7a252aa7d /utils/imxtools/sbtools/Makefile | |
| parent | 33b7ade67f67e1358a60e68d5e2c6d8959acd45b (diff) | |
| download | rockbox-4e95b72ecbd972b9e1eb162c40a559b94eebac69.zip rockbox-4e95b72ecbd972b9e1eb162c40a559b94eebac69.tar.gz rockbox-4e95b72ecbd972b9e1eb162c40a559b94eebac69.tar.bz2 rockbox-4e95b72ecbd972b9e1eb162c40a559b94eebac69.tar.xz | |
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/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/imxtools/sbtools/Makefile b/utils/imxtools/sbtools/Makefile index 7a09d86..7d00e4b 100644 --- a/utils/imxtools/sbtools/Makefile +++ b/utils/imxtools/sbtools/Makefile @@ -10,7 +10,7 @@ all: $(BINS) %.o: %.c $(CC) $(CFLAGS) -c -o $@ $< -sbtoelf: sbtoelf.o crc.o crypto.o aes128.o sha1.o elf.o misc.o sb.o +sbtoelf: sbtoelf.o crc.o crypto.o aes128.o sha1.o xorcrypt.o elf.o misc.o sb.o sb1.o $(LD) -o $@ $^ $(LDFLAGS) elftosb: elftosb.o crc.o crypto.o aes128.o sha1.o elf.o dbparser.o misc.o sb.o |