summaryrefslogtreecommitdiff
path: root/firmware/export/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index 1783cc137d..d00958a71d 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -86,6 +86,7 @@
86#define PLATFORM_MAEMO4 (1<<4) 86#define PLATFORM_MAEMO4 (1<<4)
87#define PLATFORM_MAEMO5 (1<<5) 87#define PLATFORM_MAEMO5 (1<<5)
88#define PLATFORM_MAEMO (PLATFORM_MAEMO4|PLATFORM_MAEMO5) 88#define PLATFORM_MAEMO (PLATFORM_MAEMO4|PLATFORM_MAEMO5)
89#define PLATFORM_PANDORA (1<<6)
89 90
90/* CONFIG_KEYPAD */ 91/* CONFIG_KEYPAD */
91#define PLAYER_PAD 1 92#define PLAYER_PAD 1
@@ -448,6 +449,8 @@ Lyre prototype 1 */
448#include "config/nokian8xx.h" 449#include "config/nokian8xx.h"
449#elif defined(NOKIAN900) 450#elif defined(NOKIAN900)
450#include "config/nokian900.h" 451#include "config/nokian900.h"
452#elif defined(PANDORA)
453#include "config/pandora.h"
451#else 454#else
452/* no known platform */ 455/* no known platform */
453#endif 456#endif
@@ -511,7 +514,8 @@ Lyre prototype 1 */
511#endif 514#endif
512 515
513/* define for all cpus from ARM family */ 516/* define for all cpus from ARM family */
514#if (CONFIG_PLATFORM & PLATFORM_MAEMO5) && defined(MAEMO_ARM_BUILD) 517#if ((CONFIG_PLATFORM & PLATFORM_MAEMO5) && defined(MAEMO_ARM_BUILD)) \
518 || (CONFIG_PLATFORM & PLATFORM_PANDORA)
515#define CPU_ARM 519#define CPU_ARM
516#define ARM_ARCH 7 /* ARMv7 */ 520#define ARM_ARCH 7 /* ARMv7 */
517 521