Browse Source

more landisk bits.

OPENBSD_4_1
drahn 18 years ago
parent
commit
35fd884534
6 changed files with 175 additions and 0 deletions
  1. +114
    -0
      src/etc/etc.landisk/MAKEDEV.md
  2. +21
    -0
      src/etc/etc.landisk/Makefile.inc
  3. +32
    -0
      src/etc/etc.landisk/disktab
  4. +1
    -0
      src/etc/etc.landisk/fbtab
  5. +0
    -0
      src/etc/etc.landisk/sysctl.conf
  6. +7
    -0
      src/etc/etc.landisk/ttys

+ 114
- 0
src/etc/etc.landisk/MAKEDEV.md View File

@ -0,0 +1,114 @@
vers(__file__,
{-$OpenBSD: MAKEDEV.md,v 1.1 2006/10/25 01:47:41 drahn Exp $-},
etc.MACHINE)dnl
dnl
dnl Copyright (c) 2001-2004 Todd T. Fries <todd@OpenBSD.org>
dnl All rights reserved.
dnl
dnl Redistribution and use in source and binary forms, with or without
dnl modification, are permitted provided that the following conditions
dnl are met:
dnl 1. Redistributions of source code must retain the above copyright
dnl notice, this list of conditions and the following disclaimer.
dnl 2. The name of the author may not be used to endorse or promote products
dnl derived from this software without specific prior written permission.
dnl
dnl THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
dnl INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
dnl AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
dnl THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
dnl EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
dnl PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
dnl OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
dnl WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
dnl OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
dnl ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
dnl
dnl
__devitem(apm, apm, Power management device)dnl
_TITLE(make)
_DEV(all)
_DEV(ramdisk)
_DEV(std)
_DEV(local)
_TITLE(dis)
_DEV(ccd, 21, 21)
_DEV(cd, 26, 26)
_DEV(ch, 27)
_DEV(raid, 71, 71)
_DEV(rd, 18, 18)
_DEV(sd, 24, 24)
_DEV(vnd, 19, 19)
_DEV(wd, 16, 16)
_TITLE(tap)
_DEV(st, 25, 25)
_TITLE(term)
dnl _DEV(com, 12)
dnl _DEV(fcom, 54)
_DEV(com, 12)
_TITLE(pty)
_DEV(ptm, 98)
_DEV(pty, 5)
_DEV(tty, 4)
_TITLE(cons)
_DEV(wscons)
_DEV(wsdisp, 60)
_DEV(wskbd, 61)
_DEV(wsmouse, 62)
_DEV(wsmux, 63)
_TITLE(usb)
_DEV(uall)
_DEV(ttyU, 68)
_DEV(ugen, 70)
_DEV(uhid, 65)
_DEV(ulpt, 66)
_DEV(urio, 67)
_DEV(usb, 64)
_DEV(uscan, 69)
_TITLE(spec)
_DEV(apm, 34)
_DEV(au, 36)
_DEV(hotplug, 37)
#_DEV(bktr, 75)
_DEV(bpf, 22)
_DEV(cry, 47)
_DEV(fdesc, 7)
#_DEV(iop, 73)
_DEV(lkm, 35)
_DEV(pci, 88)
_DEV(pf, 46)
_DEV(radio, 97)
_DEV(rnd, 40)
_DEV(tun, 33)
_DEV(uk, 28)
_DEV(ss, 29)
_DEV(systrace, 50)
_DEV(tuner, 75)
_DEV(xfs, 51)
dnl
divert(__mddivert)dnl
dnl
ramdisk)
_recurse std bpf0 wd0 wd1 sd0 tty00 rd0 wsmouse
_recurse st0 ttyC0 random wskbd0 apm
;;
_std(1, 2, 8, 3, 6)
;;
dnl
dnl *** armish specific targets
dnl
target(all, ch, 0)dnl
target(all, ss, 0, 1)dnl
target(all, xfs, 0)dnl
twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
target(all, pty, 0)dnl
target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
target(all, tun, 0, 1, 2, 3)dnl
target(all, xy, 0, 1, 2, 3)dnl
target(all, rd, 0)dnl
target(all, cd, 0, 1)dnl
target(all, sd, 0, 1, 2, 3, 4)dnl
target(all, vnd, 0, 1, 2, 3)dnl
target(all, ccd, 0, 1, 2, 3)dnl

+ 21
- 0
src/etc/etc.landisk/Makefile.inc View File

@ -0,0 +1,21 @@
# $OpenBSD: Makefile.inc,v 1.1 2006/10/25 01:47:41 drahn Exp $
.ifdef DESTDIR
snap_md: bsd bootblocks distrib
cp ${.CURDIR}/../sys/arch/landisk/compile/GENERIC/bsd \
${DESTDIR}/snapshot/bsd
bsd:
cd ${.CURDIR}/../sys/arch/landisk/conf && config GENERIC
cd ${.CURDIR}/../sys/arch/landisk/compile/GENERIC && \
${MAKE} clean && ${MAKE} depend && exec ${MAKE}
# probably will be replaced by procedure to build 'miniroot' image
bootblocks:
cp ${DESTDIR}/usr/mdec/mbr ${DESTDIR}/snapshot
cp ${DESTDIR}/usr/mdec/bootxx ${DESTDIR}/snapshot
cp ${DESTDIR}/usr/mdec/boot ${DESTDIR}/snapshot
.PHONY: bsd bootblocks
.endif # DESTDIR check

+ 32
- 0
src/etc/etc.landisk/disktab View File

@ -0,0 +1,32 @@
# $OpenBSD: disktab,v 1.1 2006/10/25 01:47:41 drahn Exp $
#
# @(#)disktab 5.5 (Berkeley) 2/27/91
#
# Disk geometry and partition layout tables.
# Key:
# ty type of disk
# ns #sectors/track
# nt #tracks/cylinder
# nc #cylinders/disk
# rm rpm, 3600 default
# se sector size, 512 default
# sf supports bad144-style bad sector forwarding
# so partition offsets in sectors
# p[a-h] partition sizes in sectors
# b[a-h] partition block sizes in bytes
# f[a-h] partition fragment sizes in bytes
#
# Leave nc=16; adjust size using: ns
rdroot|ramdiskroot|RAM-disk root FS image:\
:ty=simulated:se#512:nc#16:nt#2:ns#256:\
:ta=4.2BSD:oa#0:pa#8192:fa#512:ba#4096:\
:ob#0:pb#0:oc#0:pc#8192:
rdroot2.5M|ramdiskroot2.5M|RAM-disk root FS image:\
:ty=simulated:se#512:nc#16:nt#2:ns#160:\
:oa#0:pa#5120:ta=4.2BSD:fa#512:ba#4096:\
:ob#0:pb#0:tb=swap:\
:oc#0:pc#5120:

+ 1
- 0
src/etc/etc.landisk/fbtab View File

@ -0,0 +1 @@
/dev/tty00 0600 /dev/console

+ 0
- 0
src/etc/etc.landisk/sysctl.conf View File


+ 7
- 0
src/etc/etc.landisk/ttys View File

@ -0,0 +1,7 @@
#
# $OpenBSD: ttys,v 1.1 2006/10/25 01:47:41 drahn Exp $
#
# name getty type status comments
#
console "/usr/libexec/getty Pc" vt220 on secure
tty00 "/usr/libexec/getty std.115200" unknown off secure

Loading…
Cancel
Save