|
|

楼主 |
发表于 2005-5-25 19:38:15
|
显示全部楼层
.Bus options (PCI, PCMCIA, EISA, MCA, ISA)
[PHP] PCI support
PCI access mode (Any) --->
[ ] PCI Express support
[ ] Legacy /proc/pci interface
[ ] PCI device name database
[ ] ISA support
[ ] EISA support
[ ] Vesa Local Bus priming
[ ] Generic PCI/EISA bridge
[ ] EISA virtual root device
[ ] EISA device name database
[ ] MCA support
[ ] Legacy MCA API Support
[ ] Support For the mca entry in /proc
[ ] NatSemi SCx200 support
PCCARD (PCMCIA/CardBus) support --->
PCI Hotplug Support ---> [/php]
PCI support
PCI支持,如果使用了PCI插槽,当然必选
PCI access mode (Any)
选Any,系统将优先使用MMConfig,然后使用BIOS,最后使用Direct检测PCI设备
PCI Express support
PCI Express总线支持
Legacy /proc/pci interface
是否使用/proc/pci目录下的信息文件来描述PCI设备的信息。现在的系统多数都使用lspci工具来得到这样的信息
PCI device name database
如果你不打算使用lspci工具,就把这项和上面的一项选上。lspci和hotplug都不需要内核中的设备信息库了
ISA support
如果你没有老式的ISA设备,老的ISA槽支持,可以不选这项
EISA suppor
扩展工业总线支持
Vesa Local Bus priming
ESA总线,也是扩展工业总线的一种,已经被PCI代替,所以不用选择
Generic PCI/EISA bridge
PCI、EISA两种总线的桥
EISA virtual root device
EISA总线的虚拟根设备
EISA device name database
内核中的EISA设备信息库
MCA support
(IBM的东东) 微通道总线.IBM的台式机和笔记本上可能会有这种总线,包括它的p系列、e系列、z系列机器上都用到了这种总线
Legacy MCA API Support
.
Support For the mca entry in /proc
.
NatSemi SCx200 support
松下的一种半导体处理器的驱动,If you don't know what to do here, say N.
PCCARD (PCMCIA/CardBus) support --->
一般只有笔记本电脑上才会有PCMCIA插槽,如果你是台式机的话,可以不选这一项
PCI Hotplug Support --->
支持PCI热插拔的.
.Executable file formats (可执行文件格式)
[php] [ ] Kernel support for ELF binaries
[ ] Kernel support for a.out and ECOFF binaries
[ ] Kernel support for MISC binaries [/php]
Kernel support for ELF binaries
这个当然y,因为目前gcc2.7.0以上的都有支持ELF了,如果没有选择这一项可能会使用相当多的程序因此无法执行
Kernel support for a.out and ECOFF binaries
a.out的执行文件是比较古老的可执行码,用在比较早期的UNIX系统上.Linux最初也是使用这种码来执行程序,一直到ELF格式的可执行码出来后,有愈来俞多的程序码随着ELF格式的优点而变成了ELF的可执码.将来势必完全取代a.out格式的可执行码.但目前由于沿有许多的程序还没有取代过来,所以只好选择Y,等将来有一天,全部的程序都变成了ELF的天下时,那时再disable掉
Kernel support for MISC binaries
可以让你支援別的种类的binary执行档(如:Java、Python ... etc)?G到kernel或编成module都ok |
|