diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2006-08-03 20:21:29 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2006-08-03 20:21:29 +0000 |
| commit | 4d75350e75e14f93ee378da701170ee29a26aba9 (patch) | |
| tree | 23166dfd8fec6f7c0223c0cac66bf60253000bed | |
| parent | 86bff1cf56d144910f3e2bd84a37ec99c8dca512 (diff) | |
| download | rockbox-4d75350e75e14f93ee378da701170ee29a26aba9.zip rockbox-4d75350e75e14f93ee378da701170ee29a26aba9.tar.gz rockbox-4d75350e75e14f93ee378da701170ee29a26aba9.tar.bz2 rockbox-4d75350e75e14f93ee378da701170ee29a26aba9.tar.xz | |
Barry Wardell's H10 adjustments
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10448 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config-h10.h | 2 | ||||
| -rw-r--r-- | firmware/export/config.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/firmware/export/config-h10.h b/firmware/export/config-h10.h index 470ff6b..5a410f6 100644 --- a/firmware/export/config-h10.h +++ b/firmware/export/config-h10.h @@ -2,6 +2,8 @@ * This config file is for the iriver H10 */ +#define TARGET_TREE /* this target is using the target tree system */ + /* For Rolo and boot loader */ #define MODEL_NUMBER 11 diff --git a/firmware/export/config.h b/firmware/export/config.h index 408e9a2..3bd3ee6 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -114,6 +114,7 @@ #define BL_IRIVER_IFP7XX 9 /* IRiver GPIO */ #define BL_IPODMINI 10 /* Apple iPod Mini */ #define BL_GIGABEAT 11 /* Toshiba Gigabeat */ +#define BL_IRIVER_H10 12 /* iriver H10 */ /* CONFIG_I2C */ #define I2C_PLAYREC 0 /* Archos Player/Recorder style */ @@ -138,6 +139,7 @@ #define RTC_PCF50605 2 /* iPod 3G, 4G & Mini */ #define RTC_PCF50606 3 /* iriver H300 */ #define RTC_S3C2440 4 +#define RTC_E8564 5 /* iriver H10 */ /* USB On-the-go */ #define USBOTG_ISP1362 1362 @@ -241,7 +243,7 @@ #if !defined(SIMULATOR) && /* Not for simulators */ \ (((CONFIG_CPU == SH7034) && !defined(PLUGIN)) || /* SH1 archos: core only */ \ defined(CPU_COLDFIRE) || /* Coldfire: core, plugins, codecs */ \ - (CONFIG_CPU == PP5020) || /* iPod: core, plugins, codecs */ \ + (CONFIG_CPU == PP5020) || /* iPod and H10: core, plugins, codecs */ \ (CONFIG_CPU == PP5002) || /* iPod: core, plugins, codecs */ \ (CONFIG_CPU == TCC730)) /* CalmRISC16: core, (plugins, codecs) */ #define ICODE_ATTR __attribute__ ((section(".icode"))) |