]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
9bccf70c | 2 | * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved. |
1c79356b A |
3 | * |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
e5568f75 A |
6 | * The contents of this file constitute Original Code as defined in and |
7 | * are subject to the Apple Public Source License Version 1.1 (the | |
8 | * "License"). You may not use this file except in compliance with the | |
9 | * License. Please obtain a copy of the License at | |
10 | * http://www.apple.com/publicsource and read it before using this file. | |
1c79356b | 11 | * |
e5568f75 A |
12 | * This Original Code and all software distributed under the License are |
13 | * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
1c79356b A |
14 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
15 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
e5568f75 A |
16 | * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the |
17 | * License for the specific language governing rights and limitations | |
18 | * under the License. | |
1c79356b A |
19 | * |
20 | * @APPLE_LICENSE_HEADER_END@ | |
21 | */ | |
1c79356b A |
22 | |
23 | #ifndef _BSD_PPC_REBOOT_H_ | |
24 | #define _BSD_PPC_REBOOT_H_ | |
25 | ||
9bccf70c A |
26 | #include <sys/appleapiopts.h> |
27 | ||
1c79356b A |
28 | /* |
29 | * Empty file (publicly) | |
30 | */ | |
91447636 | 31 | #ifdef BSD_KERNEL_PRIVATE |
1c79356b A |
32 | /* |
33 | * Use most significant 16 bits to avoid collisions with | |
34 | * machine independent flags. | |
35 | */ | |
36 | #define RB_POWERDOWN 0x00010000 /* power down on halt */ | |
37 | #define RB_NOBOOTRC 0x00020000 /* don't run '/etc/rc.boot' */ | |
38 | #define RB_DEBUG 0x00040000 /* drop into mini monitor on panic */ | |
39 | #define RB_EJECT 0x00080000 /* eject disks on halt */ | |
40 | #define RB_COMMAND 0x00100000 /* new boot command specified */ | |
41 | #define RB_NOFP 0x00200000 /* don't use floating point */ | |
42 | #define RB_BOOTNEXT 0x00400000 /* reboot into NeXT */ | |
43 | #define RB_BOOTDOS 0x00800000 /* reboot into DOS */ | |
44 | ||
9bccf70c | 45 | |
91447636 | 46 | #endif /* BSD_KERNEL_PRIVATE */ |
9bccf70c | 47 | |
1c79356b | 48 | #endif /* _BSD_PPC_REBOOT_H_ */ |
9bccf70c | 49 |