diff options
| author | Rob Purchase <shotofadds@rockbox.org> | 2008-10-12 21:14:08 +0000 |
|---|---|---|
| committer | Rob Purchase <shotofadds@rockbox.org> | 2008-10-12 21:14:08 +0000 |
| commit | 142ac2a35af99ddd80636b8973c5ee082550c215 (patch) | |
| tree | cd062436a0a7ca55f5439a8b2550c1bca970380f | |
| parent | 6bbe66afa03c6c6728bfc90d340ddf391ef94fbc (diff) | |
| download | rockbox-142ac2a35af99ddd80636b8973c5ee082550c215.zip rockbox-142ac2a35af99ddd80636b8973c5ee082550c215.tar.gz rockbox-142ac2a35af99ddd80636b8973c5ee082550c215.tar.bz2 rockbox-142ac2a35af99ddd80636b8973c5ee082550c215.tar.xz | |
Fix a couple of factual inaccuracies in the M200 build.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18790 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config-m200.h | 15 | ||||
| -rwxr-xr-x | tools/configure | 2 |
2 files changed, 5 insertions, 12 deletions
diff --git a/firmware/export/config-m200.h b/firmware/export/config-m200.h index eeac509..a362b7e 100644 --- a/firmware/export/config-m200.h +++ b/firmware/export/config-m200.h @@ -90,8 +90,8 @@ #ifndef SIMULATOR -/* Define this if you have a TCC773L */ -#define CONFIG_CPU TCC773L +/* Define this if you have a TCC770 */ +#define CONFIG_CPU TCC770 /* Define this if you have ATA power-off control */ #define HAVE_ATA_POWER_OFF @@ -99,18 +99,11 @@ /* Define this to the CPU frequency */ #define CPU_FREQ 120000000 -/* Offset ( in the firmware file's header ) to the file length */ -#define FIRMWARE_OFFSET_FILE_LENGTH 0 - /* Offset ( in the firmware file's header ) to the file CRC */ -#define FIRMWARE_OFFSET_FILE_CRC 4 +#define FIRMWARE_OFFSET_FILE_CRC 0 /* Offset ( in the firmware file's header ) to the real data */ -#define FIRMWARE_OFFSET_FILE_DATA 6 - -/* The start address index for ROM builds */ -/* #define ROM_START 0x11010 for behind original Archos */ -#define ROM_START 0x7010 /* for behind BootBox */ +#define FIRMWARE_OFFSET_FILE_DATA 8 /* Software controlled LED */ #define CONFIG_LED LED_VIRTUAL diff --git a/tools/configure b/tools/configure index f231d09..c34ecec 100755 --- a/tools/configure +++ b/tools/configure @@ -1635,7 +1635,7 @@ fi target_id=48 modelname="m200" target="-DSANSA_M200" - memory=2 # always + memory=1 # always arm946cc tool="$rootdir/tools/scramble -add=m200" boottool="$rootdir/tools/scramble -tcc=crc" |