CONFIG_AGP_AMD64该项仅适用于如下AMD处理器:(1)AMD K8微架构CPU[cpu family : 15]
(2)AMD K10微架构CPU[cpu family : 16]
(3)AMD 推土机微架构CPUk即是k15架构[cpu family : 21 并且 model: 小于15
config_vesa 应该选上不然会出错
[ 21....
分类:
其他好文 时间:
2015-02-04 09:25:05
阅读次数:
435
/usr/share/initramfs-tools/scripts/init-top
#!/bin/sh -e
PREREQS="all_generic_ide blacklist"
prereqs() { echo "$PREREQS"; }
case "$1" in
prereqs)
prereqs
exit 0
;;
e...
分类:
其他好文 时间:
2015-02-03 19:34:04
阅读次数:
157
CONFIG_SYSVIPC
CONFIG_BLOCK
CONFIG_X86_PM_TIMERACPI
CONFIG_X86_ACPI_CPUFREQ
CONFIG_PCI
CONFIG_BINFMT_ELF
CONFIG_UNIX
CONFIG_DEVTMPFS
CONFIG_NETDEVICES
CONFIG_TTY
CONFIG_VT_CONSOLE
CONFIG_VG...
分类:
其他好文 时间:
2015-02-02 08:22:27
阅读次数:
121
CONFIG_DEBUG_INFO以调试方式编译内核(gcc -g).仅供内核开发者使用Debug VM
my-video.ko: 文件格式 elf32-i386
节:
Idx Name Size VMA LMA File off Algn
0 .note.gnu.build-id 00000024 0000000...
分类:
其他好文 时间:
2015-01-31 23:19:21
阅读次数:
405
看configurure字段有木有driver字样,若有内容,则显卡驱动装好了。
sudo lshw -c video
WARNING: you should run this program as super-user.
^CI (sysfs)
chenghao@chenghao-Lenovo-Product:~$ sudo lshw -c video
[sudo] passwor...
分类:
系统相关 时间:
2015-01-30 17:45:23
阅读次数:
247
initramfs-tools_0.103
下载
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
static int device_queued (struct udev *ude...
分类:
其他好文 时间:
2015-01-30 00:10:45
阅读次数:
231
定义在scripts/functions中。
# Don't do log messages here to avoid confusing graphical boots
run_scripts /scripts/init-top
在init脚本中被调用:
maybe_break modules
[ "$quiet" != "y" ] && log_begin_msg "Loadi...
分类:
其他好文 时间:
2015-01-28 21:28:59
阅读次数:
302
# Local filesystem mounting -*- shell-script -*-
pre_mountroot()
{
[ "$quiet" != "y" ] && log_begin_msg "Running /scripts/local-top"
run_scripts /scripts/local-top
[ "$qu...
分类:
其他好文 时间:
2015-01-28 14:40:04
阅读次数:
463
static int __init acpi_init(void)
{
int result;
if (acpi_disabled) {
printk(KERN_INFO PREFIX "Interpreter disabled.\n");
return -ENODEV;
}
acpi_kobj = kobjec...
分类:
其他好文 时间:
2015-01-27 23:35:26
阅读次数:
332