diff options
-rw-r--r-- | src/boot.c | 5 | ||||
-rw-r--r-- | src/util.h | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -295,6 +295,11 @@ find_prio(const char *glob) return -1; } +u8 is_bootprio_strict(void) +{ + return find_prio("HALT") >= 0; +} + int bootprio_find_pci_device(struct pci_device *pci) { if (CONFIG_CSM) @@ -27,6 +27,7 @@ void boot_add_cd(struct drive_s *drive_g, const char *desc, int prio); void boot_add_cbfs(void *data, const char *desc, int prio); void interactive_bootmenu(void); void bcv_prepboot(void); +u8 is_bootprio_strict(void); struct pci_device; int bootprio_find_pci_device(struct pci_device *pci); int bootprio_find_scsi_device(struct pci_device *pci, int target, int lun); |