diff options
author | Amaury Pouly <amaury.pouly@gmail.com> | 2017-09-16 23:29:50 +0200 |
---|---|---|
committer | Amaury Pouly <amaury.pouly@gmail.com> | 2017-09-17 00:03:45 +0200 |
commit | a0fca0c7bf3bd1c121667a1e66614646a6b96752 (patch) | |
tree | e5e53563357dd75a057531cad5f293f99c26fa57 /firmware/SOURCES | |
parent | ac57f96838b53e574477d13bf41bc54711a70c21 (diff) | |
download | rockbox-a0fca0c7bf3bd1c121667a1e66614646a6b96752.tar.gz rockbox-a0fca0c7bf3bd1c121667a1e66614646a6b96752.tar.bz2 rockbox-a0fca0c7bf3bd1c121667a1e66614646a6b96752.zip |
Add simulator support for the A860
This requires a few changes unrelated to the A860 because configure unsets
APPLICATION but the NWZ is an application!
Change-Id: Id91aa23193383ac95886b281653da5286edd9caf
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r-- | firmware/SOURCES | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES index 8ec17f7ec6..c29b5318d5 100644 --- a/firmware/SOURCES +++ b/firmware/SOURCES @@ -95,12 +95,11 @@ target/hosted/samsungypr/radio-ypr.c #endif #endif -#ifdef SONY_NWZ_LINUX +#if defined(SONY_NWZ_LINUX) && !defined(SIMULATOR) target/hosted/backtrace-glibc.c target/hosted/kernel-unix.c target/hosted/filesystem-unix.c target/hosted/lc-unix.c -target/hosted/pcm-alsa.c target/hosted/sonynwz/lcd-nwz.c target/hosted/sonynwz/button-nwz.c target/hosted/sonynwz/system-nwz.c @@ -467,6 +466,7 @@ target/hosted/pcm-alsa.c #elif defined(HAVE_NWZ_LINUX_CODEC) drivers/audio/nwzlinux-codec.c target/hosted/alsa-controls.c +target/hosted/pcm-alsa.c #elif defined(HAVE_SDL_AUDIO) drivers/audio/sdl.c #if CONFIG_CODEC == SWCODEC |