summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-10-08 09:47:40 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-10-11 16:37:17 -0400
commit2a471e288c16b91a7186a60b3fb84dd55a494c7a (patch)
tree3e746212c5fa69b59f61d19b6e29d11aa8a5e31b /firmware/SOURCES
parent5efaa9ef8073bb216e3dcdbb4476f2fa7c672b76 (diff)
downloadrockbox-2a471e288c16b91a7186a60b3fb84dd55a494c7a.tar.gz
rockbox-2a471e288c16b91a7186a60b3fb84dd55a494c7a.zip
New port: AIGO EROS Q / EROS K
The Q and K have a slightly different case, but the hardware under the shell is completely identical. These models are rebadged versions: * Hifiwalker H2 (== Q) * AGPTek H3 (== K) * Surfans F20 (== K) Other notes: * Significant improvements in the shared Hiby-platform launcher/loader * SD card can theoretically be hot-swapped now * Support external USB mass storage! * Some consolidation of Hiby-platform targets * Some consolidation of plugin keymaps Todo/known issues: * Keymaps need to be gone over properly * Convert to HAVE_SCROLLWHEEL? Change-Id: I5a8a4f22c38a5b69392ca7c0a8ad8c4e07d9523c
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES12
1 files changed, 11 insertions, 1 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index cbbebbc66f..8bf3d96bdf 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -115,7 +115,7 @@ target/hosted/sonynwz/nvp-nwz.c
115target/hosted/sonynwz/nwz-db.c 115target/hosted/sonynwz/nwz-db.c
116#endif 116#endif
117 117
118#if ((defined(AGPTEK_ROCKER) || defined(XDUOO_X3II) || defined(XDUOO_X20) || defined(FIIO_M3K)) && !defined(SIMULATOR)) 118#if ((defined(HIBY_LINUX) || defined(FIIO_M3K)) && !defined(SIMULATOR))
119drivers/lcd-memframe.c 119drivers/lcd-memframe.c
120target/hosted/alsa-controls.c 120target/hosted/alsa-controls.c
121target/hosted/pcm-alsa.c 121target/hosted/pcm-alsa.c
@@ -155,6 +155,14 @@ target/hosted/fiio/system-fiio.c
155target/hosted/fiio/usb-fiio.c 155target/hosted/fiio/usb-fiio.c
156#endif 156#endif
157 157
158#if (defined(EROS_Q)) && !defined(SIMULATOR)
159target/hosted/aigo/button-erosq.c
160target/hosted/aigo/debug-erosq.c
161target/hosted/aigo/power-erosq.c
162target/hosted/aigo/powermgmt-erosq.c
163target/hosted/aigo/usb-erosq.c
164#endif
165
158#if defined(SAMSUNG_YPR0) && !defined(SIMULATOR) 166#if defined(SAMSUNG_YPR0) && !defined(SIMULATOR)
159drivers/adc-as3514.c 167drivers/adc-as3514.c
160#if (CONFIG_RTC == RTC_AS3514) 168#if (CONFIG_RTC == RTC_AS3514)
@@ -513,6 +521,8 @@ drivers/audio/rocker_codec.c
513drivers/audio/xduoolinux_codec.c 521drivers/audio/xduoolinux_codec.c
514#elif defined(HAVE_FIIO_LINUX_CODEC) && !defined(SIMULATOR) 522#elif defined(HAVE_FIIO_LINUX_CODEC) && !defined(SIMULATOR)
515drivers/audio/fiiolinux_codec.c 523drivers/audio/fiiolinux_codec.c
524#elif defined(HAVE_EROSQ_LINUX_CODEC) && !defined(SIMULATOR)
525drivers/audio/erosqlinux_codec.c
516#elif defined(HAVE_SDL_AUDIO) 526#elif defined(HAVE_SDL_AUDIO)
517drivers/audio/sdl.c 527drivers/audio/sdl.c
518 528