summaryrefslogtreecommitdiffhomepage
path: root/src/loader/inc/cfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/loader/inc/cfg.h')
-rw-r--r--src/loader/inc/cfg.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/loader/inc/cfg.h b/src/loader/inc/cfg.h
index 156d561..f3a15ab 100644
--- a/src/loader/inc/cfg.h
+++ b/src/loader/inc/cfg.h
@@ -4,6 +4,7 @@
#define CFG_H
#include <def.h>
+#include <impl.h>
// Global config element index (can actually be anything but wth)
#define CFG_GLOBAL 0
@@ -18,8 +19,10 @@ enum cfg_key {
struct cfg_entry {
u8 exists : 1;
char name[64];
- char path[64];
+ char full_path[64]; // With disk name
+ const char *path; // Without disk name
struct dev *dev;
+ struct impl impl;
};
struct cfg {