2010-08-01 16:15:27 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Thomas Martitz
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __PATHS_H__
|
|
|
|
#define __PATHS_H__
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "autoconf.h"
|
|
|
|
#include "string-extra.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* name of directory where configuration, fonts and other data
|
|
|
|
* files are stored */
|
|
|
|
#ifdef __PCTOOL__
|
|
|
|
#undef ROCKBOX_DIR
|
|
|
|
#undef ROCKBOX_DIR_LEN
|
|
|
|
#undef WPS_DIR
|
|
|
|
#define ROCKBOX_DIR "."
|
|
|
|
#define ROCKBOX_DIR_LEN 1
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* ROCKBOX_DIR is now defined in autoconf.h for flexible build types */
|
|
|
|
#ifndef ROCKBOX_DIR
|
|
|
|
#error ROCKBOX_DIR not defined (should be in autoconf.h)
|
|
|
|
#endif
|
|
|
|
#define ROCKBOX_DIR_LEN (sizeof(ROCKBOX_DIR)-1)
|
|
|
|
#endif /* def __PCTOOL__ */
|
|
|
|
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#if !defined(APPLICATION) || defined(SAMSUNG_YPR0)
|
2010-08-01 16:15:27 +00:00
|
|
|
|
2011-12-25 20:11:18 +00:00
|
|
|
#ifdef SAMSUNG_YPR0
|
|
|
|
#define HOME_DIR "/mnt/media0"
|
|
|
|
#else
|
2012-01-17 17:44:29 +00:00
|
|
|
#define HOME_DIR "/"
|
2011-12-25 20:11:18 +00:00
|
|
|
#endif
|
|
|
|
|
2010-08-01 16:15:27 +00:00
|
|
|
/* make sure both are the same for native builds */
|
|
|
|
#undef ROCKBOX_LIBRARY_PATH
|
|
|
|
#define ROCKBOX_LIBRARY_PATH ROCKBOX_DIR
|
|
|
|
|
|
|
|
#define PLUGIN_DIR ROCKBOX_DIR "/rocks"
|
|
|
|
#define CODECS_DIR ROCKBOX_DIR "/codecs"
|
|
|
|
|
|
|
|
#define paths_init()
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
|
2011-12-25 20:11:18 +00:00
|
|
|
#else /* APPLICATION */
|
|
|
|
|
|
|
|
#define HOME_DIR "<HOME>" /* replaced at runtime */
|
|
|
|
#define HOME_DIR_LEN (sizeof(HOME_DIR)-1)
|
2010-08-01 16:15:27 +00:00
|
|
|
|
2010-12-06 22:28:14 +00:00
|
|
|
#define PLUGIN_DIR ROCKBOX_LIBRARY_PATH "/rockbox/rocks"
|
2011-05-31 21:26:18 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_ANDROID)
|
|
|
|
#define CODECS_DIR ROCKBOX_BINARY_PATH
|
|
|
|
#else
|
2010-12-06 22:28:14 +00:00
|
|
|
#define CODECS_DIR ROCKBOX_LIBRARY_PATH "/rockbox/codecs"
|
2011-05-31 21:26:18 +00:00
|
|
|
#endif
|
2010-08-01 16:15:27 +00:00
|
|
|
|
|
|
|
extern void paths_init(void);
|
2010-12-06 22:26:31 +00:00
|
|
|
|
2011-12-25 20:11:18 +00:00
|
|
|
#endif /* !APPLICATION || SAMSUNG_YPR0 */
|
2010-08-01 16:15:27 +00:00
|
|
|
|
2011-12-25 20:16:39 +00:00
|
|
|
#define REC_BASE_DIR HOME_DIR
|
|
|
|
#define PLAYLIST_CATALOG_DEFAULT_DIR HOME_DIR "/Playlists"
|
|
|
|
|
2010-08-01 16:15:27 +00:00
|
|
|
#define LANG_DIR ROCKBOX_DIR "/langs"
|
|
|
|
|
|
|
|
#define PLUGIN_GAMES_DIR PLUGIN_DIR "/games"
|
|
|
|
#define PLUGIN_APPS_DIR PLUGIN_DIR "/apps"
|
|
|
|
#define PLUGIN_DEMOS_DIR PLUGIN_DIR "/demos"
|
|
|
|
#define VIEWERS_DIR PLUGIN_DIR "/viewers"
|
|
|
|
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#if defined(APPLICATION) && !defined(SAMSUNG_YPR0)
|
2011-12-25 20:11:18 +00:00
|
|
|
#define PLUGIN_DATA_DIR ROCKBOX_DIR "/rocks.data"
|
2011-03-02 23:43:54 +00:00
|
|
|
#define PLUGIN_GAMES_DATA_DIR PLUGIN_DATA_DIR
|
|
|
|
#define PLUGIN_APPS_DATA_DIR PLUGIN_DATA_DIR
|
|
|
|
#define PLUGIN_DEMOS_DATA_DIR PLUGIN_DATA_DIR
|
|
|
|
#define VIEWERS_DATA_DIR PLUGIN_DATA_DIR
|
|
|
|
#else
|
|
|
|
#define PLUGIN_DATA_DIR PLUGIN_DIR
|
|
|
|
#define PLUGIN_GAMES_DATA_DIR PLUGIN_DIR "/games"
|
|
|
|
#define PLUGIN_APPS_DATA_DIR PLUGIN_DIR "/apps"
|
|
|
|
#define PLUGIN_DEMOS_DATA_DIR PLUGIN_DIR "/demos"
|
|
|
|
#define VIEWERS_DATA_DIR PLUGIN_DIR "/viewers"
|
|
|
|
#endif
|
2010-08-01 16:15:27 +00:00
|
|
|
|
|
|
|
#define WPS_DIR ROCKBOX_DIR "/wps"
|
|
|
|
#define SBS_DIR WPS_DIR
|
|
|
|
#define THEME_DIR ROCKBOX_DIR "/themes"
|
|
|
|
#define FONT_DIR ROCKBOX_DIR "/fonts"
|
|
|
|
#define ICON_DIR ROCKBOX_DIR "/icons"
|
|
|
|
|
|
|
|
#define BACKDROP_DIR ROCKBOX_DIR "/backdrops"
|
|
|
|
#define EQS_DIR ROCKBOX_DIR "/eqs"
|
|
|
|
|
|
|
|
/* need to fix this once the application gets record/radio abilities */
|
|
|
|
#define RECPRESETS_DIR ROCKBOX_DIR "/recpresets"
|
|
|
|
#define FMPRESET_PATH ROCKBOX_DIR "/fmpresets"
|
|
|
|
|
|
|
|
#define DIRCACHE_FILE ROCKBOX_DIR "/dircache.dat"
|
|
|
|
#define CODEPAGE_DIR ROCKBOX_DIR "/codepages"
|
|
|
|
|
|
|
|
#define VIEWERS_CONFIG ROCKBOX_DIR "/viewers.config"
|
|
|
|
#define CONFIGFILE ROCKBOX_DIR "/config.cfg"
|
|
|
|
#define FIXEDSETTINGSFILE ROCKBOX_DIR "/fixed.cfg"
|
|
|
|
|
|
|
|
#define PLAYLIST_CONTROL_FILE ROCKBOX_DIR "/.playlist_control"
|
|
|
|
#define NVRAM_FILE ROCKBOX_DIR "/nvram.bin"
|
|
|
|
#define GLYPH_CACHE_FILE ROCKBOX_DIR "/.glyphcache"
|
|
|
|
#endif /* __PATHS_H__ */
|