xref: /haiku/src/system/boot/loader/load_driver_settings.h (revision f2620e47140215edf4100aeab02e99688744cf26)
1 /*
2  * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef LOAD_DRIVER_SETTINGS_H
6 #define LOAD_DRIVER_SETTINGS_H
7 
8 
9 #include <boot/vfs.h>
10 
11 
12 extern status_t add_safe_mode_settings(const char *buffer);
13 extern status_t add_stage2_driver_settings(stage2_args *args);
14 extern status_t load_driver_settings(stage2_args *args, Directory *volume);
15 
16 extern void apply_boot_settings();
17 
18 
19 #endif	/* LOAD_DRIVER_SETTINGS_H */
20