Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

imx233: move SoC-specific config symbols to separate header

Change-Id: Id044c59045712f1b96b93b5a93b07ddaa46bab7c

authored by

Aidan MacDonald and committed by
Solomon Peachy
7e31f2a6 ef31aae6

+44 -11
-11
firmware/export/config.h
··· 386 386 #define CPU 0 387 387 #define COP 1 388 388 389 - /* imx233 specific: IMX233_PACKAGE */ 390 - #define IMX233_BGA100 0 391 - #define IMX233_BGA169 1 392 - #define IMX233_TQFP100 2 393 - #define IMX233_TQFP128 3 394 - #define IMX233_LQFP100 4 395 - 396 - /* IMX233_PARTITIONS */ 397 - #define IMX233_FREESCALE (1 << 0) /* Freescale I.MX233 nonstandard two-level MBR */ 398 - #define IMX233_CREATIVE (1 << 1) /* Creative MBLK windowing */ 399 - 400 389 /* CONFIG_BUFLIB_BACKEND */ 401 390 #define BUFLIB_BACKEND_MEMPOOL 0 /* Default memory pool backed buflib */ 402 391 #define BUFLIB_BACKEND_MALLOC 1 /* malloc() buflib (for debugging) */
+3
firmware/export/config/creativezen.h
··· 1 + /* Pull in SoC-specific defines */ 2 + #include "imx233-config.h" 3 + 1 4 /* 2 5 * This config file is for the Creative Zen 3 6 */
+3
firmware/export/config/creativezenmozaic.h
··· 1 + /* Pull in SoC-specific defines */ 2 + #include "imx233-config.h" 3 + 1 4 /* 2 5 * This config file is for the Creative ZEN Mozaic 3 6 */
+3
firmware/export/config/creativezenv.h
··· 1 + /* Pull in SoC-specific defines */ 2 + #include "imx233-config.h" 3 + 1 4 /* 2 5 * This config file is for the Creative ZEN V 3 6 */
+3
firmware/export/config/creativezenxfi.h
··· 1 + /* Pull in SoC-specific defines */ 2 + #include "imx233-config.h" 3 + 1 4 /* 2 5 * This config file is for the Creative Zen X-Fi 3 6 */
+3
firmware/export/config/creativezenxfi2.h
··· 1 + /* Pull in SoC-specific defines */ 2 + #include "imx233-config.h" 3 + 1 4 /* 2 5 * This config file is for the Creative Zen X-Fi2 3 6 */
+3
firmware/export/config/creativezenxfi3.h
··· 1 + /* Pull in SoC-specific defines */ 2 + #include "imx233-config.h" 3 + 1 4 /* 2 5 * This config file is for the Creative Zen X-Fi3 3 6 */
+3
firmware/export/config/creativezenxfistyle.h
··· 1 + /* Pull in SoC-specific defines */ 2 + #include "imx233-config.h" 3 + 1 4 /* 2 5 * This config file is for the Creative Zen X-Fi Style 3 6 */
+3
firmware/export/config/sansafuzeplus.h
··· 1 + /* Pull in SoC-specific defines */ 2 + #include "imx233-config.h" 3 + 1 4 /* 2 5 * This config file is for the Sandisk Sansa Fuze+ 3 6 */
+3
firmware/export/config/sonynwze360.h
··· 1 + /* Pull in SoC-specific defines */ 2 + #include "imx233-config.h" 3 + 1 4 /* 2 5 * This config file is for the Sony NWZ-E360 series 3 6 */
+3
firmware/export/config/sonynwze370.h
··· 1 + /* Pull in SoC-specific defines */ 2 + #include "imx233-config.h" 3 + 1 4 /* 2 5 * This config file is for the Sony NWZ-E370/E380 series 3 6 */
+14
firmware/target/arm/imx233/imx233-config.h
··· 1 + /* 2 + * To be included by config/TARGET.h 3 + */ 4 + 5 + /* IMX233_PACKAGE */ 6 + #define IMX233_BGA100 0 7 + #define IMX233_BGA169 1 8 + #define IMX233_TQFP100 2 9 + #define IMX233_TQFP128 3 10 + #define IMX233_LQFP100 4 11 + 12 + /* IMX233_PARTITIONS */ 13 + #define IMX233_FREESCALE (1 << 0) /* Freescale I.MX233 nonstandard two-level MBR */ 14 + #define IMX233_CREATIVE (1 << 1) /* Creative MBLK windowing */