f309b668fd
- Add COMPAT_15 to all the kernel that had COMPAT_14, for the sake of coherency - Remove the only occurences of #ifdef COMPAT_15 in the tree: for the ARM ports, COMPAT_15 was always used in conjunction with EXEC_AOUT. Only EXEC_AOUT matters here. This address kern/18407
120 lines
3.5 KiB
Plaintext
120 lines
3.5 KiB
Plaintext
# $NetBSD: MMEYE,v 1.36 2006/09/27 21:42:05 manu Exp $
|
|
#
|
|
# GENERIC -- everything that's currently supported
|
|
#
|
|
|
|
include "arch/mmeye/conf/std.mmeye"
|
|
|
|
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
|
|
|
|
maxusers 16 # estimated number of users
|
|
|
|
# CPU support
|
|
options SH3
|
|
options SH7708R # 100MHz
|
|
options MMEYE
|
|
options MMEYE_NEW_INT
|
|
#options MMEYE_NO_CACHE
|
|
options PCLOCK=33330000 # 33.33MHz
|
|
options INITTODR_ALWAYS_USE_RTC
|
|
|
|
# Standard system options
|
|
#options INSECURE # disable kernel security levels
|
|
|
|
options HZ=50 # clock interrupt generates every 1/HZ sec
|
|
#options NTP # NTP phase/frequency locked loop
|
|
|
|
options KTRACE # system call tracing via ktrace(1)
|
|
|
|
options USERCONF # userconf(4) support
|
|
#options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
|
|
#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
|
|
|
|
# Diagnostic/debugging support options
|
|
#options DIAGNOSTIC # cheap kernel consistency checks
|
|
#options DEBUG # expensive debugging checks/support
|
|
#options DDB # in-kernel debugger
|
|
#makeoptions DEBUG="-g" # compile full symbol table
|
|
#options SYSCALL_DEBUG
|
|
|
|
# Compatibility options
|
|
options COMPAT_14 # NetBSD 1.4,
|
|
options COMPAT_15 # NetBSD 1.5,
|
|
options COMPAT_16 # NetBSD 1.6,
|
|
options COMPAT_20 # NetBSD 2.0,
|
|
options COMPAT_30 # NetBSD 3.0 compatibility.
|
|
options COMPAT_43 # and 4.3BSD
|
|
options BSDDISKLABEL_EI # endian independent disklabel support
|
|
options COMPAT_MMEYE_OLDLABEL # old mmeye's disklabel support
|
|
options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
|
|
|
|
# Executable format options
|
|
options EXEC_COFF # COFF executables
|
|
options EXEC_ELF32 # 32-bit ELF executables
|
|
|
|
# File systems
|
|
file-system FFS # UFS
|
|
file-system MFS # memory file system
|
|
file-system NFS # Network File System client
|
|
file-system PROCFS # /proc
|
|
#file-system PTYFS # /dev/pts/N support
|
|
options FFS_NO_SNAPSHOT # No FFS snapshot support
|
|
|
|
# Networking options
|
|
options INET # IP + ICMP + TCP + UDP
|
|
options NFS_BOOT_DHCP # Support DHCP NFS root
|
|
|
|
#options PCIVERBOSE # verbose PCI device autoconfig messages
|
|
#options PCI_CONFIG_DUMP # verbosely dump PCI config space
|
|
options PCMCIAVERBOSE # verbose PCMCIA configuration messages
|
|
|
|
# Kernel root file system and dump configuration.
|
|
#config netbsd root on ? type nfs
|
|
config netbsd root on wd0a type ffs
|
|
|
|
#
|
|
# Device configuration
|
|
#
|
|
|
|
mainbus0 at root
|
|
|
|
shb* at mainbus?
|
|
|
|
rtc* at shb?
|
|
|
|
com0 at mainbus?
|
|
com1 at mainbus?
|
|
|
|
# SH PCMCIA controllers
|
|
mmeyepcmcia0 at mainbus?
|
|
mmeyepcmcia1 at mainbus?
|
|
|
|
# PCMCIA bus support
|
|
pcmcia* at mmeyepcmcia? controller ? socket ?
|
|
|
|
com* at pcmcia? function ? # Modems and serial cards
|
|
wdc* at pcmcia? function ?
|
|
atabus* at ata?
|
|
wd* at atabus? drive ?
|
|
|
|
ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet
|
|
mbe* at pcmcia? function ? # MB8696x based Ethernet
|
|
ne* at pcmcia? function ? # NE2000-compatible Ethernet
|
|
sm* at pcmcia? function ? # Megahertz Ethernet
|
|
|
|
pseudo-device vnd # disk-like interface to files
|
|
#pseudo-device fss 4 # file system snapshot device
|
|
#pseudo-device bpfilter # Berkeley packet filter
|
|
#pseudo-device ipfilter # IP filter (firewall) and NAT
|
|
pseudo-device loop # network loopback
|
|
pseudo-device pty # pseudo-terminals
|
|
pseudo-device clockctl # user control of clock subsystem
|
|
|
|
# Enable the hooks used for initializing the root memory-disk.
|
|
#options MEMORY_DISK_HOOKS
|
|
#options MEMORY_DISK_IS_ROOT # force root on memory disk
|
|
#options MEMORY_DISK_SERVER=0 # no userspace memory disk support
|
|
#options MEMORY_DISK_ROOT_SIZE=3074 # size of memory disk, in blocks
|
|
|
|
#pseudo-device md 1 # memory disk device (ramdisk)
|