blob: 11e2aef0f15587344f9884209783edff06d3053e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: std.alpha,v 1.28 2021/07/14 13:28:40 thorpej Exp $
#
# Standard/required configuration info for NetBSD/alpha.
machine alpha
include "conf/std" # MI standard options
# standard ("mandatory") kernel options.
options HZ=1024
# Executable support: once transitioned to ELF, EXEC_ECOFF will become optional
options EXEC_ECOFF # (native) ECOFF binary support
options EXEC_ELF64 # (native) ELF64 binary support
options EXEC_SCRIPT # shell script support
options MULTIPROCESSOR # include multiprocessor support
# Don't encrypt swap by default. The systems most likely to heavily use
# swap space have slow CPUs by modern standards.
options VMSWAP_DEFAULT_PLAINTEXT
# Atheros HAL options
include "external/isc/atheros_hal/conf/std.ath_hal"
|