]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | # |
2 | # Mach Operating System | |
3 | # Copyright (c) 1986 Carnegie-Mellon University | |
4 | # All rights reserved. The CMU software License Agreement | |
5 | # specifies the terms and conditions for use and redistribution. | |
6 | # | |
7 | ###################################################################### | |
8 | # | |
9 | # Standard Apple MacOS X Configurations: | |
10 | # -------- ---- -------- --------------- | |
11 | # | |
12 | # RELEASE = [ mach_bsd mach_kdp iokit mach_pe ppc mach ] | |
13 | # RELEASE_TRACE = [ RELEASE kdebug ] | |
14 | # DEBUG = [ RELEASE mach_kdb debug ] | |
15 | # DEBUG_TRACE = [ DEBUG kdebug ] | |
55e303ae | 16 | # PROFILE = [ RELEASE profile ] |
1c79356b A |
17 | # |
18 | ###################################################################### | |
19 | # | |
20 | ############################################################################## | |
1c79356b A |
21 | # |
22 | # MACH_PROF enables code for mach profiling. | |
23 | # | |
24 | options MACH_PROF # # <mach_prof> | |
25 | ############################################################################## | |
26 | # | |
27 | # Debug | |
28 | # | |
29 | options DEBUG # # <debug> | |
30 | ||
55e303ae A |
31 | options PROFILE # kernel profiling # <profile> |
32 | ||
1c79356b A |
33 | machine "ppc" |
34 | cpu "ppc" | |
1c79356b A |
35 | pseudo-device scc 1 |
36 | pseudo-device vc 1 | |
37 | ||
91447636 | 38 | options MACHINE_TIMER_ROUTINES |
1c79356b A |
39 | |
40 | # Disabled by default, since mklinux does not need this | |
41 | # unless running multiserver - the atalk stack at time of | |
42 | # writing inserts a null filter! | |
43 | #options NET_FILTER_COMPILER | |
44 | ||
45 | # Turn on the serial console by uncommenting the this: | |
46 | #options SERIAL_CONSOLE_DEFAULT | |
47 | ||
48 | options MACH_KDP # # <mach_kdp> | |
49 | options MACH_KDB # # <mach_kdb> | |
50 | options MACH_BSD # # <mach_bsd> | |
51 | options IOKIT # # <iokit> | |
52 | options MACH_PE # # <mach_pe> | |
53 | ||
54 | # XXX for bringup, turns on mac disklabels, | |
55 | # and some other nice stuff for the diskshim | |
56 | options POWERMAC |