summaryrefslogtreecommitdiff
path: root/firmware/include/dir.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/dir.h')
-rw-r--r--firmware/include/dir.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/firmware/include/dir.h b/firmware/include/dir.h
index 3427893024..6e8b70588e 100644
--- a/firmware/include/dir.h
+++ b/firmware/include/dir.h
@@ -24,23 +24,6 @@
24 24
25#include "config.h" 25#include "config.h"
26 26
27#ifdef HAVE_MULTIVOLUME
28
29/* how to name volumes, first char must be outside of legal file names,
30 a number gets appended to enumerate, if applicable */
31#if (CONFIG_STORAGE & STORAGE_MMC)
32#define VOL_NAMES "<MMC%d>"
33#define VOL_ENUM_POS 4 /* position of %d, to avoid runtime calculation */
34#elif (CONFIG_STORAGE & STORAGE_SD)
35#define VOL_NAMES "<microSD%d>"
36#define VOL_ENUM_POS 8 /* position of %d, to avoid runtime calculation */
37#else
38#define VOL_NAMES "<HD%d>"
39#define VOL_ENUM_POS 3
40#endif
41
42#endif
43
44#define ATTR_READ_ONLY 0x01 27#define ATTR_READ_ONLY 0x01
45#define ATTR_HIDDEN 0x02 28#define ATTR_HIDDEN 0x02
46#define ATTR_SYSTEM 0x04 29#define ATTR_SYSTEM 0x04