diff options
author | Thomas Martitz <kugel@rockbox.org> | 2011-02-09 20:27:23 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2011-02-09 20:27:23 +0000 |
commit | 86cab2e27a0d9f831b39032fd713945659277903 (patch) | |
tree | 0ca92955c766098facfa3fa38007022ff8a550a8 /apps/buffering.c | |
parent | 82eec87dd65442c2a7e134dcb89ffc6d07fe5a4b (diff) |
Disable buffering codecs (and code generally) on RaaA.
It's not useful to do it since you need to write back the code to disk to be able to load it from memory, it also requires writing to an executable directory.
Keep it for the simulator for the sake of simulating.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29261 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/buffering.c')
-rw-r--r-- | apps/buffering.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/buffering.c b/apps/buffering.c index 9c0ad138f7..1482d6790b 100644 --- a/apps/buffering.c +++ b/apps/buffering.c @@ -1012,7 +1012,11 @@ int bufopen(const char *file, size_t offset, enum data_type type, return h->id; } - +#ifdef APPLICATION + /* loading code from memory is not supported in application builds */ + else if (type == TYPE_CODEC) + return ERR_UNSUPPORTED_TYPE; +#endif /* Other cases: there is a little more work. */ int fd = open(file, O_RDONLY); if (fd < 0) |