diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-08-01 16:15:27 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-08-01 16:15:27 +0000 |
| commit | 9c0b2479f7025a84444adf08e3be8ced60dad013 (patch) | |
| tree | f3d328dd73f46d599f0432cc43ae206798cbe4f6 /apps/main.c | |
| parent | 2e7d92fef707a2cd30820fd0053c539c3ac8e2b3 (diff) | |
| download | rockbox-9c0b2479f7025a84444adf08e3be8ced60dad013.zip rockbox-9c0b2479f7025a84444adf08e3be8ced60dad013.tar.gz rockbox-9c0b2479f7025a84444adf08e3be8ced60dad013.tar.bz2 rockbox-9c0b2479f7025a84444adf08e3be8ced60dad013.tar.xz | |
Rockbox as an application: add get_user_file_path().
For RaaA it evaluates user paths at runtime. For everything but codecs/plugins it will give the path under $HOME/.config/rockbox.org if write access is needed or if the file/folder in question exists there (otherwise it gives /usr/local/share/rockbox).
This allows for installing themes under $HOME as well as having config.cfg and other important files there while installing the application (and default themes) under /usr/local.
On the DAPs it's a no-op, returing /.rockbox directly.
Not converted to use get_user_file_path() are plugins themselves, because RaaA doesn't build plugins yet.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27656 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
| -rw-r--r-- | apps/main.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/apps/main.c b/apps/main.c index 6c6d09c..67cd6d2 100644 --- a/apps/main.c +++ b/apps/main.c @@ -131,6 +131,9 @@ static void init(void); #endif int main(int argc, char *argv[]) { +#ifdef APPLICATION + paths_init(); +#endif sys_handle_argv(argc, argv); #else /* main(), and various functions called by main() and init() may be @@ -163,11 +166,17 @@ int main(void) #ifdef AUTOROCK { - static const char filename[] = PLUGIN_APPS_DIR "/autostart.rock"; - - if(file_exists(filename)) /* no complaint if it doesn't exist */ + char filename[MAX_PATH]; + const char *file = get_user_file_path( +#ifdef APPLICATION + ROCKBOX_DIR +#else + PLUGIN_APPS_DIR +#endif + "/autostart.rock", NEED_WRITE|IS_FILE, filename, sizeof(filename)); + if(file_exists(file)) /* no complaint if it doesn't exist */ { - plugin_load((char*)filename, NULL); /* start if it does */ + plugin_load(file, NULL); /* start if it does */ } } #endif /* #ifdef AUTOROCK */ |