xref: /haiku/headers/private/system/safemode_defs.h (revision c9ad965c81b08802fed0827fd1dd16f45297928a)
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_APIC				"disable_apic"
17 #define B_SAFEMODE_DISABLE_APM				"disable_apm"
18 #define B_SAFEMODE_DISABLE_SMP				"disable_smp"
19 #define B_SAFEMODE_DISABLE_HYPER_THREADING	"disable_hyperthreading"
20 #define B_SAFEMODE_FAIL_SAFE_VIDEO_MODE		"fail_safe_video_mode"
21 
22 
23 #endif	/* _SYSTEM_SAFEMODE_DEFS_H */
24