diff options
| author | Dave Chapman <dave@dchapman.com> | 2006-08-31 19:19:35 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2006-08-31 19:19:35 +0000 |
| commit | 657dcb5165e80b3363b89ca3108356878d4c048e (patch) | |
| tree | 1f7af6e22ee866dcce37f9d1fa310c26a8bb44b4 /firmware/kernel.c | |
| parent | 20332bce1d49d7285109564d2e29ee18b0acd54e (diff) | |
| download | rockbox-657dcb5165e80b3363b89ca3108356878d4c048e.zip rockbox-657dcb5165e80b3363b89ca3108356878d4c048e.tar.gz rockbox-657dcb5165e80b3363b89ca3108356878d4c048e.tar.bz2 rockbox-657dcb5165e80b3363b89ca3108356878d4c048e.tar.xz | |
Initial commit of work for port to the Tatung Elio TPJ-1022 - yet another PortalPlayer PP5020 target.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10828 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/kernel.c')
| -rw-r--r-- | firmware/kernel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/kernel.c b/firmware/kernel.c index 1c8bf9d..b4123fe 100644 --- a/firmware/kernel.c +++ b/firmware/kernel.c @@ -83,7 +83,8 @@ void sleep(int ticks) void yield(void) { -#if CONFIG_CPU == S3C2440 && defined(BOOTLOADER) +#if (CONFIG_CPU == S3C2440 || defined(ELIO_TPJ1022) && defined(BOOTLOADER)) + /* Some targets don't like yielding in the bootloader */ #else switch_thread(); wake_up_thread(); |