diff options
| author | Karl Kurbjun <kkurbjun@gmail.com> | 2007-10-17 05:19:20 +0000 |
|---|---|---|
| committer | Karl Kurbjun <kkurbjun@gmail.com> | 2007-10-17 05:19:20 +0000 |
| commit | f6bc19158e1bd5f700834a36fb9f6064e444ef9c (patch) | |
| tree | 78d8c4f11aedc31317cd73368c4b1accfb454465 /firmware/thread.c | |
| parent | c3584c0d636c8c9abbfd5ee6980c21e935bea512 (diff) | |
| download | rockbox-f6bc19158e1bd5f700834a36fb9f6064e444ef9c.zip rockbox-f6bc19158e1bd5f700834a36fb9f6064e444ef9c.tar.gz rockbox-f6bc19158e1bd5f700834a36fb9f6064e444ef9c.tar.bz2 rockbox-f6bc19158e1bd5f700834a36fb9f6064e444ef9c.tar.xz | |
Turns out you can boot the main build by copying apps/rockbox.bin to /rockbox.mrboot. Something is wrong with the rockbox bootloader, but at least now we can work with the main build. Added in a warning for the core_sleep function
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15162 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/thread.c')
| -rw-r--r-- | firmware/thread.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/thread.c b/firmware/thread.c index 1265877..f9d8e01 100644 --- a/firmware/thread.c +++ b/firmware/thread.c @@ -608,7 +608,8 @@ static inline void core_sleep(struct thread_entry **waking) #else static inline void core_sleep(struct thread_entry **waking) { - + (void) waking; +#warning core_sleep not implemented, battery life will be decreased } #endif /* CONFIG_CPU == */ |