1/*
2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
3 */
4
5#ifndef _BSD_ARM_REBOOT_H_
6#define _BSD_ARM_REBOOT_H_
7
8/*
9 * Empty file (publicly)
10 */
11
12#include <sys/appleapiopts.h>
13
14#ifdef BSD_KERNEL_PRIVATE
15
16/*
17 * Use most significant 16 bits to avoid collisions with
18 * machine independent flags.
19 */
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 */
29
30#endif /* BSD_KERNEL_PRIVATE */
31
32#endif /* _BSD_ARM_REBOOT_H_ */
33