|
|
1.1 root 1: /*
2: * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
3: *
4: * @APPLE_LICENSE_HEADER_START@
5: *
6: * Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7: * Reserved. This file contains Original Code and/or Modifications of
8: * Original Code as defined in and that are subject to the Apple Public
9: * Source License Version 1.1 (the "License"). You may not use this file
10: * except in compliance with the License. Please obtain a copy of the
11: * License at http://www.apple.com/publicsource and read it before using
12: * this file.
13: *
14: * The Original Code and all software distributed under the License are
15: * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16: * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17: * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18: * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
19: * License for the specific language governing rights and limitations
20: * under the License.
21: *
22: * @APPLE_LICENSE_HEADER_END@
23: */
24:
25: /*
26: * File: next/reboot.h
27: * Author: Avadis Tevanian, Jr.
28: *
29: * NeXT specific reboot flags.
30: *
31: * HISTORY
32: * 28-Feb-90 John Seamons (jks) at NeXT
33: * Added RB_COMMAND flag that allows a specific reboot command to be used.
34: *
35: * 06-Jul-88 Avadis Tevanian (avie) at NeXT, Inc.
36: * Created.
37: */
38:
39: #ifndef _BSD_I386_REBOOT_H_
40: #define _BSD_I386_REBOOT_H_
41:
42: /*
43: * Empty file (publicly)
44: */
45:
46: #ifdef KERNEL_PRIVATE
47:
48: /*
49: * Use most significant 16 bits to avoid collisions with
50: * machine independent flags.
51: */
52: #define RB_POWERDOWN 0x00010000 /* power down on halt */
53: #define RB_NOBOOTRC 0x00020000 /* don't run '/etc/rc.boot' */
54: #define RB_DEBUG 0x00040000 /* drop into mini monitor on panic */
55: #define RB_EJECT 0x00080000 /* eject disks on halt */
56: #define RB_COMMAND 0x00100000 /* new boot command specified */
57: #define RB_NOFP 0x00200000 /* don't use floating point */
58: #define RB_BOOTNEXT 0x00400000 /* reboot into NeXT */
59: #define RB_BOOTDOS 0x00800000 /* reboot into DOS */
60: #define RB_PRETTY 0x01000000 /* shutdown with pretty graphics */
61:
62: #endif /* KERNEL_PRIVATE */
63:
64: #endif /* _BSD_I386_REBOOT_H_ */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.