xref: /haiku/headers/private/system/safemode_defs.h (revision b55a57da7173b9af0432bd3e148d03f06161d036)
1 /*
2  * Copyright 2004-2009, Axel Dörfler, axeld@pinc-software.de.
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 #define B_SAFEMODE_DISABLE_USER_ADD_ONS		"disable_user_addons"
10 #define B_SAFEMODE_DISABLE_IDE_DMA			"disable_ide_dma"
11 #define B_SAFEMODE_DISABLE_IOAPIC			"disable_ioapic"
12 #define B_SAFEMODE_DISABLE_ACPI				"disable_acpi"
13 #define B_SAFEMODE_DISABLE_APIC				"disable_apic"
14 #define B_SAFEMODE_DISABLE_APM				"disable_apm"
15 #define B_SAFEMODE_DISABLE_SMP				"disable_smp"
16 #define B_SAFEMODE_DISABLE_HYPER_THREADING	"disable_hyperthreading"
17 #define B_SAFEMODE_FAIL_SAFE_VIDEO_MODE		"fail_safe_video_mode"
18 
19 #if DEBUG_SPINLOCK_LATENCIES
20 #	define B_SAFEMODE_DISABLE_LATENCY_CHECK	"disable_latency_check"
21 #endif
22 
23 
24 #endif	/* _SYSTEM_SAFEMODE_DEFS_H */
25