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
12extern bool is_bootable(Directory* volume);
13extern status_t load_kernel(stage2_args* args, BootVolume& volume);
14extern status_t load_modules(stage2_args* args, BootVolume& volume);
15
16#endif	/* LOADER_H */
17