summaryrefslogtreecommitdiff
path: root/apps/plugins/test_grey.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2011-12-25 20:11:18 +0000
committerThomas Martitz <kugel@rockbox.org>2011-12-25 20:11:18 +0000
commit20b662a946861b5acee8970948a22f7a2d1aedf3 (patch)
tree392d9568a3baaa23be0e109799485255ddcd067f /apps/plugins/test_grey.c
parent16784598ac550dab147ea8ee15634a2f15739fff (diff)
downloadrockbox-20b662a946861b5acee8970948a22f7a2d1aedf3.tar.gz
rockbox-20b662a946861b5acee8970948a22f7a2d1aedf3.zip
rbpaths: Add new special dir HOME_DIR for RaaA.
HOME_DIR is intended for not-so-advanced files which shall be user visible, and thus not in /.rockbox. Therefore HOME_DIR is translated to $HOME on RaaA, /sdcard on android, the internal memory on ypr0 and "/" on native targets. ROCKBOX_DIR ("/.rockbox") already existed as special and is translated to whatever the real rockbox dir is on the target (e.g. /sdcard/rockbox on android), but it's not suitable for some files we generate (e.g. battery-bench.txt). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31430 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/test_grey.c')
-rw-r--r--apps/plugins/test_grey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/test_grey.c b/apps/plugins/test_grey.c
index efceeff2c3..f4555c1eed 100644
--- a/apps/plugins/test_grey.c
+++ b/apps/plugins/test_grey.c
@@ -247,7 +247,7 @@ enum plugin_status plugin_start(const void* parameter)
247 case GREY_OK: 247 case GREY_OK:
248 248
249 /* dump result in form suitable for lcdlinear[] */ 249 /* dump result in form suitable for lcdlinear[] */
250 rb->create_numbered_filename(filename, "/", "test_grey_", 250 rb->create_numbered_filename(filename, HOME_DIR, "test_grey_",
251 ".txt", 2 IF_CNFN_NUM_(, NULL)); 251 ".txt", 2 IF_CNFN_NUM_(, NULL));
252 fd = rb->open(filename, O_RDWR|O_CREAT|O_TRUNC, 0666); 252 fd = rb->open(filename, O_RDWR|O_CREAT|O_TRUNC, 0666);
253 if (fd >= 0) 253 if (fd >= 0)