diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2012-08-06 19:07:54 -0400 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2012-08-06 19:07:54 -0400 |
| commit | 97c1dc0368dadf3f404bc4c5e1af1193eeb713b3 (patch) | |
| tree | 5ba5eb8e39ac0bb606d1aae0844a961cb98d8abb | |
| parent | d46b090771291c10127d0fb421ee3c9f1e8f69b1 (diff) | |
| download | rockbox-97c1dc0368dadf3f404bc4c5e1af1193eeb713b3.zip rockbox-97c1dc0368dadf3f404bc4c5e1af1193eeb713b3.tar.gz rockbox-97c1dc0368dadf3f404bc4c5e1af1193eeb713b3.tar.bz2 rockbox-97c1dc0368dadf3f404bc4c5e1af1193eeb713b3.tar.xz | |
Enable logdiskf to for all device targets, but not bootloaders or application
builds.
Change-Id: I651900fda676433841cfd14dba05bcb4116e0002
| -rw-r--r-- | firmware/export/config.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index f654609..8b95882 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -1133,4 +1133,9 @@ Lyre prototype 1 */ #define HAVE_PITCHCONTROL #endif +/* enable logging messages to disk*/ +#if CONFIG_PLATFORM == PLATFORM_NATIVE && !defined(SIMULATOR) && !defined(BOOTLOADER) +#define ROCKBOX_HAS_LOGDISKF +#endif + #endif /* __CONFIG_H__ */ |