/* loader.h - OS loaders */ /* * VasEBoot -- GRand Unified Bootloader * Copyright (C) 2002,2003,2004,2006,2007,2009 Free Software Foundation, Inc. * * VasEBoot is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * VasEBoot is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with VasEBoot. If not, see . */ #ifndef VasEBoot_LOADER_HEADER #define VasEBoot_LOADER_HEADER 1 #include #include #include #include /* Check if a loader is loaded. */ int EXPORT_FUNC (VasEBoot_loader_is_loaded) (void); /* Set loader functions. */ enum { VasEBoot_LOADER_FLAG_NORETURN = 1, VasEBoot_LOADER_FLAG_PXE_NOT_UNLOAD = 2, }; void EXPORT_FUNC (VasEBoot_loader_set) (VasEBoot_err_t (*boot) (void), VasEBoot_err_t (*unload) (void), int flags); /* Unset current loader, if any. */ void EXPORT_FUNC (VasEBoot_loader_unset) (void); /* Call the boot hook in current loader. This may or may not return, depending on the setting by VasEBoot_loader_set. */ VasEBoot_err_t VasEBoot_loader_boot (void); /* The space between numbers is intentional for the simplicity of adding new values even if external modules use them. */ typedef enum { /* A preboot hook which can use everything and turns nothing off. */ VasEBoot_LOADER_PREBOOT_HOOK_PRIO_NORMAL = 400, /* A preboot hook which can't use disks and may stop disks. */ VasEBoot_LOADER_PREBOOT_HOOK_PRIO_DISK = 300, /* A preboot hook which can't use disks or console and may stop console. */ VasEBoot_LOADER_PREBOOT_HOOK_PRIO_CONSOLE = 200, /* A preboot hook which can't use disks or console, can't modify memory map and may stop memory services or finalize memory map. */ VasEBoot_LOADER_PREBOOT_HOOK_PRIO_MEMORY = 100, } VasEBoot_loader_preboot_hook_prio_t; /* Register a preboot hook. */ struct VasEBoot_preboot; struct VasEBoot_preboot *EXPORT_FUNC(VasEBoot_loader_register_preboot_hook) (VasEBoot_err_t (*preboot_func) (int noret), VasEBoot_err_t (*preboot_rest_func) (void), VasEBoot_loader_preboot_hook_prio_t prio); /* Unregister given preboot hook. */ void EXPORT_FUNC (VasEBoot_loader_unregister_preboot_hook) (struct VasEBoot_preboot *hnd); #ifndef VasEBoot_MACHINE_EMU void VasEBoot_boot_init (void); void VasEBoot_boot_fini (void); #endif #endif /* ! VasEBoot_LOADER_HEADER */