diff options
| author | Frank Gevaerts <frank@gevaerts.be> | 2012-01-17 18:44:29 +0100 |
|---|---|---|
| committer | Frank Gevaerts <frank@gevaerts.be> | 2012-01-17 18:44:29 +0100 |
| commit | 6e11289cc2478c2d7414399cb8a3b9ed1ce7a6c9 (patch) | |
| tree | a9d2a513f38a06745a170a36614466db2778fbc0 | |
| parent | 978e506f1b107f04e5d52776e6c059a133a0937c (diff) | |
| download | rockbox-6e11289cc2478c2d7414399cb8a3b9ed1ce7a6c9.zip rockbox-6e11289cc2478c2d7414399cb8a3b9ed1ce7a6c9.tar.gz rockbox-6e11289cc2478c2d7414399cb8a3b9ed1ce7a6c9.tar.bz2 rockbox-6e11289cc2478c2d7414399cb8a3b9ed1ce7a6c9.tar.xz | |
Set HOME_DIR to "/". Should fix FS#12500.
The reasons for not using / don't seem to be valid (It can lead to //,
true, but not on any system where // is actually special, and
create_*_filename() handles / fine albeit not perfectly (more //)).
Handling /./ is desirable, but we can't afford to leave all automatic
filename generation broken indefinitely while people discuss possible
approaches.
Change-Id: I6718ea28d7c91e19f7da89f76c8cefd92e12fe5e
| -rw-r--r-- | firmware/export/rbpaths.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/rbpaths.h b/firmware/export/rbpaths.h index 85e149e..c60ebdf 100644 --- a/firmware/export/rbpaths.h +++ b/firmware/export/rbpaths.h @@ -49,7 +49,7 @@ #ifdef SAMSUNG_YPR0 #define HOME_DIR "/mnt/media0" #else -#define HOME_DIR "/." /* dot to avoid "//XX", /./X is valid */ +#define HOME_DIR "/" #endif /* make sure both are the same for native builds */ |