Fred's Zaurus C3200 config's

Return to Zaurus Page

fdisk

Disklabel

Xorg config

OpenBSD fdisk on my Zaurus

zaurus:fred /home/fred> sudo fdisk wd0 Password: Disk: wd0 geometry: 11905/16/63 [12000556 Sectors] Offset: 0 Signature: 0xAA55 Starting Ending LBA Info: #: id C H S - C H S [ start: size ] ------------------------------------------------------------------------ 0: 83 0 1 1 - 19 15 63 [ 63: 20097 ] Linux files* 1: 83 20 0 1 - 39 15 63 [ 20160: 20160 ] Linux files* 2: 0C 40 0 1 - 2065 15 63 [ 40320: 2042208 ] Win95 FAT32L *3: A6 2066 0 1 - 11904 15 63 [ 2082528: 9917712 ] OpenBSD

OpenBSD disklabel on my Zaurus

# /dev/rwd0c: type: ESDI disk: ESDI/IDE disk label: HMS360606D5CF00 flags: bytes/sector: 512 sectors/track: 63 tracks/cylinder: 16 sectors/cylinder: 1008 cylinders: 11905 total sectors: 12000556 rpm: 3600 interleave: 1 trackskew: 0 cylinderskew: 0 headswitch: 0 # microseconds track-to-track seek: 0 # microseconds drivedata: 0 16 partitions: # size offset fstype [fsize bsize cpg] a: 204624 2082528 4.2BSD 2048 16384 204 # Cyl 2066 - 2268 b: 524160 2287152 swap # Cyl 2269 - 2788 c: 12000556 0 unused 0 0 # Cyl 0 - 11905* d: 204624 2811312 4.2BSD 2048 16384 204 # Cyl 2789 - 2991 e: 2097648 3015936 4.2BSD 2048 16384 328 # Cyl 2992 - 5072 g: 6291936 5113584 4.2BSD 2048 16384 328 # Cyl 5073 - 11314 h: 594720 11405520 4.2BSD 2048 16384 328 # Cyl 11315 - 11904 i: 20097 63 ext2fs # Cyl 0*- 19 j: 20160 20160 ext2fs # Cyl 20 - 39 k: 2042208 40320 MSDOS # Cyl 40 - 2065

Back to the top

OpenBSD xorg.conf on my Zaurus

Section "ServerLayout"
Identifier "wsfb"
Screen 0 "Screen0" 0 0
InputDevice "TouchScreen0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/TTF/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
EndSection

Section "Module"
Load "freetype"
Load "glx"
Load "extmod"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "Protocol" "standard"
Option "XkbRules" "xorg"
Option "XkbModel" "zaurus"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "TouchScreen0"
Driver "ws"
Option "device" "/dev/wsmouse"
Option "ZAxisMapping" "4 5"
# this can be used to use the screen in vertical mode
# Option "Rotate" "CCW"
EndSection

Section "Device"
Identifier "Wsdisplay0"
Driver "wsfb"
Option "device" "/dev/ttyC0"
# Comment out to use the screen in vertical mode
Option "rotate" "CW"
EndSection

Section "Monitor"
Identifier "Monitor"
VendorName "Sharp"
ModelName "Zaurus"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Wsdisplay0"
Monitor "Monitor"
DefaultDepth 16
SubSection "Display"
Depth 16
EndSubSection
EndSection

Back to the top