|
Last change
on this file since 13 was
12,
checked in by guillaume, 17 years ago
|
|
Publication tt-loader v0.2
|
|
File size:
993 bytes
|
| Line | |
|---|
| 1 | CC = gcc |
|---|
| 2 | INCLUDES = |
|---|
| 3 | CFLAGS = -Wall -O2 -g $(INCLUDES) |
|---|
| 4 | LIBS = -lusb |
|---|
| 5 | LDFLAGS = -g $(LIBS) |
|---|
| 6 | APP_NAME = tt-loader |
|---|
| 7 | APP_VERSION = 0.2 |
|---|
| 8 | |
|---|
| 9 | # Adapt this to your system |
|---|
| 10 | CROSS ?= armv5tel-redhat-linux-gnueabi |
|---|
| 11 | DIS_ADDR ?= 0 |
|---|
| 12 | |
|---|
| 13 | # You can overide the name of the extracted MTD partition to get the kernel |
|---|
| 14 | KERNEL_MTD ?= mtd4 |
|---|
| 15 | |
|---|
| 16 | OBJS = main.o crc32.o |
|---|
| 17 | |
|---|
| 18 | all: $(APP_NAME) |
|---|
| 19 | |
|---|
| 20 | $(APP_NAME): $(OBJS) |
|---|
| 21 | $(CC) $(LDFLAGS) -o $@ $^ |
|---|
| 22 | |
|---|
| 23 | clean: |
|---|
| 24 | rm -rf $(APP_NAME) *.o *~ |
|---|
| 25 | $(MAKE) -C 2nd clean |
|---|
| 26 | |
|---|
| 27 | 2nd: |
|---|
| 28 | $(MAKE) -C 2nd all |
|---|
| 29 | |
|---|
| 30 | pkg: 2nd |
|---|
| 31 | rm -f $(APP_NAME)-$(APP_VERSION).tar.gz |
|---|
| 32 | tar czf $(APP_NAME)-$(APP_VERSION).tar.gz Makefile *.c COPYING README commands.txt \ |
|---|
| 33 | tt-loader.sh 2nd/arm.ld 2nd/*.h 2nd/*.c 2nd/Makefile 2nd/start.S 2nd/2nd.bin |
|---|
| 34 | |
|---|
| 35 | %.dis: %.bin |
|---|
| 36 | rm -f $@ |
|---|
| 37 | $(CROSS)-objcopy -I binary -O elf32-littlearm -B arm $< $(@F).elf |
|---|
| 38 | $(CROSS)-objdump -D --adjust-vma=$(DIS_ADDR) $(@F).elf > $@ |
|---|
| 39 | rm -f $(@F).elf |
|---|
| 40 | |
|---|
| 41 | # Extract kernel from mtd4 nand partition extraction |
|---|
| 42 | kernel.bin: $(KERNEL_MTD) |
|---|
| 43 | ./kernel-extract.sh $^ $@ |
|---|
| 44 | |
|---|
| 45 | .PHONY: all clean 2nd |
|---|
Note: See
TracBrowser
for help on using the repository browser.