The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/conf/LKM

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #
    2 # LKM - verification kernel for LKMs.  This is not intended to be run
    3 # on any real hardware, only to make it possible to test-link LKMs.
    4 #
    5 # $FreeBSD$
    6 #
    7 
    8 ##
    9 #   Things the kernel don't seem to be able to do without
   10 ##
   11 
   12 machine         "i386"
   13 cpu             "I386_CPU"
   14 ident           LKM
   15 maxusers        2
   16 
   17 config          kernel  root on wd0
   18 
   19 # Need either FFS or NFS
   20 options         FFS
   21 
   22 # The kernel fail to compile without ISA - it is complaining about the
   23 # missing NPX...
   24 controller      isa0
   25 # npx is mandated by config(8)
   26 device          npx0    at isa? port IO_NPX irq 13
   27 
   28 ##
   29 #  Requirements for various LKMs
   30 ##
   31 
   32 #
   33 # Options required for the ATAPI LKM
   34 #
   35 controller      wdc0    at isa? port "IO_WD1" bio irq 14
   36 options ATAPI
   37 
   38 
   39 #
   40 # Options required for if_ppp LKM
   41 #
   42 options INET
   43 options PPP_DEFLATE                     #PPP zlib/deflate/gzip support
   44 
   45 # Cascaded requirement from "INET"
   46 pseudo-device   loop                    #Network loopback device
   47 
   48 
   49 #
   50 # Options required for linux LKM
   51 #
   52 options "COMPAT_43"
   53 
   54 
   55 #
   56 # Options required for pcic LKM
   57 #
   58 controller      card0
   59 
   60 # Cascading requirement from card0 - any device that have a DATA_SET of
   61 # pccarddrv_set
   62 device          sio0    at isa? port "IO_COM1" tty irq 4
   63 
   64 
   65 #
   66 # For the screensavers
   67 #
   68 device          sc0     at isa? port IO_KBD tty irq 1
   69 
   70 
   71 #
   72 # For umapfs
   73 #
   74 options         NULLFS

Cache object: 8ba7e5fe1552fe9b773b32d2e4db9e72


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.