1 /* 2 ** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 ** Distributed under the terms of the MIT License. 4 */ 5 #ifndef LOADER_H 6 #define LOADER_H 7 8 9 #include <boot/vfs.h> 10 11 12 extern bool is_bootable(Directory* volume); 13 extern status_t load_kernel(stage2_args* args, BootVolume& volume); 14 extern status_t load_modules(stage2_args* args, BootVolume& volume); 15 16 #endif /* LOADER_H */ 17