diff options
author | Jens Arnold <amiconn@rockbox.org> | 2004-09-20 22:15:35 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2004-09-20 22:15:35 +0000 |
commit | 2d875f83e6d5c14a0faf4474d17e8740406c7649 (patch) | |
tree | 7dbdfa3f33c18ffad4672c77f75938cf889e472a /apps/main.c | |
parent | 57945b125d7f467d222796920fb1b6cf4e90f802 (diff) |
Disabled all code for the serial remote on Ondio, since the serial port is needed for MMC access.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5097 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
-rw-r--r-- | apps/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/main.c b/apps/main.c index 70dc9e2fed..1a163ebd72 100644 --- a/apps/main.c +++ b/apps/main.c @@ -127,8 +127,11 @@ void init(void) #ifdef DEBUG debug_init(); #else +#ifndef HAVE_MMC /* FIXME: This is also necessary for debug builds + * (do debug builds on the Ondio make sense?) */ serial_setup(); #endif +#endif i2c_init(); @@ -174,7 +177,7 @@ void init(void) #endif panicf("ata: %d", rc); } - + usb_start_monitoring(); /* temporary hack for Ondio, which can't browse without disk I/O */ |