From 1b429c0fc28e5cd8b474ad5a1de1fa6f3d7c2e2a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 12 Jul 2021 18:14:44 +0200 Subject: Renamed files to match presentation --- src/loader/inc/cfg.h | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 src/loader/inc/cfg.h (limited to 'src/loader/inc/cfg.h') diff --git a/src/loader/inc/cfg.h b/src/loader/inc/cfg.h deleted file mode 100644 index cb91ab2..0000000 --- a/src/loader/inc/cfg.h +++ /dev/null @@ -1,39 +0,0 @@ -// MIT License, Copyright (c) 2021 Marvin Borner - -#ifndef CFG_H -#define CFG_H - -#include -#include - -extern u8 boot_disk; - -// Global config element index (can actually be anything but wth) -#define CFG_GLOBAL 0 - -enum cfg_key { - CFG_NONE, - CFG_NAME, - CFG_TIMEOUT, - CFG_PATH, -}; - -struct cfg_entry { - u8 exists : 1; - char name[64]; - char full_path[64]; // With disk name - const char *path; // Without disk name - struct dev *dev; - struct impl impl; -}; - -struct cfg { - u32 timeout; - struct cfg_entry entry[16]; // Up to 16 different entries -}; - -void cfg_foreach(u8 (*cb)(struct cfg_entry *)); -void cfg_exec(struct cfg_entry *entry); -void cfg_read(void); - -#endif -- cgit v1.2.3