blob: 4004c9d1fa4bf68f5ca4ab1f34fc0add1ae1961a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $NetBSD: std.macppc,v 1.27 2022/07/17 10:01:18 riastradh Exp $
#
# Standard/required options for NetBSD/macppc.
machine macppc powerpc
include "conf/std" # MI standard options
# standard ("mandatory") kernel options.
options PPC_OEA # OEA class PowerPC chips
makeoptions PPCDIR="oea" # Tell Makefile.powerpc what dir to use
makeoptions PPC_ARCH_MODE="ppc32"
# Executable support:
options EXEC_ELF32 # (native) ELF32 binary support
options EXEC_AOUT # (native) a.out binary support (deprecated)
options EXEC_SCRIPT # shell script support
options INTSTK=0x2000
# some *Books have both ADB keyboards and Bluetooth modules which pose as USB
# HID devices - for them to coexist on the same mux we tell the adbkbd driver
# pose as a USB keyboard
options ADBKBD_EMUL_USB
# default to console switching using Command-Fn, for tradition
options ADBKBD_LAYOUT="(KB_US | KB_APPLE)"
options UKBD_LAYOUT="(KB_US | KB_APPLE)"
# Atheros HAL options
include "external/isc/atheros_hal/conf/std.ath_hal"
|