LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1879|回复: 14

AMD64 X2上装的Gentoo系统,时钟跑得飞快的问题![解决]

[复制链接]
发表于 2006-2-6 17:47:48 | 显示全部楼层 |阅读模式
在我新装的64位Gentoo系统中,现实时间大概0.5秒Linux系统中的时钟就要走1秒,搞得我emerge时常常有警告某某文件的修改时间是在未来。

我的CPU是AMD X2 3800+,启动的时候可以看到两只企鹅,难道是每个CPU核心1秒钟加1,所以系统的时间就相当于实际一秒钟走了2秒?

系统:SMP  x86_64 AMD Athlon(tm) 64 X2 Dual Core Processor 3800+
         2.6.15-gentoo-r3
         ATI 芯片组

凑合解决办法:
      BIOS里Power管理项目里关掉了APIC,grub.conf中给内核加上了noapic参数。

以下转贴解决方法:

http://forums.gentoo.org/viewtop ... ght-clock+fast.html

Synopsis
Your new ACPI-only laptop's clock rate is exactly or almost exactly double that of realtime. This differs from possible clock skew issues as it is not easily correctible using NTP.

Effected Systems
The following systems are known to be effected by this problem:

    * HP Pavilion zv6000-Series Notebook Computers
    * Compaq Presario r4000-Series Notebook Computers

There is a possibility of future HP / Compaq laptops and other computers using a combination of ATI chipsets and AMD Athlon™ 64 processors also having this issue.

Defining the Problem / Symptoms
Symptoms of this problem include, and may not be limited to:

    * Running 'while true; do sleep 1; date; done' displays a second passing every half-second.
    * Animations in Xorg (KDE, Gnome, whatever) run exceptionally fast.
    * An insane keyboard repeat rate that may, in fact, make it nearly impossible to type anything.
    * Elevated system utilization (as much as 50% constant useage reported by some applications).
    * Warnings along the lines of 'clock skew detected: build may be incomplete' when compiling the kernel or applications from source.
    * Cache results will be quirky, as eventually the clock is so far in the future that no server in the world can report times in your future. Similarily, rsync results will vary.
    * Worst case, you are excessively late to meetings; or, best case, excessively early.

The Solution (32-Bit)

