日本免费全黄少妇一区二区三区-高清无码一区二区三区四区-欧美中文字幕日韩在线观看-国产福利诱惑在线网站-国产中文字幕一区在线-亚洲欧美精品日韩一区-久久国产精品国产精品国产-国产精久久久久久一区二区三区-欧美亚洲国产精品久久久久

二 FreeBSD kernel 編譯大法kernel內(nèi)容編譯( 四 )


#device pcic1 at isa? irq 0 port 0x3e2 iomem 0xd4000 disable
// PCMCIA支援...針對於筆記型電腦

# Serial (COM) ports
device sio0 at isa? port IO_COM1 flags 0x10 irq 4
device sio1 at isa? port IO_COM2 irq 3
#device sio2 at isa? disable port IO_COM3 irq 5
#device sio3 at isa? disable port IO_COM4 irq 9
// COM1~COM4,預(yù)設(shè)COM3、COM4不會用到所以#掉

# Parallel port
// 平行埠
device ppc0 at isa? irq 7
// ISA-bus的平行埠介面
device ppbus # Parallel port bus (required)
// 平行埠bus支援
#device lpt # Printer
// 平行埠的印表機支援 (我沒有印表機..so # 掉)
device plip # TCP/IP over parallel
// 平行埠的網(wǎng)路介面
#device ppi # Parallel port interface device
// 平行埠的介面裝置 (我也沒有任何有關(guān)的介面..so # 掉)
#device vpo # Requires scbus and da
// 這是專門給Iomega Zip的支援 (我更沒有ZIP)
----------------------------------------------------------------------------
[第七部份]PCI 及ISA 網(wǎng)卡 設(shè)定
----------------------------------------------------------------------------
# PCI Ethernet NICs.
#device de # DEC/Intel DC21x4x (``Tulip"")
#device fxp # Intel EtherExpress PRO/100B (82557, 82558)
#device tx # SMC 9432TX (83c170 ``EPIC"")
#device vx # 3Com 3c590, 3c595 (``Vortex"")
#device wx # Intel Gigabit Ethernet Card (``Wiseman"")
// PCI的網(wǎng)路卡..選擇您的網(wǎng)卡...其馀的# 掉

# PCI Ethernet NICs that use the common MII bus controller code.
device miibus # MII bus support
#device dc # DEC/Intel 21143 and various workalikes
#device pcn # AMD Am79C79x PCI 10/100 NICs
#device rl # RealTek 8129/8139
#device sf # Adaptec AIC-6915 (``Starfire"")
#device sis # Silicon Integrated Systems SiS 900/SiS 7016
#device ste # Sundance ST201 (D-Link DFE-550TX)
#device tl # Texas Instruments ThunderLAN
device vr # VIA Rhine, Rhine II
#device wb # Winbond W89C840F
#device xl # 3Com 3c90x (``Boomerang"", ``Cyclone"")
// PCI的網(wǎng)路卡..選擇您的網(wǎng)卡...其馀的# 掉
若您的網(wǎng)卡是這第二部份的..別忘了要將第一個miibus支援加上,像我一樣 。

// 網(wǎng)卡的型號可以從dmesg中看出...否則您也可以從 LINT 中參考

# ISA Ethernet NICs.
#device ed0 at isa? port 0x280 irq 10 iomem 0xd8000
#device ex
#device ep
#device fe0 at isa? port 0x300
# WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really
# exists only as a PCMCIA device, so there is no ISA attatement needed
# and resources will always be dynamically assigned by the pccard code.
#device wi
# Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will
# work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP
# mode (the factory default). If you set the switches on your ISA
# card for a manually chosen I/O address and IRQ, you must specify
# those paremeters here.
#device an
# Xircom Ethernet
#device xe

# The probe order of these is presently determined by i386/isa/isa_compat.c.
#device ie0 at isa? port 0x300 irq 10 iomem 0xd0000
#device le0 at isa? port 0x300 irq 5 iomem 0xd0000
#device lnc0 at isa? port 0x280 irq 10 drq 0
#device cs0 at isa? port 0x300
#device sn0 at isa? port 0x300 irq 10
// ISA的網(wǎng)卡...同樣的選擇您有的...沒有的#掉 ...
同樣的..您也可以參考/sur/src/sys/i386/conf/LINT 有詳細(xì)的說明
----------------------------------------------------------------------------
[第八部份]虛擬裝置、封包過濾器、USB的裝置 設(shè)定
----------------------------------------------------------------------------
# Pseudo devices - the number indicates how many units to allocated.
pseudo-device loop # Network loopback
// 通常的loop裝置,當(dāng)您用telnet或ftp localhost它就是經(jīng)由此裝置
此為必需的 。
pseudo-device ether # Ethernet support
// 當(dāng)您有網(wǎng)路卡時才需要,它也包含基本的網(wǎng)路協(xié)定碼

推薦閱讀