]>
git.saurik.com Git - apple/xnu.git/blob - bsd/arm/reboot.h
2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
5 #ifndef _BSD_ARM_REBOOT_H_
6 #define _BSD_ARM_REBOOT_H_
9 * Empty file (publicly)
12 #include <sys/appleapiopts.h>
14 #ifdef BSD_KERNEL_PRIVATE
17 * Use most significant 16 bits to avoid collisions with
18 * machine independent flags.
20 #define RB_POWERDOWN 0x00010000 /* power down on halt */
21 #define RB_NOBOOTRC 0x00020000 /* don't run '/etc/rc.boot' */
22 #define RB_DEBUG 0x00040000 /* drop into mini monitor on panic */
23 #define RB_EJECT 0x00080000 /* eject disks on halt */
24 #define RB_COMMAND 0x00100000 /* new boot command specified */
25 #define RB_NOFP 0x00200000 /* don't use floating point */
26 #define RB_BOOTNEXT 0x00400000 /* reboot into NeXT */
27 #define RB_BOOTDOS 0x00800000 /* reboot into DOS */
28 #define RB_PRETTY 0x01000000 /* shutdown with pretty graphics */
30 #endif /* BSD_KERNEL_PRIVATE */
32 #endif /* _BSD_ARM_REBOOT_H_ */