diff options
author | marcel <marcel@FreeBSD.org> | 2003-11-08 23:19:13 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-11-08 23:19:13 +0000 |
commit | 1cd9ce158fbe3f8fd872eff74a1cfd939dea5515 (patch) | |
tree | 7146eac495769615af904b2db8268774df129d50 /sys/ia64 | |
parent | 187d243ab9a3e99f4c755e7c61a7c4a6e32778dd (diff) | |
download | FreeBSD-src-1cd9ce158fbe3f8fd872eff74a1cfd939dea5515.zip FreeBSD-src-1cd9ce158fbe3f8fd872eff74a1cfd939dea5515.tar.gz |
Remove the atkbd, psm, sc and vga devices. Most ia64 boxes out there
are zx1 based machines and they don't particularly like it when we
poke at them with PC legacy code. The atkbd and psm devices were
disabled in the hints file so that one could enable them on machines
that support legacy devices, but that's not really something you can
expect from a first-time installer. This still leaves syscons (sc)
and the vga device, which were enabled by default and wrecking havoc
anyway. We could disable them by default like the atkbd and psm
devices, but there's really no point in pretending we're in a better
shape that way.
Diffstat (limited to 'sys/ia64')
-rw-r--r-- | sys/ia64/conf/GENERIC | 7 | ||||
-rw-r--r-- | sys/ia64/conf/GENERIC.hints | 9 |
2 files changed, 0 insertions, 16 deletions
diff --git a/sys/ia64/conf/GENERIC b/sys/ia64/conf/GENERIC index bf2f0a4..2e33d7c 100644 --- a/sys/ia64/conf/GENERIC +++ b/sys/ia64/conf/GENERIC @@ -104,11 +104,6 @@ device ulpt # Printer device umass # Disks/Mass storage (need scbus & da) device ums # Mouse -# atkbdc0 controls both the keyboard and the PS/2 mouse -device atkbdc # AT keyboard controller -device atkbd # AT keyboard -device psm # PS/2 mouse - # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device em # Intel PRO/1000 adapter Gigabit Ethernet Card @@ -143,10 +138,8 @@ device md # Memory "disks" device pty # Pseudo-ttys (telnet etc) device puc # Multi I/O cards and multi-channel UARTs device random # Entropy device -device sc # System console device tun # Packet tunnel. device uart # Serial port (UART) -device vga # VGA video card driver # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! diff --git a/sys/ia64/conf/GENERIC.hints b/sys/ia64/conf/GENERIC.hints index 78aeb6a..9a0f91e 100644 --- a/sys/ia64/conf/GENERIC.hints +++ b/sys/ia64/conf/GENERIC.hints @@ -1,13 +1,4 @@ # $FreeBSD$ -hint.atkbdc.0.at="isa" -hint.atkbdc.0.disabled="1" -hint.atkbdc.0.port="0x060" -hint.atkbd.0.at="atkbdc" -hint.atkbd.0.disabled="1" -hint.atkbd.0.irq="1" -hint.psm.0.at="atkbdc" -hint.psm.0.disabled="1" -hint.psm.0.irq="12" hint.uart.0.baud="115200" hint.uart.0.flags="0x10" hint.uart.0.port="0x3f8" |