Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/sommerfeld_i386mp_1]: src/sys/arch/i386/conf Add missing cpu* line.
details: https://anonhg.NetBSD.org/src/rev/b1dd199bde80
branches: sommerfeld_i386mp_1
changeset: 482501:b1dd199bde80
user: sommerfeld <sommerfeld%NetBSD.org@localhost>
date: Sun Feb 24 01:05:23 2002 +0000
description:
Add missing cpu* line.
diffstat:
sys/arch/i386/conf/INSTALL_LAPTOP | 495 ++++++++++++++++++++++++++++++++++++++
1 files changed, 495 insertions(+), 0 deletions(-)
diffs (truncated from 499 to 300 lines):
diff -r 972ea6931653 -r b1dd199bde80 sys/arch/i386/conf/INSTALL_LAPTOP
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/i386/conf/INSTALL_LAPTOP Sun Feb 24 01:05:23 2002 +0000
@@ -0,0 +1,495 @@
+# $NetBSD: INSTALL_LAPTOP,v 1.21.2.2 2002/02/24 01:05:23 sommerfeld Exp $
+#
+# INSTALL - Installation kernel.
+#
+# This kernel should be derived from GENERIC with some features
+# commented out.
+#
+# This kernel does NOT support X, mice, audio devices, non-NetBSD
+# emulation.
+#
+
+include "arch/i386/conf/std.i386"
+
+# Enable the hooks used for initializing the root memory-disk.
+options MEMORY_DISK_HOOKS
+options MEMORY_DISK_IS_ROOT # force root on memory disk
+options MEMORY_DISK_SERVER=0 # no userspace memory disk support
+options MINIROOTSIZE=4096 # size of memory disk, in blocks
+#options MINIROOTSIZE=2880 # 1.44M, same as a floppy
+
+makeoptions COPTS="-Os" # generates smaller code than -O2, -O1
+
+maxusers 32 # estimated number of users
+
+# CPU support. At least one is REQUIRED.
+options I386_CPU
+options I486_CPU
+options I586_CPU
+options I686_CPU
+
+# CPU-related options.
+options MATH_EMULATE # floating point emulation
+#options VM86 # virtual 8086 emulation
+#options USER_LDT # user-settable LDT; used by WINE
+# eliminate delay no-ops in I/O; recommended on all but very old machines
+#options DUMMY_NOPS
+
+# Misc. i386-specific options
+#options XSERVER # X server support in console drivers
+
+# This option allows you to force a serial console at the specified
+# I/O address.
+#options CONSDEVNAME="\"com\"",CONADDR=0x3f8,CONSPEED=9600
+
+# The following options override the memory sizes passed in from the boot
+# block. Use them *only* if the boot block is unable to determine the correct
+# values. Note that the BIOS may *correctly* report less than 640k of base
+# memory if the extended BIOS data area is located at the top of base memory
+# (as is the case on most recent systems).
+#options REALBASEMEM=... # size of base memory
+#options REALEXTMEM=... # size of extended memory
+
+# Avoid irq 5 and 7, the most likely cause of problems on modern laptops.
+options PCIC_ISA_INTR_ALLOC_MASK=0xff5f
+
+# Standard system options
+
+#options UCONSOLE # users can use TIOCCONS (for xconsole)
+options INSECURE # disable kernel security levels
+
+options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
+#options NTP # NTP phase/frequency locked loop
+
+#options KTRACE # system call tracing via ktrace(1)
+
+#options SYSVMSG # System V-like message queues
+#options SYSVSEM # System V-like semaphores
+#options SYSVSHM # System V-like memory sharing
+#options SHMMAXPGS=1024 # 1024 pages is the default
+
+#options LKM # loadable kernel modules
+
+options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
+
+# Diagnostic/debugging support options
+#options DIAGNOSTIC # expensive kernel consistency checks
+#options DEBUG # expensive debugging checks/support
+#options KMEMSTATS # kernel memory statistics (vmstat -m)
+options DDB # in-kernel debugger
+#options DDB_ONPANIC=1 # see also sysctl(8): `ddb.onpanic'
+options DDB_HISTORY_SIZE=512 # enable history editing in DDB
+#options KGDB # remote debugger
+#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
+#makeoptions DEBUG="-g" # compile full symbol table
+
+# Compatibility options
+#options COMPAT_NOMID # compatibility with 386BSD, BSDI, NetBSD 0.8,
+#options COMPAT_09 # NetBSD 0.9,
+#options COMPAT_10 # NetBSD 1.0,
+#options COMPAT_11 # NetBSD 1.1,
+#options COMPAT_12 # NetBSD 1.2,
+options COMPAT_13 # NetBSD 1.3,
+options COMPAT_14 # NetBSD 1.4,
+#options COMPAT_43 # and 4.3BSD
+options COMPAT_386BSD_MBRPART # recognize old partition ID
+#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
+
+#options COMPAT_SVR4 # binary compatibility with SVR4
+#options COMPAT_IBCS2 # binary compatibility with SCO and ISC
+#options COMPAT_LINUX # binary compatibility with Linux
+#options COMPAT_FREEBSD # binary compatibility with FreeBSD
+
+# File systems
+file-system FFS # UFS
+file-system EXT2FS # second extended file system (linux)
+#file-system LFS # log-structured file system
+file-system MFS # memory file system
+file-system NFS # Network File System client
+file-system NTFS # Windows/NT Filesystem
+file-system CD9660 # ISO 9660 + Rock Ridge file system
+file-system MSDOSFS # MS-DOS file system
+#file-system FDESC # /dev/fd
+file-system KERNFS # /kern
+#file-system NULLFS # loopback file system
+#file-system PORTAL # portal filesystem (still experimental)
+#file-system PROCFS # /proc
+#file-system UMAPFS # NULLFS + uid and gid remapping
+#file-system UNION # union file system
+
+# File system options
+#options QUOTA # UFS quotas
+#options NFSSERVER # Network File System server
+#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
+ # immutable) behave as system flags.
+options VNODE_OP_NOINLINE # don't inline vnode op calls
+
+# Networking options
+#options GATEWAY # packet forwarding
+options INET # IP + ICMP + TCP + UDP
+options INET6 # IPv6
+#options MROUTING # IP multicast routing
+#options NS # XNS
+#options NSIP # XNS tunneling over IP
+#options ISO,TPIP # OSI
+#options EON # OSI tunneling over IP
+#options CCITT,LLC,HDLC # X.25
+#options NETATALK # AppleTalk networking protocols
+#options PPP_BSDCOMP # BSD-Compress compression support for PPP
+#options PPP_DEFLATE # Deflate compression support for PPP
+#options PPP_FILTER # Active filter support for PPP (requires bpf)
+#options PFIL_HOOKS # pfil(9) packet filter hooks
+#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
+
+# These options enable verbose messages for several subsystems.
+# Warning, these may compile large string tables into the kernel!
+#options EISAVERBOSE # verbose EISA device autoconfig messages
+#options MIIVERBOSE # verbose PHY autoconfig messages
+#options PCIVERBOSE # verbose PCI device autoconfig messages
+#options PCI_CONFIG_DUMP # verbosely dump PCI config space
+#options PCMCIAVERBOSE # verbose PCMCIA configuration messages
+#options SCSIVERBOSE # human readable SCSI error messages
+
+# Kernel root file system and dump configuration.
+config netbsd root on ? type ?
+#config netbsd root on ? type nfs
+
+#
+# Device configuration
+#
+
+mainbus0 at root
+cpu* at mainbus? apid ?
+
+#apm0 at mainbus0 # Advanced power management
+
+
+# Basic Bus Support
+
+# PCI bus support
+pci* at mainbus? bus ?
+pci* at pchb? bus ?
+pci* at ppb? bus ?
+
+# Configure PCI using BIOS information
+options PCIBIOS # PCI BIOS support
+#options PCIBIOSVERBOSE # PCI BIOS verbose info
+options PCIBIOS_ADDR_FIXUP # fixup PCI I/O addresses
+options PCIBIOS_BUS_FIXUP # fixup PCI bus numbering
+options PCIBIOS_INTR_FIXUP # fixup PCI interrupt routing
+#options PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11
+options PCIBIOS_INTR_GUESS # see pcibios(4)
+#options PCIINTR_DEBUG # super-verbose PCI interrupt fixup
+
+# PCI bridges
+pchb* at pci? dev ? function ? # PCI-Host bridges
+pcib* at pci? dev ? function ? # PCI-ISA bridges
+ppb* at pci? dev ? function ? # PCI-PCI bridges
+
+# ISA bus support
+isa0 at mainbus?
+isa0 at pcib?
+
+# PCMCIA bus support
+pcmcia* at pcic? controller ? socket ?
+pcmcia* at tcic? controller ? socket ?
+
+# ISA PCMCIA controllers
+pcic0 at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
+pcic1 at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
+pcic2 at isa? port 0x3e4 iomem 0xe0000 iosiz 0x4000
+tcic0 at isa? port 0x240 iomem 0xd0000 iosiz 0x10000
+
+# PCI PCMCIA controllers
+pcic0 at pci? dev? function ?
+
+# ISA Plug-and-Play bus support
+isapnp0 at isa?
+
+# ISA Plug-and-Play PCMCIA controllers
+pcic* at isapnp?
+
+# CardBus bridge support
+cbb* at pci? dev ? function ?
+cardslot* at cbb?
+
+# CardBus bus support
+cardbus* at cardslot?
+pcmcia* at cardslot?
+
+
+# Coprocessor Support
+
+# Math Coprocessor support
+npx0 at isa? port 0xf0 irq 13 # x86 math coprocessor
+
+
+# Console Devices
+
+# ISA console
+pc0 at isa? port 0x60 irq 1 # pccons generic PC console driver
+
+# Keyboard layout configuration for pccons
+#options FRENCH_KBD
+#options FINNISH_KBD
+#options GERMAN_KBD
+#options NORWEGIAN_KBD
+
+# wscons
+#pckbc0 at isa? # pc keyboard controller
+#pckbd* at pckbc? # PC keyboard
+# "opms" should not be enabled together with "pms" or "pmsi"
+#pms* at pckbc? # PS/2 mouse for wsmouse
+#pmsi* at pckbc? # PS/2 "Intelli"mouse for wsmouse
+#opms* at pckbc? # backwards compatible PS/2 mouse
+#vga0 at isa?
+#vga* at pci?
+#pcdisplay0 at isa? # CGA, MDA, EGA, HGA
+#wsdisplay* at vga? console ?
+#wsdisplay* at pcdisplay? console ?
+#wskbd* at pckbd? console ?
+#wsmouse* at pms?
+#wsmouse* at pmsi?
+
+#pcppi0 at isa?
+#sysbeep0 at pcppi?
+
+# Serial Devices
+
+# PCI serial interfaces
+#com* at puc? port ? # 16x50s on "universal" comm boards
+#cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards
+
+# ISA Plug-and-Play serial interfaces
+com* at isapnp? # Modems and serial boards
+
+# PCMCIA serial interfaces
+com* at pcmcia? function ? # Modems and serial cards
+
+pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards
+com* at pcmcom? slave ? # ...and the slave devices
+
+# CardBus serial interfaces
+com* at cardbus? dev ? function ? # Modems and serial cards
+
+# ISA serial interfaces
+#options COM_HAYESP # adds Hayes ESP serial board support
+com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports
+com1 at isa? port 0x2f8 irq 3
+com2 at isa? port 0x3e8 irq 5
+#com3 at isa? port 0x2e8 irq 9
+#ast0 at isa? port 0x1a0 irq 5 # AST 4-port serial cards
+#com* at ast? slave ?
+#boca0 at isa? port 0x100 irq 5 # BOCA 8-port serial cards
+#com* at boca? slave ?
+#tcom0 at isa? port 0x100 irq 7 # TC-800 8-port serial cards
+#com* at tcom? slave ?
+#rtfps0 at isa? port 0x1230 irq 10 # RT 4-port serial cards
+#com* at rtfps? slave ?
+#cy0 at isa? iomem 0xd4000 irq 12 # Cyclades serial cards
+
+
+# Parallel Printer Interfaces
+
+# ISA parallel printer interfaces
+#lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports
+#lpt1 at isa? port 0x278
Home |
Main Index |
Thread Index |
Old Index