blob: 00ccad1136136b83cdaeb7b15bb6e40f5316fb8c (
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
64
65
66
67
68
|
# $OpenBSD: RAMDISK,v 1.3 2009/01/02 06:38:24 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
sscom2 at ssio? index 2 # irq ?
# LCD
lcd0 at ssio?
wsdisplay* at lcd? console ?
# 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
|