The following have been known to work, but are currently untested by myself on the latest kernels:

    * Apply the following patch (posted by Christopher Allen Wing) and add the "timerhack" option to your kernel command line. (In GRUB add it to the end of the "kernel=" line, in LILO add it to the "append=" line.) Malone pointed me to the original thread on LKML. Thanks, malone!
      Code:

  1.       --- linux-2.6.11.6/arch/x86_64/kernel/io_apic.c.orig   2005-03-25 22:28:21.000000000 -0500
  2.       +++ linux-2.6.11.6/arch/x86_64/kernel/io_apic.c   2005-04-06 17:56:46.486511088 -0400
  3.       @@ -1564,6 +1564,8 @@
  4.         * is so screwy.  Thanks to Brian Perkins for testing/hacking this beast
  5.         * fanatically on his truly buggy board.
  6.         */
  7.       +static int timer_hack = 0;
  8.       +
  9.        static inline void check_timer(void)
  10.        {
  11.           int pin1, pin2;
  12.       @@ -1592,6 +1594,10 @@

  13.           apic_printk(APIC_VERBOSE,KERN_INFO "..TIMER: vector=0x%02X pin1=%d pin2=%d\n", vector, pin1, pin2);

  14.       +    if (timer_hack) {
  15.       +   /* for some reason this stops duplicate timer IRQ? */
  16.       +   clear_IO_APIC_pin(0, pin1);
  17.       +    } else {
  18.           if (pin1 != -1) {
  19.              /*
  20.               * Ok, does IRQ0 through the IOAPIC work?
  21.       @@ -1633,6 +1639,7 @@
  22.              clear_IO_APIC_pin(0, pin2);
  23.           }
  24.           printk(" failed.\n");
  25.       +    }

  26.           if (nmi_watchdog) {
  27.              printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
  28.       @@ -1669,6 +1676,14 @@
  29.           panic("IO-APIC + timer doesn't work! Try using the 'noapic' kernel parameter\n");
  30.        }

  31.       +static int __init timerhack(char *str)
  32.       +{
  33.       +   timer_hack = 1;
  34.       +   return 1;
  35.       +}
  36.       +__setup("timerhack", timerhack);
  37.       +
  38.       +
  39.        /*
  40.         *
  41.         * IRQ's that are handled by the PIC in the MPS IOAPIC case.
复制代码

    * Or, apply this second patch, also posted by Christopher. It is a little less hackish than the first, but accomplishes the same thing.
      Code:

  1.       --- arch/x86_64/kernel/io_apic.c.orig   2005-03-25 22:28:21.000000000 -0500
  2.       +++ arch/x86_64/kernel/io_apic.c   2005-04-07 13:13:58.813193024 -0400
  3.       @@ -1564,6 +1564,8 @@
  4.         * is so screwy.  Thanks to Brian Perkins for testing/hacking this beast
  5.         * fanatically on his truly buggy board.
  6.         */
  7.       +static int timer_hack = 0;
  8.       +
  9.        static inline void check_timer(void)
  10.        {
  11.           int pin1, pin2;
  12.       @@ -1597,7 +1599,7 @@
  13.               * Ok, does IRQ0 through the IOAPIC work?
  14.               */
  15.              unmask_IO_APIC_irq(0);
  16.       -      if (timer_irq_works()) {
  17.       +      if ((!timer_hack) && timer_irq_works()) {
  18.                 nmi_watchdog_default();
  19.                 if (nmi_watchdog == NMI_IO_APIC) {
  20.                    disable_8259A_irq(0);
  21.       @@ -1669,6 +1671,14 @@
  22.           panic("IO-APIC + timer doesn't work! Try using the 'noapic' kernel parameter\n");
  23.        }

  24.       +static int __init timerhack(char *str)
  25.       +{
  26.       +   timer_hack = 1;
  27.       +   return 1;
  28.       +}
  29.       +__setup("timerhack", timerhack);
  30.       +
  31.       +
  32.        /*
  33.         *
  34.         * IRQ's that are handled by the PIC in the MPS IOAPIC case.
复制代码


The Solution (64-Bit)
There are many proposed solutions. A few of the more successful ones include:

   1. Upgrading to the latest 2.6 kernel and keeping the support applications (like pci-utils) updated. Remember - new features may have been added such as new drivers, an updated PCI-ID listing, etc.

   2. Trying various combinations of the HPET, HPET_TIMER, HPET_EMULATE_RTC, X86_MCE, X86_PM_TIMER, and RTC options in the kernel.

   3. Passing various kernel options at boot. These include:

          * no_timer_check
          * pci=biosirq
          * pci=noacpi
          * pci=irqroute
          * clock=pmtmr
          * notsc
          * noapic
          * noapictimer (previousally used by 13Homer)

Passing the no_timer_check option was all that was required to solve it for me!
发表于 2006-2-7 05:33:59 | 显示全部楼层
应该是内核中选择的有问题。不知道你怎么选的。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-2-7 09:25:30 | 显示全部楼层
可能是那些选项呢?我的config文件:
  1. #
  2. # Automatically generated make config: don't edit
  3. # Linux kernel version: 2.6.15-gentoo-r3
  4. # Mon Feb  6 22:31:34 2006
  5. #
  6. CONFIG_X86_64=y
  7. CONFIG_64BIT=y
  8. CONFIG_X86=y
  9. CONFIG_SEMAPHORE_SLEEPERS=y
  10. CONFIG_MMU=y
  11. CONFIG_RWSEM_GENERIC_SPINLOCK=y
  12. CONFIG_GENERIC_CALIBRATE_DELAY=y
  13. CONFIG_X86_CMPXCHG=y
  14. CONFIG_EARLY_PRINTK=y
  15. CONFIG_GENERIC_ISA_DMA=y
  16. CONFIG_GENERIC_IOMAP=y
  17. CONFIG_ARCH_MAY_HAVE_PC_FDC=y
  18. #
  19. # Code maturity level options
  20. #
  21. CONFIG_EXPERIMENTAL=y
  22. CONFIG_CLEAN_COMPILE=y
  23. CONFIG_LOCK_KERNEL=y
  24. CONFIG_INIT_ENV_ARG_LIMIT=32
  25. #
  26. # General setup
  27. #
  28. CONFIG_LOCALVERSION=""
  29. CONFIG_LOCALVERSION_AUTO=y
  30. CONFIG_SWAP=y
  31. CONFIG_SYSVIPC=y
  32. CONFIG_POSIX_MQUEUE=y
  33. # CONFIG_BSD_PROCESS_ACCT is not set
  34. CONFIG_SYSCTL=y
  35. # CONFIG_AUDIT is not set
  36. CONFIG_HOTPLUG=y
  37. CONFIG_KOBJECT_UEVENT=y
  38. CONFIG_IKCONFIG=y
  39. CONFIG_IKCONFIG_PROC=y
  40. # CONFIG_CPUSETS is not set
  41. CONFIG_INITRAMFS_SOURCE=""
  42. CONFIG_CC_OPTIMIZE_FOR_SIZE=y
  43. # CONFIG_EMBEDDED is not set
  44. CONFIG_KALLSYMS=y
  45. CONFIG_KALLSYMS_ALL=y
  46. # CONFIG_KALLSYMS_EXTRA_PASS is not set
  47. CONFIG_PRINTK=y
  48. CONFIG_BUG=y
  49. CONFIG_BASE_FULL=y
  50. CONFIG_FUTEX=y
  51. CONFIG_EPOLL=y
  52. CONFIG_SHMEM=y
  53. CONFIG_CC_ALIGN_FUNCTIONS=0
  54. CONFIG_CC_ALIGN_LABELS=0
  55. CONFIG_CC_ALIGN_LOOPS=0
  56. CONFIG_CC_ALIGN_JUMPS=0
  57. # CONFIG_TINY_SHMEM is not set
  58. CONFIG_BASE_SMALL=0
  59. #
  60. # Loadable module support
  61. #
  62. CONFIG_MODULES=y
  63. CONFIG_MODULE_UNLOAD=y
  64. CONFIG_MODULE_FORCE_UNLOAD=y
  65. CONFIG_OBSOLETE_MODPARM=y
  66. # CONFIG_MODVERSIONS is not set
  67. # CONFIG_MODULE_SRCVERSION_ALL is not set
  68. CONFIG_KMOD=y
  69. CONFIG_STOP_MACHINE=y
  70. #
  71. # Block layer
  72. #
  73. CONFIG_LBD=y
  74. #
  75. # IO Schedulers
  76. #
  77. CONFIG_IOSCHED_NOOP=y
  78. # CONFIG_IOSCHED_AS is not set
  79. CONFIG_IOSCHED_DEADLINE=y
  80. CONFIG_IOSCHED_CFQ=y
  81. # CONFIG_DEFAULT_AS is not set
  82. CONFIG_DEFAULT_DEADLINE=y
  83. # CONFIG_DEFAULT_CFQ is not set
  84. # CONFIG_DEFAULT_NOOP is not set
  85. CONFIG_DEFAULT_IOSCHED="deadline"
  86. #
  87. # Processor type and features
  88. #
  89. CONFIG_MK8=y
  90. # CONFIG_MPSC is not set
  91. # CONFIG_GENERIC_CPU is not set
  92. CONFIG_X86_L1_CACHE_BYTES=64
  93. CONFIG_X86_L1_CACHE_SHIFT=6
  94. CONFIG_X86_TSC=y
  95. CONFIG_X86_GOOD_APIC=y
  96. # CONFIG_MICROCODE is not set
  97. CONFIG_X86_MSR=y
  98. CONFIG_X86_CPUID=y
  99. CONFIG_X86_IO_APIC=y
  100. CONFIG_X86_LOCAL_APIC=y
  101. CONFIG_MTRR=y
  102. CONFIG_SMP=y
  103. CONFIG_SCHED_SMT=y
  104. # CONFIG_PREEMPT_NONE is not set
  105. # CONFIG_PREEMPT_VOLUNTARY is not set
  106. CONFIG_PREEMPT=y
  107. CONFIG_PREEMPT_BKL=y
  108. CONFIG_NUMA=y
  109. CONFIG_K8_NUMA=y
  110. CONFIG_X86_64_ACPI_NUMA=y
  111. # CONFIG_NUMA_EMU is not set
  112. CONFIG_ARCH_DISCONTIGMEM_ENABLE=y
  113. CONFIG_ARCH_DISCONTIGMEM_DEFAULT=y
  114. CONFIG_ARCH_SPARSEMEM_ENABLE=y
  115. CONFIG_SELECT_MEMORY_MODEL=y
  116. # CONFIG_FLATMEM_MANUAL is not set
  117. CONFIG_DISCONTIGMEM_MANUAL=y
  118. # CONFIG_SPARSEMEM_MANUAL is not set
  119. CONFIG_DISCONTIGMEM=y
  120. CONFIG_FLAT_NODE_MEM_MAP=y
  121. CONFIG_NEED_MULTIPLE_NODES=y
  122. # CONFIG_SPARSEMEM_STATIC is not set
  123. CONFIG_SPLIT_PTLOCK_CPUS=4
  124. CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y
  125. CONFIG_NR_CPUS=32
  126. CONFIG_HOTPLUG_CPU=y
  127. CONFIG_HPET_TIMER=y
  128. CONFIG_X86_PM_TIMER=y
  129. CONFIG_HPET_EMULATE_RTC=y
  130. CONFIG_GART_IOMMU=y
  131. CONFIG_SWIOTLB=y
  132. CONFIG_X86_MCE=y
  133. CONFIG_X86_MCE_INTEL=y
  134. CONFIG_X86_MCE_AMD=y
  135. CONFIG_PHYSICAL_START=0x100000
  136. # CONFIG_KEXEC is not set
  137. CONFIG_SECCOMP=y
  138. # CONFIG_HZ_100 is not set
  139. CONFIG_HZ_250=y
  140. # CONFIG_HZ_1000 is not set
  141. CONFIG_HZ=250
  142. CONFIG_GENERIC_HARDIRQS=y
  143. CONFIG_GENERIC_IRQ_PROBE=y
  144. CONFIG_ISA_DMA_API=y
  145. CONFIG_GENERIC_PENDING_IRQ=y
  146. #
  147. # Power management options
  148. #
  149. CONFIG_PM=y
  150. CONFIG_PM_LEGACY=y
  151. # CONFIG_PM_DEBUG is not set
  152. CONFIG_SOFTWARE_SUSPEND=y
  153. CONFIG_PM_STD_PARTITION=""
  154. CONFIG_SUSPEND_SMP=y
  155. #
  156. # ACPI (Advanced Configuration and Power Interface) Support
  157. #
  158. CONFIG_ACPI=y
  159. CONFIG_ACPI_SLEEP=y
  160. CONFIG_ACPI_SLEEP_PROC_FS=y
  161. CONFIG_ACPI_SLEEP_PROC_SLEEP=y
  162. CONFIG_ACPI_AC=y
  163. CONFIG_ACPI_BATTERY=y
  164. CONFIG_ACPI_BUTTON=y
  165. # CONFIG_ACPI_VIDEO is not set
  166. CONFIG_ACPI_HOTKEY=m
  167. CONFIG_ACPI_FAN=y
  168. CONFIG_ACPI_PROCESSOR=y
  169. CONFIG_ACPI_HOTPLUG_CPU=y
  170. CONFIG_ACPI_THERMAL=y
  171. CONFIG_ACPI_NUMA=y
  172. # CONFIG_ACPI_ASUS is not set
  173. # CONFIG_ACPI_IBM is not set
  174. CONFIG_ACPI_TOSHIBA=y
  175. CONFIG_ACPI_BLACKLIST_YEAR=2001
  176. # CONFIG_ACPI_DEBUG is not set
  177. CONFIG_ACPI_EC=y
  178. CONFIG_ACPI_POWER=y
  179. CONFIG_ACPI_SYSTEM=y
  180. CONFIG_ACPI_CONTAINER=y
  181. #
  182. # CPU Frequency scaling
  183. #
  184. CONFIG_CPU_FREQ=y
  185. CONFIG_CPU_FREQ_TABLE=y
  186. # CONFIG_CPU_FREQ_DEBUG is not set
  187. CONFIG_CPU_FREQ_STAT=y
  188. # CONFIG_CPU_FREQ_STAT_DETAILS is not set
  189. CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
  190. # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
  191. CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
  192. # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
  193. CONFIG_CPU_FREQ_GOV_USERSPACE=y
  194. CONFIG_CPU_FREQ_GOV_ONDEMAND=y
  195. # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
  196. #
  197. # CPUFreq processor drivers
  198. #
  199. CONFIG_X86_POWERNOW_K8=y
  200. CONFIG_X86_POWERNOW_K8_ACPI=y
  201. # CONFIG_X86_SPEEDSTEP_CENTRINO is not set
  202. CONFIG_X86_ACPI_CPUFREQ=y
  203. #
  204. # shared options
  205. #
  206. CONFIG_X86_ACPI_CPUFREQ_PROC_INTF=y
  207. # CONFIG_X86_SPEEDSTEP_LIB is not set
  208. #
  209. # Bus options (PCI etc.)
  210. #
  211. CONFIG_PCI=y
  212. CONFIG_PCI_DIRECT=y
  213. CONFIG_PCI_MMCONFIG=y
  214. CONFIG_UNORDERED_IO=y
  215. CONFIG_PCIEPORTBUS=y
  216. CONFIG_PCI_MSI=y
  217. CONFIG_PCI_LEGACY_PROC=y
  218. # CONFIG_PCI_DEBUG is not set
  219. #
  220. # PCCARD (PCMCIA/CardBus) support
  221. #
  222. CONFIG_PCCARD=y
  223. # CONFIG_PCMCIA_DEBUG is not set
  224. CONFIG_PCMCIA=y
  225. CONFIG_PCMCIA_LOAD_CIS=y
  226. CONFIG_PCMCIA_IOCTL=y
  227. CONFIG_CARDBUS=y
  228. #
  229. # PC-card bridges
  230. #
  231. # CONFIG_YENTA is not set
  232. # CONFIG_PD6729 is not set
  233. # CONFIG_I82092 is not set
  234. #
  235. # PCI Hotplug Support
  236. #
  237. # CONFIG_HOTPLUG_PCI is not set
  238. #
  239. # Executable file formats / Emulations
  240. #
  241. CONFIG_BINFMT_ELF=y
  242. # CONFIG_BINFMT_MISC is not set
  243. CONFIG_IA32_EMULATION=y
  244. CONFIG_IA32_AOUT=y
  245. CONFIG_COMPAT=y
  246. CONFIG_SYSVIPC_COMPAT=y
  247. CONFIG_UID16=y
  248. #
  249. # Networking
  250. #
  251. CONFIG_NET=y
  252. #
  253. # Networking options
  254. #
  255. CONFIG_PACKET=y
  256. # CONFIG_PACKET_MMAP is not set
  257. CONFIG_UNIX=y
  258. # CONFIG_NET_KEY is not set
  259. CONFIG_INET=y
  260. CONFIG_IP_MULTICAST=y
  261. # CONFIG_IP_ADVANCED_ROUTER is not set
  262. CONFIG_IP_FIB_HASH=y
  263. CONFIG_IP_PNP=y
  264. CONFIG_IP_PNP_DHCP=y
  265. # CONFIG_IP_PNP_BOOTP is not set
  266. # CONFIG_IP_PNP_RARP is not set
  267. # CONFIG_NET_IPIP is not set
  268. # CONFIG_NET_IPGRE is not set
  269. # CONFIG_IP_MROUTE is not set
  270. # CONFIG_ARPD is not set
  271. # CONFIG_SYN_COOKIES is not set
  272. # CONFIG_INET_AH is not set
  273. # CONFIG_INET_ESP is not set
  274. # CONFIG_INET_IPCOMP is not set
  275. # CONFIG_INET_TUNNEL is not set
  276. CONFIG_INET_DIAG=y
  277. CONFIG_INET_TCP_DIAG=y
  278. # CONFIG_TCP_CONG_ADVANCED is not set
  279. CONFIG_TCP_CONG_BIC=y
  280. CONFIG_IPV6=y
  281. # CONFIG_IPV6_PRIVACY is not set
  282. # CONFIG_INET6_AH is not set
  283. # CONFIG_INET6_ESP is not set
  284. # CONFIG_INET6_IPCOMP is not set
  285. # CONFIG_INET6_TUNNEL is not set
  286. # CONFIG_IPV6_TUNNEL is not set
  287. # CONFIG_NETFILTER is not set
  288. #
  289. # DCCP Configuration (EXPERIMENTAL)
  290. #
  291. # CONFIG_IP_DCCP is not set
  292. #
  293. # SCTP Configuration (EXPERIMENTAL)
  294. #
  295. # CONFIG_IP_SCTP is not set
  296. # CONFIG_ATM is not set
  297. # CONFIG_BRIDGE is not set
  298. # CONFIG_VLAN_8021Q is not set
  299. # CONFIG_DECNET is not set
  300. # CONFIG_LLC2 is not set
  301. # CONFIG_IPX is not set
  302. # CONFIG_ATALK is not set
  303. # CONFIG_X25 is not set
  304. # CONFIG_LAPB is not set
  305. # CONFIG_NET_DIVERT is not set
  306. # CONFIG_ECONET is not set
  307. # CONFIG_WAN_ROUTER is not set
  308. #
  309. # QoS and/or fair queueing
  310. #
  311. # CONFIG_NET_SCHED is not set
  312. #
  313. # Network testing
  314. #
  315. # CONFIG_NET_PKTGEN is not set
  316. # CONFIG_HAMRADIO is not set
  317. # CONFIG_IRDA is not set
  318. # CONFIG_BT is not set
  319. # CONFIG_IEEE80211 is not set
  320. #
  321. # Device Drivers
  322. #
  323. #
  324. # Generic Driver Options
  325. #
  326. CONFIG_STANDALONE=y
  327. CONFIG_PREVENT_FIRMWARE_BUILD=y
  328. CONFIG_FW_LOADER=y
  329. # CONFIG_DEBUG_DRIVER is not set
  330. #
  331. # Connector - unified userspace <-> kernelspace linker
  332. #
  333. # CONFIG_CONNECTOR is not set
  334. #
  335. # Memory Technology Devices (MTD)
  336. #
  337. # CONFIG_MTD is not set
  338. #
  339. # Parallel port support
  340. #
  341. # CONFIG_PARPORT is not set
  342. #
  343. # Plug and Play support
  344. #
  345. # CONFIG_PNP is not set
  346. #
  347. # Block devices
  348. #
  349. CONFIG_BLK_DEV_FD=y
  350. # CONFIG_BLK_CPQ_DA is not set
  351. # CONFIG_BLK_CPQ_CISS_DA is not set
  352. # CONFIG_BLK_DEV_DAC960 is not set
  353. # CONFIG_BLK_DEV_UMEM is not set
  354. # CONFIG_BLK_DEV_COW_COMMON is not set
  355. CONFIG_BLK_DEV_LOOP=y
  356. # CONFIG_BLK_DEV_CRYPTOLOOP is not set
  357. # CONFIG_BLK_DEV_NBD is not set
  358. # CONFIG_BLK_DEV_SX8 is not set
  359. # CONFIG_BLK_DEV_UB is not set
  360. CONFIG_BLK_DEV_RAM=y
  361. CONFIG_BLK_DEV_RAM_COUNT=16
  362. CONFIG_BLK_DEV_RAM_SIZE=4096
  363. CONFIG_BLK_DEV_INITRD=y
  364. # CONFIG_CDROM_PKTCDVD is not set
  365. # CONFIG_ATA_OVER_ETH is not set
  366. #
  367. # ATA/ATAPI/MFM/RLL support
  368. #
  369. CONFIG_IDE=y
  370. CONFIG_BLK_DEV_IDE=y
  371. #
  372. # Please see Documentation/ide.txt for help/info on IDE drives
  373. #
  374. # CONFIG_BLK_DEV_IDE_SATA is not set
  375. # CONFIG_BLK_DEV_HD_IDE is not set
  376. CONFIG_BLK_DEV_IDEDISK=y
  377. CONFIG_IDEDISK_MULTI_MODE=y
  378. # CONFIG_BLK_DEV_IDECS is not set
  379. CONFIG_BLK_DEV_IDECD=y
  380. # CONFIG_BLK_DEV_IDETAPE is not set
  381. # CONFIG_BLK_DEV_IDEFLOPPY is not set
  382. # CONFIG_BLK_DEV_IDESCSI is not set
  383. # CONFIG_IDE_TASK_IOCTL is not set
  384. #
  385. # IDE chipset support/bugfixes
  386. #
  387. CONFIG_IDE_GENERIC=y
  388. # CONFIG_BLK_DEV_CMD640 is not set
  389. CONFIG_BLK_DEV_IDEPCI=y
  390. # CONFIG_IDEPCI_SHARE_IRQ is not set
  391. # CONFIG_BLK_DEV_OFFBOARD is not set
  392. # CONFIG_BLK_DEV_GENERIC is not set
  393. # CONFIG_BLK_DEV_OPTI621 is not set
  394. # CONFIG_BLK_DEV_RZ1000 is not set
  395. CONFIG_BLK_DEV_IDEDMA_PCI=y
  396. # CONFIG_BLK_DEV_IDEDMA_FORCED is not set
  397. CONFIG_IDEDMA_PCI_AUTO=y
  398. # CONFIG_IDEDMA_ONLYDISK is not set
  399. # CONFIG_BLK_DEV_AEC62XX is not set
  400. # CONFIG_BLK_DEV_ALI15X3 is not set
  401. CONFIG_BLK_DEV_AMD74XX=y
  402. # CONFIG_BLK_DEV_ATIIXP is not set
  403. # CONFIG_BLK_DEV_CMD64X is not set
  404. # CONFIG_BLK_DEV_TRIFLEX is not set
  405. # CONFIG_BLK_DEV_CY82C693 is not set
  406. # CONFIG_BLK_DEV_CS5520 is not set
  407. # CONFIG_BLK_DEV_CS5530 is not set
  408. # CONFIG_BLK_DEV_HPT34X is not set
  409. # CONFIG_BLK_DEV_HPT366 is not set
  410. # CONFIG_BLK_DEV_SC1200 is not set
  411. CONFIG_BLK_DEV_PIIX=y
  412. # CONFIG_BLK_DEV_IT821X is not set
  413. # CONFIG_BLK_DEV_NS87415 is not set
  414. # CONFIG_BLK_DEV_PDC202XX_OLD is not set
  415. CONFIG_BLK_DEV_PDC202XX_NEW=y
  416. # CONFIG_PDC202XX_FORCE is not set
  417. # CONFIG_BLK_DEV_SVWKS is not set
  418. # CONFIG_BLK_DEV_SIIMAGE is not set
  419. # CONFIG_BLK_DEV_SIS5513 is not set
  420. # CONFIG_BLK_DEV_SLC90E66 is not set
  421. # CONFIG_BLK_DEV_TRM290 is not set
  422. # CONFIG_BLK_DEV_VIA82CXXX is not set
  423. # CONFIG_IDE_ARM is not set
  424. CONFIG_BLK_DEV_IDEDMA=y
  425. # CONFIG_IDEDMA_IVB is not set
  426. CONFIG_IDEDMA_AUTO=y
  427. # CONFIG_BLK_DEV_HD is not set
  428. #
  429. # SCSI device support
  430. #
  431. # CONFIG_RAID_ATTRS is not set
  432. CONFIG_SCSI=y
  433. # CONFIG_SCSI_PROC_FS is not set
  434. #
  435. # SCSI support type (disk, tape, CD-ROM)
  436. #
  437. CONFIG_BLK_DEV_SD=y
  438. # CONFIG_CHR_DEV_ST is not set
  439. # CONFIG_CHR_DEV_OSST is not set
  440. CONFIG_BLK_DEV_SR=m
  441. # CONFIG_BLK_DEV_SR_VENDOR is not set
  442. CONFIG_CHR_DEV_SG=y
  443. # CONFIG_CHR_DEV_SCH is not set
  444. #
  445. # Some SCSI devices (e.g. CD jukebox) support multiple LUNs
  446. #
  447. # CONFIG_SCSI_MULTI_LUN is not set
  448. # CONFIG_SCSI_CONSTANTS is not set
  449. # CONFIG_SCSI_LOGGING is not set
  450. #
  451. # SCSI Transport Attributes
  452. #
  453. CONFIG_SCSI_SPI_ATTRS=y
  454. # CONFIG_SCSI_FC_ATTRS is not set
  455. # CONFIG_SCSI_ISCSI_ATTRS is not set
  456. # CONFIG_SCSI_SAS_ATTRS is not set
  457. #
  458. # SCSI low-level drivers
  459. #
  460. # CONFIG_ISCSI_TCP is not set
  461. # CONFIG_BLK_DEV_3W_XXXX_RAID is not set
  462. # CONFIG_SCSI_3W_9XXX is not set
  463. # CONFIG_SCSI_ACARD is not set
  464. # CONFIG_SCSI_AACRAID is not set
  465. # CONFIG_SCSI_AIC7XXX is not set
  466. # CONFIG_SCSI_AIC7XXX_OLD is not set
  467. CONFIG_SCSI_AIC79XX=y
  468. CONFIG_AIC79XX_CMDS_PER_DEVICE=32
  469. CONFIG_AIC79XX_RESET_DELAY_MS=4000
  470. # CONFIG_AIC79XX_ENABLE_RD_STRM is not set
  471. # CONFIG_AIC79XX_DEBUG_ENABLE is not set
  472. CONFIG_AIC79XX_DEBUG_MASK=0
  473. # CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
  474. # CONFIG_MEGARAID_NEWGEN is not set
  475. # CONFIG_MEGARAID_LEGACY is not set
  476. # CONFIG_MEGARAID_SAS is not set
  477. CONFIG_SCSI_SATA=y
  478. CONFIG_SCSI_SATA_AHCI=y
  479. CONFIG_SCSI_SATA_SVW=y
  480. CONFIG_SCSI_ATA_PIIX=y
  481. CONFIG_SCSI_SATA_MV=y
  482. CONFIG_SCSI_SATA_NV=y
  483. CONFIG_SCSI_PDC_ADMA=y
  484. CONFIG_SCSI_SATA_QSTOR=y
  485. CONFIG_SCSI_SATA_PROMISE=y
  486. CONFIG_SCSI_SATA_SX4=y
  487. CONFIG_SCSI_SATA_SIL=y
  488. CONFIG_SCSI_SATA_SIL24=y
  489. CONFIG_SCSI_SATA_SIS=y
  490. CONFIG_SCSI_SATA_ULI=y
  491. CONFIG_SCSI_SATA_VIA=y
  492. CONFIG_SCSI_SATA_VITESSE=y
  493. CONFIG_SCSI_SATA_INTEL_COMBINED=y
  494. # CONFIG_SCSI_BUSLOGIC is not set
  495. # CONFIG_SCSI_DMX3191D is not set
  496. # CONFIG_SCSI_EATA is not set
  497. # CONFIG_SCSI_FUTURE_DOMAIN is not set
  498. # CONFIG_SCSI_GDTH is not set
  499. # CONFIG_SCSI_IPS is not set
  500. # CONFIG_SCSI_INITIO is not set
  501. # CONFIG_SCSI_INIA100 is not set
  502. # CONFIG_SCSI_SYM53C8XX_2 is not set
  503. # CONFIG_SCSI_IPR is not set
  504. # CONFIG_SCSI_QLOGIC_FC is not set
  505. # CONFIG_SCSI_QLOGIC_1280 is not set
  506. CONFIG_SCSI_QLA2XXX=y
  507. # CONFIG_SCSI_QLA21XX is not set
  508. # CONFIG_SCSI_QLA22XX is not set
  509. # CONFIG_SCSI_QLA2300 is not set
  510. # CONFIG_SCSI_QLA2322 is not set
  511. # CONFIG_SCSI_QLA6312 is not set
  512. # CONFIG_SCSI_QLA24XX is not set
  513. # CONFIG_SCSI_LPFC is not set
  514. # CONFIG_SCSI_DC395x is not set
  515. # CONFIG_SCSI_DC390T is not set
  516. # CONFIG_SCSI_DEBUG is not set
  517. #
  518. # PCMCIA SCSI adapter support
  519. #
  520. # CONFIG_PCMCIA_FDOMAIN is not set
  521. # CONFIG_PCMCIA_QLOGIC is not set
  522. # CONFIG_PCMCIA_SYM53C500 is not set
  523. #
  524. # Multi-device support (RAID and LVM)
  525. #
  526. CONFIG_MD=y
  527. # CONFIG_BLK_DEV_MD is not set
  528. CONFIG_BLK_DEV_DM=y
  529. # CONFIG_DM_CRYPT is not set
  530. # CONFIG_DM_SNAPSHOT is not set
  531. # CONFIG_DM_MIRROR is not set
  532. # CONFIG_DM_ZERO is not set
  533. # CONFIG_DM_MULTIPATH is not set
  534. # CONFIG_BLK_DEV_DM_BBR is not set
  535. #
  536. # Fusion MPT device support
  537. #
  538. CONFIG_FUSION=y
  539. CONFIG_FUSION_SPI=y
  540. # CONFIG_FUSION_FC is not set
  541. # CONFIG_FUSION_SAS is not set
  542. CONFIG_FUSION_MAX_SGE=128
  543. # CONFIG_FUSION_CTL is not set
  544. #
  545. # IEEE 1394 (FireWire) support
  546. #
  547. # CONFIG_IEEE1394 is not set
  548. #
  549. # I2O device support
  550. #
  551. # CONFIG_I2O is not set
  552. #
  553. # Network device support
  554. #
  555. CONFIG_NETDEVICES=y
  556. # CONFIG_DUMMY is not set
  557. # CONFIG_BONDING is not set
  558. # CONFIG_EQUALIZER is not set
  559. CONFIG_TUN=y
  560. #
  561. # ARCnet devices
  562. #
  563. # CONFIG_ARCNET is not set
  564. #
  565. # PHY device support
  566. #
  567. # CONFIG_PHYLIB is not set
  568. #
  569. # Ethernet (10 or 100Mbit)
  570. #
  571. CONFIG_NET_ETHERNET=y
  572. CONFIG_MII=y
  573. # CONFIG_HAPPYMEAL is not set
  574. # CONFIG_SUNGEM is not set
  575. # CONFIG_CASSINI is not set
  576. CONFIG_NET_VENDOR_3COM=y
  577. CONFIG_VORTEX=y
  578. # CONFIG_TYPHOON is not set
  579. #
  580. # Tulip family network device support
  581. #
  582. # CONFIG_NET_TULIP is not set
  583. # CONFIG_HP100 is not set
  584. CONFIG_NET_PCI=y
  585. # CONFIG_PCNET32 is not set
  586. # CONFIG_AMD8111_ETH is not set
  587. # CONFIG_ADAPTEC_STARFIRE is not set
  588. # CONFIG_B44 is not set
  589. CONFIG_FORCEDETH=y
  590. # CONFIG_DGRS is not set
  591. # CONFIG_EEPRO100 is not set
  592. CONFIG_E100=y
  593. # CONFIG_FEALNX is not set
  594. # CONFIG_NATSEMI is not set
  595. # CONFIG_NE2K_PCI is not set
  596. CONFIG_8139CP=y
  597. CONFIG_8139TOO=y
  598. # CONFIG_8139TOO_PIO is not set
  599. # CONFIG_8139TOO_TUNE_TWISTER is not set
  600. # CONFIG_8139TOO_8129 is not set
  601. # CONFIG_8139_OLD_RX_RESET is not set
  602. # CONFIG_SIS900 is not set
  603. # CONFIG_EPIC100 is not set
  604. # CONFIG_SUNDANCE is not set
  605. # CONFIG_VIA_RHINE is not set
  606. #
  607. # Ethernet (1000 Mbit)
  608. #
  609. # CONFIG_ACENIC is not set
  610. # CONFIG_DL2K is not set
  611. CONFIG_E1000=y
  612. # CONFIG_E1000_NAPI is not set
  613. # CONFIG_NS83820 is not set
  614. # CONFIG_HAMACHI is not set
  615. # CONFIG_YELLOWFIN is not set
  616. # CONFIG_R8169 is not set
  617. # CONFIG_SIS190 is not set
  618. # CONFIG_SKGE is not set
  619. # CONFIG_SKY2 is not set
  620. # CONFIG_SK98LIN is not set
  621. # CONFIG_VIA_VELOCITY is not set
  622. CONFIG_TIGON3=y
  623. # CONFIG_BNX2 is not set
  624. #
  625. # Ethernet (10000 Mbit)
  626. #
  627. # CONFIG_CHELSIO_T1 is not set
  628. # CONFIG_IXGB is not set
  629. CONFIG_S2IO=m
  630. # CONFIG_S2IO_NAPI is not set
  631. #
  632. # Token Ring devices
  633. #
  634. # CONFIG_TR is not set
  635. #
  636. # Wireless LAN (non-hamradio)
  637. #
  638. # CONFIG_NET_RADIO is not set
  639. #
  640. # PCMCIA network device support
  641. #
  642. # CONFIG_NET_PCMCIA is not set
  643. #
  644. # Wan interfaces
  645. #
  646. # CONFIG_WAN is not set
  647. # CONFIG_FDDI is not set
  648. # CONFIG_HIPPI is not set
  649. CONFIG_PPP=y
  650. # CONFIG_PPP_MULTILINK is not set
  651. # CONFIG_PPP_FILTER is not set
  652. CONFIG_PPP_ASYNC=y
  653. CONFIG_PPP_SYNC_TTY=y
  654. # CONFIG_PPP_DEFLATE is not set
  655. # CONFIG_PPP_BSDCOMP is not set
  656. # CONFIG_PPP_MPPE is not set
  657. # CONFIG_PPPOE is not set
  658. # CONFIG_SLIP is not set
  659. # CONFIG_NET_FC is not set
  660. # CONFIG_SHAPER is not set
  661. CONFIG_NETCONSOLE=y
  662. CONFIG_NETPOLL=y
  663. # CONFIG_NETPOLL_RX is not set
  664. # CONFIG_NETPOLL_TRAP is not set
  665. CONFIG_NET_POLL_CONTROLLER=y
  666. #
  667. # ISDN subsystem
  668. #
  669. # CONFIG_ISDN is not set
  670. #
  671. # Telephony Support
  672. #
  673. # CONFIG_PHONE is not set
  674. #
  675. # Input device support
  676. #
  677. CONFIG_INPUT=y
  678. #
  679. # Userland interfaces
  680. #
  681. CONFIG_INPUT_MOUSEDEV=y
  682. CONFIG_INPUT_MOUSEDEV_PSAUX=y
  683. CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
  684. CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
  685. # CONFIG_INPUT_JOYDEV is not set
  686. # CONFIG_INPUT_TSDEV is not set
  687. CONFIG_INPUT_EVDEV=y
  688. # CONFIG_INPUT_EVBUG is not set
  689. #
  690. # Input Device Drivers
  691. #
  692. CONFIG_INPUT_KEYBOARD=y
  693. CONFIG_KEYBOARD_ATKBD=y
  694. # CONFIG_KEYBOARD_SUNKBD is not set
  695. # CONFIG_KEYBOARD_LKKBD is not set
  696. # CONFIG_KEYBOARD_XTKBD is not set
  697. # CONFIG_KEYBOARD_NEWTON is not set
  698. CONFIG_INPUT_MOUSE=y
  699. CONFIG_MOUSE_PS2=y
  700. # CONFIG_MOUSE_SERIAL is not set
  701. # CONFIG_MOUSE_VSXXXAA is not set
  702. # CONFIG_INPUT_JOYSTICK is not set
  703. # CONFIG_INPUT_TOUCHSCREEN is not set
  704. # CONFIG_INPUT_MISC is not set
  705. #
  706. # Hardware I/O ports
  707. #
  708. CONFIG_SERIO=y
  709. CONFIG_SERIO_I8042=y
  710. # CONFIG_SERIO_SERPORT is not set
  711. # CONFIG_SERIO_CT82C710 is not set
  712. # CONFIG_SERIO_PCIPS2 is not set
  713. CONFIG_SERIO_LIBPS2=y
  714. # CONFIG_SERIO_RAW is not set
  715. # CONFIG_GAMEPORT is not set
  716. #
  717. # Character devices
  718. #
  719. CONFIG_VT=y
  720. CONFIG_VT_CONSOLE=y
  721. CONFIG_HW_CONSOLE=y
  722. # CONFIG_SERIAL_NONSTANDARD is not set
  723. #
  724. # Serial drivers
  725. #
  726. CONFIG_SERIAL_8250=y
  727. CONFIG_SERIAL_8250_CONSOLE=y
  728. # CONFIG_SERIAL_8250_CS is not set
  729. # CONFIG_SERIAL_8250_ACPI is not set
  730. CONFIG_SERIAL_8250_NR_UARTS=4
  731. # CONFIG_SERIAL_8250_EXTENDED is not set
  732. #
  733. # Non-8250 serial port support
  734. #
  735. CONFIG_SERIAL_CORE=y
  736. CONFIG_SERIAL_CORE_CONSOLE=y
  737. # CONFIG_SERIAL_JSM is not set
  738. CONFIG_UNIX98_PTYS=y
  739. CONFIG_LEGACY_PTYS=y
  740. CONFIG_LEGACY_PTY_COUNT=256
  741. #
  742. # IPMI
  743. #
  744. # CONFIG_IPMI_HANDLER is not set
  745. #
  746. # Watchdog Cards
  747. #
  748. CONFIG_WATCHDOG=y
  749. # CONFIG_WATCHDOG_NOWAYOUT is not set
  750. #
  751. # Watchdog Device Drivers
  752. #
  753. CONFIG_SOFT_WATCHDOG=y
  754. # CONFIG_ACQUIRE_WDT is not set
  755. # CONFIG_ADVANTECH_WDT is not set
  756. # CONFIG_ALIM1535_WDT is not set
  757. # CONFIG_ALIM7101_WDT is not set
  758. # CONFIG_SC520_WDT is not set
  759. # CONFIG_EUROTECH_WDT is not set
  760. # CONFIG_IB700_WDT is not set
  761. # CONFIG_IBMASR is not set
  762. # CONFIG_WAFER_WDT is not set
  763. # CONFIG_I6300ESB_WDT is not set
  764. # CONFIG_I8XX_TCO is not set
  765. # CONFIG_SC1200_WDT is not set
  766. # CONFIG_60XX_WDT is not set
  767. # CONFIG_SBC8360_WDT is not set
  768. # CONFIG_CPU5_WDT is not set
  769. # CONFIG_W83627HF_WDT is not set
  770. # CONFIG_W83877F_WDT is not set
  771. # CONFIG_W83977F_WDT is not set
  772. # CONFIG_MACHZ_WDT is not set
  773. #
  774. # PCI-based Watchdog Cards
  775. #
  776. # CONFIG_PCIPCWATCHDOG is not set
  777. # CONFIG_WDTPCI is not set
  778. #
  779. # USB-based Watchdog Cards
  780. #
  781. # CONFIG_USBPCWATCHDOG is not set
  782. CONFIG_HW_RANDOM=y
  783. # CONFIG_NVRAM is not set
  784. CONFIG_RTC=y
  785. # CONFIG_DTLK is not set
  786. # CONFIG_R3964 is not set
  787. # CONFIG_APPLICOM is not set
  788. #
  789. # Ftape, the floppy tape device driver
  790. #
  791. CONFIG_AGP=y
  792. CONFIG_AGP_AMD64=y
  793. CONFIG_AGP_INTEL=y
  794. # CONFIG_DRM is not set
  795. #
  796. # PCMCIA character devices
  797. #
  798. # CONFIG_SYNCLINK_CS is not set
  799. # CONFIG_CARDMAN_4000 is not set
  800. # CONFIG_CARDMAN_4040 is not set
  801. # CONFIG_MWAVE is not set
  802. CONFIG_RAW_DRIVER=y
  803. CONFIG_MAX_RAW_DEVS=256
  804. CONFIG_HPET=y
  805. # CONFIG_HPET_RTC_IRQ is not set
  806. CONFIG_HPET_MMAP=y
  807. # CONFIG_HANGCHECK_TIMER is not set
  808. #
  809. # TPM devices
  810. #
  811. # CONFIG_TCG_TPM is not set
  812. # CONFIG_TELCLOCK is not set
  813. #
  814. # I2C support
  815. #
  816. # CONFIG_I2C is not set
  817. #
  818. # Dallas's 1-wire bus
  819. #
  820. # CONFIG_W1 is not set
  821. #
  822. # Hardware Monitoring support
  823. #
  824. CONFIG_HWMON=y
  825. # CONFIG_HWMON_VID is not set
  826. # CONFIG_SENSORS_HDAPS is not set
  827. # CONFIG_HWMON_DEBUG_CHIP is not set
  828. #
  829. # Misc devices
  830. #
  831. # CONFIG_IBM_ASM is not set
  832. #
  833. # Multimedia Capabilities Port drivers
  834. #
  835. #
  836. # Multimedia devices
  837. #
  838. # CONFIG_VIDEO_DEV is not set
  839. #
  840. # Digital Video Broadcasting Devices
  841. #
  842. # CONFIG_DVB is not set
  843. #
  844. # Graphics support
  845. #
  846. CONFIG_FB=y
  847. CONFIG_FB_CFB_FILLRECT=y
  848. CONFIG_FB_CFB_COPYAREA=y
  849. CONFIG_FB_CFB_IMAGEBLIT=y
  850. # CONFIG_FB_MACMODES is not set
  851. # CONFIG_FB_MODE_HELPERS is not set
  852. # CONFIG_FB_TILEBLITTING is not set
  853. # CONFIG_FB_CIRRUS is not set
  854. # CONFIG_FB_PM2 is not set
  855. # CONFIG_FB_CYBER2000 is not set
  856. # CONFIG_FB_ARC is not set
  857. # CONFIG_FB_ASILIANT is not set
  858. # CONFIG_FB_IMSTT is not set
  859. CONFIG_FB_VGA16=y
  860. CONFIG_FB_VESA=y
  861. CONFIG_FB_VESA_STD=y
  862. # CONFIG_FB_VESA_TNG is not set
  863. CONFIG_VIDEO_SELECT=y
  864. # CONFIG_FB_HGA is not set
  865. # CONFIG_FB_S1D13XXX is not set
  866. # CONFIG_FB_NVIDIA is not set
  867. # CONFIG_FB_RIVA is not set
  868. # CONFIG_FB_MATROX is not set
  869. # CONFIG_FB_RADEON_OLD is not set
  870. # CONFIG_FB_RADEON is not set
  871. # CONFIG_FB_ATY128 is not set
  872. # CONFIG_FB_ATY is not set
  873. # CONFIG_FB_SAVAGE is not set
  874. # CONFIG_FB_SIS is not set
  875. # CONFIG_FB_NEOMAGIC is not set
  876. # CONFIG_FB_KYRO is not set
  877. # CONFIG_FB_3DFX is not set
  878. # CONFIG_FB_VOODOO1 is not set
  879. # CONFIG_FB_CYBLA is not set
  880. # CONFIG_FB_TRIDENT is not set
  881. # CONFIG_FB_GEODE is not set
  882. # CONFIG_FB_VIRTUAL is not set
  883. #
  884. # Console display driver support
  885. #
  886. CONFIG_VGA_CONSOLE=y
  887. CONFIG_DUMMY_CONSOLE=y
  888. CONFIG_FRAMEBUFFER_CONSOLE=y
  889. # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
  890. CONFIG_FONTS=y
  891. CONFIG_FONT_8x8=y
  892. CONFIG_FONT_8x16=y
  893. # CONFIG_FONT_6x11 is not set
  894. # CONFIG_FONT_7x14 is not set
  895. # CONFIG_FONT_PEARL_8x8 is not set
  896. # CONFIG_FONT_ACORN_8x8 is not set
  897. # CONFIG_FONT_MINI_4x6 is not set
  898. # CONFIG_FONT_SUN8x16 is not set
  899. # CONFIG_FONT_SUN12x22 is not set
  900. # CONFIG_FONT_10x18 is not set
  901. #
  902. # Logo configuration
  903. #
  904. CONFIG_LOGO=y
  905. CONFIG_LOGO_LINUX_MONO=y
  906. CONFIG_LOGO_LINUX_VGA16=y
  907. CONFIG_LOGO_LINUX_CLUT224=y
  908. CONFIG_BACKLIGHT_LCD_SUPPORT=y
  909. CONFIG_BACKLIGHT_CLASS_DEVICE=m
  910. CONFIG_BACKLIGHT_DEVICE=y
  911. CONFIG_LCD_CLASS_DEVICE=m
  912. CONFIG_LCD_DEVICE=y
  913. CONFIG_FB_SPLASH=y
  914. #
  915. # Speakup console speech
  916. #
  917. # CONFIG_SPEAKUP is not set
  918. CONFIG_SPEAKUP_DEFAULT="none"
  919. #
  920. # Sound
  921. #
  922. CONFIG_SOUND=m
  923. #
  924. # Advanced Linux Sound Architecture
  925. #
  926. CONFIG_SND=m
  927. CONFIG_SND_AC97_CODEC=m
  928. CONFIG_SND_AC97_BUS=m
  929. CONFIG_SND_TIMER=m
  930. CONFIG_SND_PCM=m
  931. CONFIG_SND_SEQUENCER=m
  932. # CONFIG_SND_SEQ_DUMMY is not set
  933. CONFIG_SND_OSSEMUL=y
  934. CONFIG_SND_MIXER_OSS=m
  935. CONFIG_SND_PCM_OSS=m
  936. # CONFIG_SND_SEQUENCER_OSS is not set
  937. # CONFIG_SND_RTCTIMER is not set
  938. # CONFIG_SND_VERBOSE_PRINTK is not set
  939. # CONFIG_SND_DEBUG is not set
  940. #
  941. # Generic devices
  942. #
  943. # CONFIG_SND_DUMMY is not set
  944. # CONFIG_SND_VIRMIDI is not set
  945. # CONFIG_SND_MTPAV is not set
  946. # CONFIG_SND_SERIAL_U16550 is not set
  947. # CONFIG_SND_MPU401 is not set
  948. #
  949. # PCI devices
  950. #
  951. # CONFIG_SND_ALI5451 is not set
  952. CONFIG_SND_ATIIXP=m
  953. CONFIG_SND_ATIIXP_MODEM=m
  954. # CONFIG_SND_AU8810 is not set
  955. # CONFIG_SND_AU8820 is not set
  956. # CONFIG_SND_AU8830 is not set
  957. # CONFIG_SND_AZT3328 is not set
  958. # CONFIG_SND_BT87X is not set
  959. # CONFIG_SND_CS46XX is not set
  960. # CONFIG_SND_CS4281 is not set
  961. # CONFIG_SND_EMU10K1 is not set
  962. # CONFIG_SND_EMU10K1X is not set
  963. # CONFIG_SND_CA0106 is not set
  964. # CONFIG_SND_KORG1212 is not set
  965. # CONFIG_SND_MIXART is not set
  966. # CONFIG_SND_NM256 is not set
  967. # CONFIG_SND_RME32 is not set
  968. # CONFIG_SND_RME96 is not set
  969. # CONFIG_SND_RME9652 is not set
  970. # CONFIG_SND_HDSP is not set
  971. # CONFIG_SND_HDSPM is not set
  972. # CONFIG_SND_TRIDENT is not set
  973. # CONFIG_SND_YMFPCI is not set
  974. # CONFIG_SND_AD1889 is not set
  975. # CONFIG_SND_ALS4000 is not set
  976. # CONFIG_SND_CMIPCI is not set
  977. # CONFIG_SND_ENS1370 is not set
  978. # CONFIG_SND_ENS1371 is not set
  979. # CONFIG_SND_ES1938 is not set
  980. # CONFIG_SND_ES1968 is not set
  981. # CONFIG_SND_MAESTRO3 is not set
  982. # CONFIG_SND_FM801 is not set
  983. # CONFIG_SND_ICE1712 is not set
  984. # CONFIG_SND_ICE1724 is not set
  985. # CONFIG_SND_INTEL8X0 is not set
  986. # CONFIG_SND_INTEL8X0M is not set
  987. # CONFIG_SND_SONICVIBES is not set
  988. # CONFIG_SND_VIA82XX is not set
  989. # CONFIG_SND_VIA82XX_MODEM is not set
  990. # CONFIG_SND_VX222 is not set
  991. CONFIG_SND_HDA_INTEL=m
  992. #
  993. # USB devices
  994. #
  995. # CONFIG_SND_USB_AUDIO is not set
  996. # CONFIG_SND_USB_USX2Y is not set
  997. #
  998. # PCMCIA devices
  999. #
  1000. #
  1001. # Open Sound System
  1002. #
  1003. CONFIG_SOUND_PRIME=m
  1004. # CONFIG_OBSOLETE_OSS_DRIVER is not set
  1005. # CONFIG_SOUND_FUSION is not set
  1006. CONFIG_SOUND_ICH=m
  1007. # CONFIG_SOUND_TRIDENT is not set
  1008. # CONFIG_SOUND_MSNDCLAS is not set
  1009. # CONFIG_SOUND_MSNDPIN is not set
  1010. # CONFIG_SOUND_OSS is not set
  1011. #
  1012. # USB support
  1013. #
  1014. CONFIG_USB_ARCH_HAS_HCD=y
  1015. CONFIG_USB_ARCH_HAS_OHCI=y
  1016. CONFIG_USB=y
  1017. # CONFIG_USB_DEBUG is not set
  1018. #
  1019. # Miscellaneous USB options
  1020. #
  1021. CONFIG_USB_DEVICEFS=y
  1022. # CONFIG_USB_BANDWIDTH is not set
  1023. # CONFIG_USB_DYNAMIC_MINORS is not set
  1024. # CONFIG_USB_SUSPEND is not set
  1025. # CONFIG_USB_OTG is not set
  1026. #
  1027. # USB Host Controller Drivers
  1028. #
  1029. CONFIG_USB_EHCI_HCD=y
  1030. # CONFIG_USB_EHCI_SPLIT_ISO is not set
  1031. # CONFIG_USB_EHCI_ROOT_HUB_TT is not set
  1032. # CONFIG_USB_ISP116X_HCD is not set
  1033. CONFIG_USB_OHCI_HCD=y
  1034. # CONFIG_USB_OHCI_BIG_ENDIAN is not set
  1035. CONFIG_USB_OHCI_LITTLE_ENDIAN=y
  1036. CONFIG_USB_UHCI_HCD=y
  1037. # CONFIG_USB_SL811_HCD is not set
  1038. #
  1039. # USB Device Class drivers
  1040. #
  1041. # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set
  1042. # CONFIG_USB_ACM is not set
  1043. CONFIG_USB_PRINTER=y
  1044. #
  1045. # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
  1046. #
  1047. #
  1048. # may also be needed; see USB_STORAGE Help for more information
  1049. #
  1050. CONFIG_USB_STORAGE=y
  1051. # CONFIG_USB_STORAGE_DEBUG is not set
  1052. # CONFIG_USB_STORAGE_DATAFAB is not set
  1053. # CONFIG_USB_STORAGE_FREECOM is not set
  1054. # CONFIG_USB_STORAGE_ISD200 is not set
  1055. # CONFIG_USB_STORAGE_DPCM is not set
  1056. # CONFIG_USB_STORAGE_USBAT is not set
  1057. # CONFIG_USB_STORAGE_SDDR09 is not set
  1058. # CONFIG_USB_STORAGE_SDDR55 is not set
  1059. # CONFIG_USB_STORAGE_JUMPSHOT is not set
  1060. #
  1061. # USB Input Devices
  1062. #
  1063. CONFIG_USB_HID=y
  1064. CONFIG_USB_HIDINPUT=y
  1065. # CONFIG_HID_FF is not set
  1066. # CONFIG_USB_HIDDEV is not set
  1067. # CONFIG_USB_AIPTEK is not set
  1068. # CONFIG_USB_WACOM is not set
  1069. # CONFIG_USB_ACECAD is not set
  1070. # CONFIG_USB_KBTAB is not set
  1071. # CONFIG_USB_POWERMATE is not set
  1072. # CONFIG_USB_MTOUCH is not set
  1073. # CONFIG_USB_ITMTOUCH is not set
  1074. # CONFIG_USB_EGALAX is not set
  1075. # CONFIG_USB_YEALINK is not set
  1076. # CONFIG_USB_XPAD is not set
  1077. # CONFIG_USB_ATI_REMOTE is not set
  1078. # CONFIG_USB_KEYSPAN_REMOTE is not set
  1079. # CONFIG_USB_APPLETOUCH is not set
  1080. #
  1081. # USB Imaging devices
  1082. #
  1083. # CONFIG_USB_MDC800 is not set
  1084. # CONFIG_USB_MICROTEK is not set
  1085. #
  1086. # USB Multimedia devices
  1087. #
  1088. # CONFIG_USB_DABUSB is not set
  1089. #
  1090. # Video4Linux support is needed for USB Multimedia device support
  1091. #
  1092. #
  1093. # USB Network Adapters
  1094. #
  1095. # CONFIG_USB_CATC is not set
  1096. # CONFIG_USB_KAWETH is not set
  1097. # CONFIG_USB_PEGASUS is not set
  1098. # CONFIG_USB_RTL8150 is not set
  1099. # CONFIG_USB_USBNET is not set
  1100. CONFIG_USB_MON=y
  1101. #
  1102. # USB port drivers
  1103. #
  1104. #
  1105. # USB Serial Converter support
  1106. #
  1107. # CONFIG_USB_SERIAL is not set
  1108. #
  1109. # USB Miscellaneous drivers
  1110. #
  1111. # CONFIG_USB_EMI62 is not set
  1112. # CONFIG_USB_EMI26 is not set
  1113. # CONFIG_USB_AUERSWALD is not set
  1114. # CONFIG_USB_RIO500 is not set
  1115. # CONFIG_USB_LEGOTOWER is not set
  1116. # CONFIG_USB_LCD is not set
  1117. # CONFIG_USB_LED is not set
  1118. # CONFIG_USB_CYTHERM is not set
  1119. # CONFIG_USB_PHIDGETKIT is not set
  1120. # CONFIG_USB_PHIDGETSERVO is not set
  1121. # CONFIG_USB_IDMOUSE is not set
  1122. # CONFIG_USB_SISUSBVGA is not set
  1123. # CONFIG_USB_LD is not set
  1124. # CONFIG_USB_TEST is not set
  1125. #
  1126. # USB DSL modem support
  1127. #
  1128. #
  1129. # USB Gadget Support
  1130. #
  1131. # CONFIG_USB_GADGET is not set
  1132. #
  1133. # MMC/SD Card support
  1134. #
  1135. # CONFIG_MMC is not set
  1136. #
  1137. # InfiniBand support
  1138. #
  1139. # CONFIG_INFINIBAND is not set
  1140. #
  1141. # SN Devices
  1142. #
  1143. #
  1144. # Firmware Drivers
  1145. #
  1146. # CONFIG_EDD is not set
  1147. # CONFIG_DELL_RBU is not set
  1148. # CONFIG_DCDBAS is not set
  1149. #
  1150. # File systems
  1151. #
  1152. CONFIG_EXT2_FS=y
  1153. CONFIG_EXT2_FS_XATTR=y
  1154. CONFIG_EXT2_FS_POSIX_ACL=y
  1155. # CONFIG_EXT2_FS_SECURITY is not set
  1156. # CONFIG_EXT2_FS_XIP is not set
  1157. CONFIG_EXT3_FS=y
  1158. CONFIG_EXT3_FS_XATTR=y
  1159. CONFIG_EXT3_FS_POSIX_ACL=y
  1160. # CONFIG_EXT3_FS_SECURITY is not set
  1161. CONFIG_JBD=y
  1162. # CONFIG_JBD_DEBUG is not set
  1163. CONFIG_FS_MBCACHE=y
  1164. CONFIG_REISERFS_FS=y
  1165. # CONFIG_REISERFS_CHECK is not set
  1166. CONFIG_REISERFS_PROC_INFO=y
  1167. CONFIG_REISERFS_FS_XATTR=y
  1168. CONFIG_REISERFS_FS_POSIX_ACL=y
  1169. # CONFIG_REISERFS_FS_SECURITY is not set
  1170. CONFIG_JFS_FS=y
  1171. # CONFIG_JFS_POSIX_ACL is not set
  1172. # CONFIG_JFS_SECURITY is not set
  1173. # CONFIG_JFS_DEBUG is not set
  1174. # CONFIG_JFS_STATISTICS is not set
  1175. CONFIG_FS_POSIX_ACL=y
  1176. CONFIG_XFS_FS=y
  1177. CONFIG_XFS_EXPORT=y
  1178. # CONFIG_XFS_QUOTA is not set
  1179. # CONFIG_XFS_SECURITY is not set
  1180. # CONFIG_XFS_POSIX_ACL is not set
  1181. # CONFIG_XFS_RT is not set
  1182. CONFIG_MINIX_FS=y
  1183. CONFIG_ROMFS_FS=y
  1184. CONFIG_INOTIFY=y
  1185. CONFIG_QUOTA=y
  1186. # CONFIG_QFMT_V1 is not set
  1187. # CONFIG_QFMT_V2 is not set
  1188. CONFIG_QUOTACTL=y
  1189. CONFIG_DNOTIFY=y
  1190. CONFIG_AUTOFS_FS=y
  1191. CONFIG_AUTOFS4_FS=y
  1192. # CONFIG_FUSE_FS is not set
  1193. #
  1194. # CD-ROM/DVD Filesystems
  1195. #
  1196. CONFIG_ISO9660_FS=y
  1197. CONFIG_JOLIET=y
  1198. # CONFIG_ZISOFS is not set
  1199. # CONFIG_UDF_FS is not set
  1200. #
  1201. # DOS/FAT/NT Filesystems
  1202. #
  1203. CONFIG_FAT_FS=y
  1204. CONFIG_MSDOS_FS=y
  1205. CONFIG_VFAT_FS=y
  1206. CONFIG_FAT_DEFAULT_CODEPAGE=936
  1207. CONFIG_FAT_DEFAULT_IOCHARSET="cp936"
  1208. CONFIG_NTFS_FS=y
  1209. # CONFIG_NTFS_DEBUG is not set
  1210. # CONFIG_NTFS_RW is not set
  1211. #
  1212. # Pseudo filesystems
  1213. #
  1214. CONFIG_PROC_FS=y
  1215. CONFIG_PROC_KCORE=y
  1216. CONFIG_SYSFS=y
  1217. CONFIG_TMPFS=y
  1218. CONFIG_HUGETLBFS=y
  1219. CONFIG_HUGETLB_PAGE=y
  1220. CONFIG_RAMFS=y
  1221. CONFIG_RELAYFS_FS=y
  1222. #
  1223. # Miscellaneous filesystems
  1224. #
  1225. # CONFIG_ADFS_FS is not set
  1226. # CONFIG_AFFS_FS is not set
  1227. # CONFIG_HFS_FS is not set
  1228. # CONFIG_HFSPLUS_FS is not set
  1229. # CONFIG_BEFS_FS is not set
  1230. # CONFIG_BFS_FS is not set
  1231. # CONFIG_EFS_FS is not set
  1232. # CONFIG_CRAMFS is not set
  1233. # CONFIG_SQUASHFS is not set
  1234. # CONFIG_VXFS_FS is not set
  1235. # CONFIG_HPFS_FS is not set
  1236. # CONFIG_QNX4FS_FS is not set
  1237. # CONFIG_SYSV_FS is not set
  1238. # CONFIG_UFS_FS is not set
  1239. #
  1240. # Network File Systems
  1241. #
  1242. CONFIG_NFS_FS=y
  1243. CONFIG_NFS_V3=y
  1244. # CONFIG_NFS_V3_ACL is not set
  1245. # CONFIG_NFS_V4 is not set
  1246. # CONFIG_NFS_DIRECTIO is not set
  1247. CONFIG_NFSD=y
  1248. CONFIG_NFSD_V3=y
  1249. # CONFIG_NFSD_V3_ACL is not set
  1250. # CONFIG_NFSD_V4 is not set
  1251. CONFIG_NFSD_TCP=y
  1252. CONFIG_ROOT_NFS=y
  1253. CONFIG_LOCKD=y
  1254. CONFIG_LOCKD_V4=y
  1255. CONFIG_EXPORTFS=y
  1256. CONFIG_NFS_COMMON=y
  1257. CONFIG_SUNRPC=y
  1258. # CONFIG_RPCSEC_GSS_KRB5 is not set
  1259. # CONFIG_RPCSEC_GSS_SPKM3 is not set
  1260. # CONFIG_SMB_FS is not set
  1261. # CONFIG_CIFS is not set
  1262. # CONFIG_NCP_FS is not set
  1263. # CONFIG_CODA_FS is not set
  1264. # CONFIG_AFS_FS is not set
  1265. # CONFIG_9P_FS is not set
  1266. #
  1267. # Partition Types
  1268. #
  1269. # CONFIG_PARTITION_ADVANCED is not set
  1270. CONFIG_MSDOS_PARTITION=y
  1271. #
  1272. # Native Language Support
  1273. #
  1274. CONFIG_NLS=y
  1275. CONFIG_NLS_DEFAULT="utf8"
  1276. CONFIG_NLS_CODEPAGE_437=y
  1277. # CONFIG_NLS_CODEPAGE_737 is not set
  1278. # CONFIG_NLS_CODEPAGE_775 is not set
  1279. # CONFIG_NLS_CODEPAGE_850 is not set
  1280. # CONFIG_NLS_CODEPAGE_852 is not set
  1281. # CONFIG_NLS_CODEPAGE_855 is not set
  1282. # CONFIG_NLS_CODEPAGE_857 is not set
  1283. # CONFIG_NLS_CODEPAGE_860 is not set
  1284. # CONFIG_NLS_CODEPAGE_861 is not set
  1285. # CONFIG_NLS_CODEPAGE_862 is not set
  1286. # CONFIG_NLS_CODEPAGE_863 is not set
  1287. # CONFIG_NLS_CODEPAGE_864 is not set
  1288. # CONFIG_NLS_CODEPAGE_865 is not set
  1289. # CONFIG_NLS_CODEPAGE_866 is not set
  1290. # CONFIG_NLS_CODEPAGE_869 is not set
  1291. CONFIG_NLS_CODEPAGE_936=y
  1292. CONFIG_NLS_CODEPAGE_950=y
  1293. # CONFIG_NLS_CODEPAGE_932 is not set
  1294. # CONFIG_NLS_CODEPAGE_949 is not set
  1295. # CONFIG_NLS_CODEPAGE_874 is not set
  1296. # CONFIG_NLS_ISO8859_8 is not set
  1297. # CONFIG_NLS_CODEPAGE_1250 is not set
  1298. # CONFIG_NLS_CODEPAGE_1251 is not set
  1299. CONFIG_NLS_ASCII=y
  1300. CONFIG_NLS_ISO8859_1=y
  1301. # CONFIG_NLS_ISO8859_2 is not set
  1302. # CONFIG_NLS_ISO8859_3 is not set
  1303. # CONFIG_NLS_ISO8859_4 is not set
  1304. # CONFIG_NLS_ISO8859_5 is not set
  1305. # CONFIG_NLS_ISO8859_6 is not set
  1306. # CONFIG_NLS_ISO8859_7 is not set
  1307. # CONFIG_NLS_ISO8859_9 is not set
  1308. # CONFIG_NLS_ISO8859_13 is not set
  1309. # CONFIG_NLS_ISO8859_14 is not set
  1310. CONFIG_NLS_ISO8859_15=y
  1311. # CONFIG_NLS_KOI8_R is not set
  1312. # CONFIG_NLS_KOI8_U is not set
  1313. CONFIG_NLS_UTF8=y
  1314. #
  1315. # Instrumentation Support
  1316. #
  1317. CONFIG_PROFILING=y
  1318. CONFIG_OPROFILE=y
  1319. CONFIG_KPROBES=y
  1320. #
  1321. # Kernel hacking
  1322. #
  1323. # CONFIG_PRINTK_TIME is not set
  1324. CONFIG_DEBUG_KERNEL=y
  1325. CONFIG_MAGIC_SYSRQ=y
  1326. CONFIG_LOG_BUF_SHIFT=18
  1327. CONFIG_DETECT_SOFTLOCKUP=y
  1328. # CONFIG_SCHEDSTATS is not set
  1329. # CONFIG_DEBUG_SLAB is not set
  1330. CONFIG_DEBUG_PREEMPT=y
  1331. # CONFIG_DEBUG_SPINLOCK is not set
  1332. # CONFIG_DEBUG_SPINLOCK_SLEEP is not set
  1333. # CONFIG_DEBUG_KOBJECT is not set
  1334. # CONFIG_DEBUG_INFO is not set
  1335. CONFIG_DEBUG_FS=y
  1336. # CONFIG_DEBUG_VM is not set
  1337. # CONFIG_FRAME_POINTER is not set
  1338. # CONFIG_RCU_TORTURE_TEST is not set
  1339. CONFIG_INIT_DEBUG=y
  1340. # CONFIG_IOMMU_DEBUG is not set
  1341. #
  1342. # Security options
  1343. #
  1344. # CONFIG_KEYS is not set
  1345. # CONFIG_SECURITY is not set
  1346. #
  1347. # Cryptographic options
  1348. #
  1349. # CONFIG_CRYPTO is not set
  1350. #
  1351. # Hardware crypto devices
  1352. #
  1353. #
  1354. # Library routines
  1355. #
  1356. CONFIG_CRC_CCITT=y
  1357. # CONFIG_CRC16 is not set
  1358. CONFIG_CRC32=y
  1359. # CONFIG_LIBCRC32C is not set
复制代码
回复 支持 反对

使用道具 举报

发表于 2006-2-7 10:35:04 | 显示全部楼层
系统时间是靠CPU算的吗?
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-2-7 11:18:09 | 显示全部楼层
在Gentoo网站上看到这个帖子
http://forums.gentoo.org/viewtopic-t-427654-highlight-clock.html
我看得不是很懂,没有解决问题。
看起来就是双核引起的。
回复 支持 反对

使用道具 举报

发表于 2006-2-7 12:56:33 | 显示全部楼层
64位的系统,总是觉得不稳定。这样那样的问题。。。

把你的ACPI,CPU Frequency scaling,这类先关闭了试试
回复 支持 反对

使用道具 举报

发表于 2006-2-7 14:19:03 | 显示全部楼层
一个是在启动的时候加入参数,notsc。
内核编译的时候,在
Processor type and features  --->
  Processor family (Generic-x86-64)  --->
    <*> /dev/cpu/*/msr - Model-specific register support
    <*> /dev/cpu/*/cpuid - CPU information support
   
  • MTRR (Memory Type Range Register) support
       
  • Symmetric multi-processing support
        [ ] Preemptible Kernel
        [ ] SMT (Hyperthreading) scheduler support
       
  • K8 NUMA support
        [ ] NUMA emulation support
        (8) Maximum number of CPUs (2-256)
       
  • PM timer
       
  • Provide RTC interrupt
        [ ] IOMMU support
       
  • Machine check support
       
  • Enable seccomp to safely compute untrusted bytecode
    这个是上面说的,不代表解决问题。我的amd64系统没有你说的问题。
    问个问题,如果你关机的时候,时间是2PM,过一个小时后,开机,时间是3PM还是其它的时候,比如4PM?建议你升级你的BIOS到最新的版本。
  • 回复 支持 反对

    使用道具 举报

     楼主| 发表于 2006-2-7 14:37:57 | 显示全部楼层
    我把notsc等参数试过了,不行。
    我把内核里对smp的支持去掉了重新编译内核也是不行。

    在BIOS里的时间是对的,每次重启Linux后,时间是对的,但是走得快。这样造成关机时系统时间是8号,再重新开机又是从BIOS里得到的7号。如果现在再编译内核,编译安装软件,总会有提示说某某文件的修改时间是在未来。
    回复 支持 反对

    使用道具 举报

     楼主| 发表于 2006-2-7 18:03:15 | 显示全部楼层
    瞎猫碰死耗子,居然解决了,解决办法写在了主贴里。

    尝试过的一些办法:
    编译内核,在内核选项里去掉APIC,启动,不成功;
    在BIOS里关掉APIC,启动没有APIC的内核,不成功;

    把APIC包含进内核里,在BIOS里关掉APIC,用noapic参数启动,成功;
    包含APIC的内核,在BIOS里不关掉APIC,用noapic参数启动,无法启动;

    用Ubuntu AMD64的LiveCD启动,时钟正常,但是没有启动SMP;
    用Gentoo 2004 LiveCD(内核为2.4.21)启动,没有SMP支持时时钟正常,有SMP支持时时钟也是飞快;

    不知道这个问题的原因是什么引起的,Kernel BUG?CPU Bug?主板BUG?
    顺带问问关掉APIC对系统的使用有什么影响吗?用这样的办法解决问题,感觉好像是在回避问题,不爽;如果是Kernel BUG希望早点有Patch出来。
    回复 支持 反对

    使用道具 举报

    发表于 2006-2-7 20:59:58 | 显示全部楼层
    穷,还没用上双核……
    回复 支持 反对

    使用道具 举报

    您需要登录后才可以回帖 登录 | 注册

    本版积分规则

    快速回复 返回顶部 返回列表