diff options
| author | Lorenzo Miori <memoryS60@gmail.com> | 2013-09-10 22:48:34 +0200 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2014-02-05 09:56:21 +0100 |
| commit | e876f4df6d240bd2e319b1e63be95a625f049a97 (patch) | |
| tree | ce2fe1b24650e3be7a6cd2d346d29090a5422a8c /firmware/export/rbpaths.h | |
| parent | b828b9d99bff2acc0e1f543f3176fd4b632cba68 (diff) | |
| download | rockbox-e876f4df6d240bd2e319b1e63be95a625f049a97.zip rockbox-e876f4df6d240bd2e319b1e63be95a625f049a97.tar.gz rockbox-e876f4df6d240bd2e319b1e63be95a625f049a97.tar.bz2 rockbox-e876f4df6d240bd2e319b1e63be95a625f049a97.tar.xz | |
Samsung YP-R1 target port
This is the basic port to the new target Samsung
YP-R1, which runs on a similar platform as YP-R0.
Port is usable, although there are still
some optimizations that have to be done.
Change-Id: If83a8e386369e413581753780c159026d9e41f04
Diffstat (limited to 'firmware/export/rbpaths.h')
| -rw-r--r-- | firmware/export/rbpaths.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/export/rbpaths.h b/firmware/export/rbpaths.h index d50f66d..9fa1d32 100644 --- a/firmware/export/rbpaths.h +++ b/firmware/export/rbpaths.h @@ -40,9 +40,9 @@ #define ROCKBOX_DIR_LEN (sizeof(ROCKBOX_DIR)-1) #endif /* def __PCTOOL__ */ -#if !defined(APPLICATION) || defined(SAMSUNG_YPR0) +#if !defined(APPLICATION) || defined(SAMSUNG_YPR0) || defined(SAMSUNG_YPR1) -#ifdef SAMSUNG_YPR0 +#if defined(SAMSUNG_YPR0) || defined(SAMSUNG_YPR1) #define HOME_DIR "/mnt/media0" #else #define HOME_DIR "/" @@ -83,7 +83,7 @@ extern void paths_init(void); #define PLUGIN_DEMOS_DIR PLUGIN_DIR "/demos" #define VIEWERS_DIR PLUGIN_DIR "/viewers" -#if defined(APPLICATION) && !defined(SAMSUNG_YPR0) +#if defined(APPLICATION) && !(defined(SAMSUNG_YPR0) || defined(SAMSUNG_YPR1)) #define PLUGIN_DATA_DIR ROCKBOX_DIR "/rocks.data" #define PLUGIN_GAMES_DATA_DIR PLUGIN_DATA_DIR #define PLUGIN_APPS_DATA_DIR PLUGIN_DATA_DIR |