xref: /haiku/headers/private/system/safemode_defs.h (revision 746cac055adc6ac3308c7bc2d29040fb95689cc9)
1 /*
2  * Copyright 2004-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _SYSTEM_SAFEMODE_DEFS_H
6 #define _SYSTEM_SAFEMODE_DEFS_H
7 
8 
9 // these are BeOS compatible additions to the safemode
10 // constants in the driver_settings.h header
11 
12 #define B_SAFEMODE_DISABLE_USER_ADD_ONS		"disableuseraddons"
13 #define B_SAFEMODE_DISABLE_IDE_DMA			"disableidedma"
14 #define B_SAFEMODE_DISABLE_IOAPIC			"disable_ioapic"
15 #define B_SAFEMODE_DISABLE_ACPI				"disable_acpi"
16 #define B_SAFEMODE_DISABLE_APM				"disable_apm"
17 #define B_SAFEMODE_DISABLE_SMP				"disable_smp"
18 #define B_SAFEMODE_DISABLE_HYPER_THREADING	"disable_hyperthreading"
19 #define B_SAFEMODE_FAIL_SAFE_VIDEO_MODE		"fail_safe_video_mode"
20 
21 
22 #endif	/* _SYSTEM_SAFEMODE_DEFS_H */
23