summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2008-11-20 11:27:31 +0000
committerBjörn Stenberg <bjorn@haxx.se>2008-11-20 11:27:31 +0000
commitc6b3d38a156dd624760a8eb1bb374affd43b4f2a (patch)
tree493eba929e2396d86cf4f077709aa09fe172cd35 /firmware/export
parentf66c30346783a400a029bedcd60ab67c81c34a07 (diff)
downloadrockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.tar.gz
rockbox-c6b3d38a156dd624760a8eb1bb374affd43b4f2a.zip
New makefile solution: A single invocation of 'make' to build the entire tree. Fully controlled dependencies give faster and more correct recompiles.
Many #include lines adjusted to conform to the new standards. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19146 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/config-mrobe500.h3
-rw-r--r--firmware/export/debug.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/firmware/export/config-mrobe500.h b/firmware/export/config-mrobe500.h
index 572d018328..5f89a9667d 100644
--- a/firmware/export/config-mrobe500.h
+++ b/firmware/export/config-mrobe500.h
@@ -147,8 +147,7 @@
147/* Define this if you have a Motorola SCF5249 */ 147/* Define this if you have a Motorola SCF5249 */
148#define CONFIG_CPU DM320 148#define CONFIG_CPU DM320
149 149
150/* Define this if you want to use coldfire's i2c interface */ 150#define CONFIG_I2C I2C_DM320
151//#define CONFIG_I2C I2C_S3C2440
152 151
153/* define this if the hardware can be powered off while charging */ 152/* define this if the hardware can be powered off while charging */
154#define HAVE_POWEROFF_WHILE_CHARGING 153#define HAVE_POWEROFF_WHILE_CHARGING
diff --git a/firmware/export/debug.h b/firmware/export/debug.h
index dd65c3d7be..f9f93fdcd9 100644
--- a/firmware/export/debug.h
+++ b/firmware/export/debug.h
@@ -28,6 +28,7 @@ extern void debugf(const char* fmt,...) ATTRIBUTE_PRINTF(1, 2);
28extern void ldebugf(const char* file, int line, const char *fmt, ...) 28extern void ldebugf(const char* file, int line, const char *fmt, ...)
29 ATTRIBUTE_PRINTF(3, 4); 29 ATTRIBUTE_PRINTF(3, 4);
30 30
31#ifndef CODEC
31#ifdef __GNUC__ 32#ifdef __GNUC__
32 33
33/* */ 34/* */
@@ -57,5 +58,5 @@ void breakpoint(void);
57 58
58#endif /* GCC */ 59#endif /* GCC */
59 60
60 61#endif /* CODEC */
61#endif 62#endif