forked from len0rd/rockbox
Initial work on a port to the Logik DAX 1GB MP3/DAB player. The bootloader build compiles and runs (but only displays some debugging info), and the LCD and ADC drivers are working. Two different bootloader builds are possible: 1) The default build is just a test application for uploading to the device via tcctool; 2) Adding -DTCCBOOT to EXTRA_DEFINES in the build directory Makefile will compile the bootloader so that it can be appended to the end of the original firmware and installed on the device, dual-booting. This commit also includes some work by Hein-Pieter van Braam on a port to the iAudio 7, but that doesn't build yet. A large part of these ports will be generic to all TCC77x devices - see the TelechipsInfo wiki page for some other devices with this CPU. NOTE: Compiling these builds requires an arm-elf-gcc with armv5 support - the current version of rockboxdev.sh compiles such a gcc.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15339 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d3e101bd11
commit
28f6ae49ec
24 changed files with 1594 additions and 7 deletions
|
|
@ -11,7 +11,7 @@ LDFLAGS := -g
|
|||
|
||||
CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf \
|
||||
generate_rocklatin mkboot ipod_fw codepages uclpack mi4 gigabeat database \
|
||||
lngdump telechips gigabeats
|
||||
lngdump telechips gigabeats mktccboot
|
||||
|
||||
all:
|
||||
@echo "Run make in your build directory!"
|
||||
|
|
@ -38,6 +38,9 @@ rdf2binary: rdf2binary.c
|
|||
mkboot: mkboot.c
|
||||
$(SILENT)$(CC) -g $+ -o $@
|
||||
|
||||
mktccboot: mktccboot.c telechips.o
|
||||
$(SILENT)$(CC) -g $+ -o $@
|
||||
|
||||
lngdump: lngdump.c
|
||||
$(SILENT)$(CC) -g $+ -o $@
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue