blob: 889b2d01b446214604d5b1f018daa5443e07542f (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# $OpenBSD: RAMDISK,v 1.1 2008/11/26 14:47:50 drahn Exp $
machine moko arm
options TIMEZONE=0 # time zone to adjust RTC time by
options DST=0 # daylight saving time used by RTC
options FFS # UFS
options CD9660 # ISO 9660 + Rock Ridge file system
options MSDOSFS # MS-DOS file system
options INET # IP + ICMP + TCP + UDP
options INET6 # IPv6 (needs INET)
options DDB # kernel debugger
options EXT2FS # Second Extended Filesystem
options ARM32
options CACHE_CLEAN_BLOCK_INTR
options SSCOM_S3C2410
options SSCOM0CONSOLE
options S3C2XX0_XTAL_CLK=12000000
makeoptions KERNEL_BASE_PHYS="0x30300000"
makeoptions KERNEL_BASE_VIRT="0xc0300000"
makeoptions BOARDTYPE="moko"
# estimated number of users
maxusers 32
# CPU options
options CPU_ARM9 # Support the XScale core
#options XSCALE_CACHE_WRITE_THROUGH
#option WSDISPLAY_COMPAT_USL # VT handling
#option WSDISPLAY_COMPAT_RAWKBD # provide raw scancodes; needed for X11
#option WSDISPLAY_DEFAULTSCREENS=2 # initial number of text consoles
#option WSDISPLAY_COMPAT_PCVT # emulate some ioctls; needed for X11
config bsd root on rd0a swap on rd0b
# The main bus device
mainbus0 at root
cpu0 at mainbus?
ssio0 at mainbus?
# integrated UART
sscom0 at ssio? index 0 # irq 70
#sscom1 at ssio? index 1 # irq 73
# Pseudo-Devices
pseudo-device wsmux 2 # mouse & keyboard multiplexor
#pseudo-device crypto 1
pseudo-device loop 1 # network loopback
pseudo-device bpfilter 1 # packet filter
pseudo-device rd 1 # ram disk
pseudo-device bio 1 # ioctl multiplexing device
options BOOT_CONFIG # boot-time kernel config
# RAMDISK stuff
options MINIROOTSIZE=5120
options RAMDISK_HOOKS
|