LinuxSir.cn,穿越时空的Linuxsir!

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

[原创]Install Gentoo on a Powerbook G3 (fireware)

[复制链接]
发表于 2005-3-17 19:08:56 | 显示全部楼层 |阅读模式
Install Gentoo on a Powerbook G3 (fireware)
        by YGC        (mailygc@126.com)
下面是我在我的PowerBook G3上安装Gentoo的全过程。。
自己做一个备忘录,也给想在Powerbook上装Gentoo的做一个参考。

以下为基本的安装过程,详细请参考Gentoo的文档
http://www.gentoo.org/doc/en/handbook/handbook-ppc.xml

基本的安装步骤如下:
用2004.3LiveCD进入。
1.配置网络
#net-setup eth0
回答它几个问题就行了。
2.分区
#mac-fdisk /dev/hda
以下是我的分区。

  1. /dev/hda
  2.         #                    type name                 length   base     ( size )  system
  3. /dev/hda1     Apple_partition_map Apple                    63 @ 1        ( 31.5k)  Partition map
  4. /dev/hda2         Apple_Bootstrap bootstrap              1600 @ 64       (800.0k)  NewWorld bootblock
  5. /dev/hda3         Apple_UNIX_SVR2 /                  12582912 @ 1664     (  6.0G)  Linux native
  6. /dev/hda4         Apple_UNIX_SVR2 swap                1048576 @ 12584576 (512.0M)  Linux swap
  7. /dev/hda5         Apple_UNIX_SVR2 /home               6007728 @ 13633152 (  2.9G)  Linux native

  8. Block size=512, Number of Blocks=19640880
  9. DeviceType=0x0, DeviceId=0x0
复制代码

3.建立文件系统
#mke2fs -j /dev/hda3
#mkswap /dev/hda4
#mke2fs -j /dev/hda5
#swapon /dev/hda4

4.挂载分区
#mount /dev/hda3 /mnt/gentoo

5.解开Stage Tarball用Portgage
#cd /mnt/gentoo
#tar xvjpf /mnt/cdrom/stages/stage3-*g3*.tar.bz2
#tar xvjf portage-20040926.tar.bz2 -C /mnt/gentoo/usr
6.设置编译选项
以下是我的make.conf

  1. # These settings were set by the catalyst build script that automatically built this stage
  2. # Please consult /etc/make.conf.example for a more detailed example
  3. #CFLAGS="-O2 -mtune=G3 -fno-strict-aliasing -pipe"
  4. CFLAGS="-O3 -pipe -mcpu=750 -fno-strict-aliasing -mpowerpc-gfxopt -mmultiple -mstring"
  5. CHOST="powerpc-unknown-linux-gnu"
  6. CXXFLAGS="${CFLAGS}"
  7. #LDFLAGS="-Wl,-O1"
  8. LDFLAGS="-Wl,-O1 -Wl,--enable-new-dtags -Wl,--sort-common -s"

  9. MAKEOPTS="-j2"

  10. #PORTDIR_OVERLAY="/usr/local/portage"

  11. ACCEPT_KEYWORDS="~ppc"

  12. GENTOO_MIRRORS="ftp://gg3.net/pub/linux/gentoo/ http://gentoo.mirrors.tds.net/gentoo http://mirror.etf.bg.ac.yu/gentoo http://mirror.datapipe.net/gentoo http://mirror.averse.net/pub/gentoo/"
  13. #####ftp://ftp.sjtu.edu.cn/sites/gentoo ftp://ftp.lzusiyu.org/mirror/gentoo"
  14. ######SYNC="rsync://ftp.tsinghua.edu.cn/mirror/gentoo/gentoo-portage rsync://ftp.lzusiyu.org/mirror/gentoo/portage
  15. #######rsync://eelinux.3322.org/pub/mirror/gentoo/portage rsync://ftp.sjtu.edu.cn/sites/gentoo/gentoo-portage"

  16. USE="acpi cjk nls ppc freetype fbdev f77 java ncurses gpm gtk gtk2 -gnome qt -kde rage128 dvd alsa -arts mmx clisp"

  17. LINGUAS="zh_CN"
复制代码

7.进入gentoo
#mount -t proc none /mnt/gentoo/proc
#chroot /mnt/gentoo /bin/bash
#env-update && source /etc/profile

8.更新系统
#emerge sync
#emerge --update world

9.安装内核
#emerge gentoo-dev-sources
#cd /usr/src/linux
#make menuconfig
#make all && make menuconfig
#cp vmlinux /boot/kernel-2.6.10
#cp System.map /boot/System.map-2.6.10
#cp .config /boot/config-2.6.10

以下是我的内核选项配置.......

  1. #
  2. # Automatically generated make config: don't edit
  3. # Linux kernel version: 2.6.10-gentoo-r6
  4. # Fri Mar 18 14:20:13 2005
  5. #
  6. CONFIG_MMU=y
  7. CONFIG_GENERIC_HARDIRQS=y
  8. CONFIG_RWSEM_XCHGADD_ALGORITHM=y
  9. CONFIG_HAVE_DEC_LOCK=y
  10. CONFIG_PPC=y
  11. CONFIG_PPC32=y
  12. CONFIG_GENERIC_NVRAM=y

  13. #
  14. # Code maturity level options
  15. #
  16. CONFIG_EXPERIMENTAL=y
  17. CONFIG_CLEAN_COMPILE=y
  18. CONFIG_BROKEN_ON_SMP=y

  19. #
  20. # General setup
  21. #
  22. CONFIG_LOCALVERSION=""
  23. CONFIG_SWAP=y
  24. CONFIG_SYSVIPC=y
  25. CONFIG_POSIX_MQUEUE=y
  26. # CONFIG_BSD_PROCESS_ACCT is not set
  27. CONFIG_SYSCTL=y
  28. # CONFIG_AUDIT is not set
  29. CONFIG_LOG_BUF_SHIFT=14
  30. CONFIG_HOTPLUG=y
  31. CONFIG_KOBJECT_UEVENT=y
  32. CONFIG_IKCONFIG=y
  33. CONFIG_IKCONFIG_PROC=y
  34. # CONFIG_EMBEDDED is not set
  35. CONFIG_KALLSYMS=y
  36. # CONFIG_KALLSYMS_EXTRA_PASS is not set
  37. CONFIG_FUTEX=y
  38. CONFIG_EPOLL=y
  39. # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
  40. CONFIG_SHMEM=y
  41. CONFIG_CC_ALIGN_FUNCTIONS=0
  42. CONFIG_CC_ALIGN_LABELS=0
  43. CONFIG_CC_ALIGN_LOOPS=0
  44. CONFIG_CC_ALIGN_JUMPS=0
  45. # CONFIG_TINY_SHMEM is not set

  46. #
  47. # Loadable module support
  48. #
  49. CONFIG_MODULES=y
  50. CONFIG_MODULE_UNLOAD=y
  51. # CONFIG_MODULE_FORCE_UNLOAD is not set
  52. CONFIG_OBSOLETE_MODPARM=y
  53. CONFIG_MODVERSIONS=y
  54. # CONFIG_MODULE_SRCVERSION_ALL is not set
  55. CONFIG_KMOD=y

  56. #
  57. # Processor
  58. #
  59. CONFIG_6xx=y
  60. # CONFIG_40x is not set
  61. # CONFIG_44x is not set
  62. # CONFIG_POWER3 is not set
  63. # CONFIG_POWER4 is not set
  64. # CONFIG_8xx is not set
  65. # CONFIG_E500 is not set
  66. CONFIG_ALTIVEC=y
  67. CONFIG_TAU=y
  68. # CONFIG_TAU_INT is not set
  69. # CONFIG_TAU_AVERAGE is not set
  70. CONFIG_CPU_FREQ=y
  71. # CONFIG_CPU_FREQ_DEBUG is not set
  72. CONFIG_CPU_FREQ_PROC_INTF=y
  73. CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
  74. # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
  75. CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
  76. CONFIG_CPU_FREQ_GOV_POWERSAVE=y
  77. CONFIG_CPU_FREQ_GOV_USERSPACE=y
  78. # CONFIG_CPU_FREQ_24_API is not set
  79. # CONFIG_CPU_FREQ_GOV_ONDEMAND is not set
  80. CONFIG_CPU_FREQ_PMAC=y
  81. CONFIG_CPU_FREQ_TABLE=y
  82. CONFIG_PPC601_SYNC_FIX=y
  83. CONFIG_PM=y
  84. CONFIG_PPC_STD_MMU=y

  85. #
  86. # Platform options
  87. #
  88. CONFIG_PPC_MULTIPLATFORM=y
  89. # CONFIG_APUS is not set
  90. # CONFIG_WILLOW is not set
  91. # CONFIG_PCORE is not set
  92. # CONFIG_POWERPMC250 is not set
  93. # CONFIG_EV64260 is not set
  94. # CONFIG_SPRUCE is not set
  95. # CONFIG_LOPEC is not set
  96. # CONFIG_MCPN765 is not set
  97. # CONFIG_MVME5100 is not set
  98. # CONFIG_PPLUS is not set
  99. # CONFIG_PRPMC750 is not set
  100. # CONFIG_PRPMC800 is not set
  101. # CONFIG_SANDPOINT is not set
  102. # CONFIG_ADIR is not set
  103. # CONFIG_K2 is not set
  104. # CONFIG_PAL4 is not set
  105. # CONFIG_GEMINI is not set
  106. # CONFIG_EST8260 is not set
  107. # CONFIG_SBC82xx is not set
  108. # CONFIG_SBS8260 is not set
  109. # CONFIG_RPX8260 is not set
  110. # CONFIG_TQM8260 is not set
  111. # CONFIG_ADS8272 is not set
  112. # CONFIG_LITE5200 is not set
  113. CONFIG_PPC_CHRP=y
  114. CONFIG_PPC_PMAC=y
  115. CONFIG_PPC_PREP=y
  116. CONFIG_PPC_OF=y
  117. CONFIG_PPCBUG_NVRAM=y
  118. # CONFIG_SMP is not set
  119. # CONFIG_PREEMPT is not set
  120. # CONFIG_HIGHMEM is not set
  121. CONFIG_BINFMT_ELF=y
  122. CONFIG_BINFMT_MISC=m
  123. CONFIG_PROC_DEVICETREE=y
  124. CONFIG_PREP_RESIDUAL=y
  125. CONFIG_PROC_PREPRESIDUAL=y
  126. CONFIG_CMDLINE_BOOL=y
  127. CONFIG_CMDLINE="console=ttyS0,9600 console=tty0 root=/dev/sda2"

  128. #
  129. # Bus options
  130. #
  131. CONFIG_ISA=y
  132. CONFIG_GENERIC_ISA_DMA=y
  133. CONFIG_PCI=y
  134. CONFIG_PCI_DOMAINS=y
  135. CONFIG_PCI_LEGACY_PROC=y
  136. CONFIG_PCI_NAMES=y

  137. #
  138. # PCCARD (PCMCIA/CardBus) support
  139. #
  140. # CONFIG_PCCARD is not set

  141. #
  142. # PC-card bridges
  143. #
  144. CONFIG_PCMCIA_PROBE=y

  145. #
  146. # Advanced setup
  147. #
  148. CONFIG_ADVANCED_OPTIONS=y
  149. CONFIG_HIGHMEM_START=0xfe000000
  150. # CONFIG_LOWMEM_SIZE_BOOL is not set
  151. CONFIG_LOWMEM_SIZE=0x30000000
  152. # CONFIG_KERNEL_START_BOOL is not set
  153. CONFIG_KERNEL_START=0xc0000000
  154. # CONFIG_TASK_SIZE_BOOL is not set
  155. CONFIG_TASK_SIZE=0x80000000
  156. CONFIG_BOOT_LOAD=0x00800000

  157. #
  158. # Device Drivers
  159. #

  160. #
  161. # Generic Driver Options
  162. #
  163. # CONFIG_STANDALONE is not set
  164. CONFIG_PREVENT_FIRMWARE_BUILD=y
  165. # CONFIG_FW_LOADER is not set

  166. #
  167. # Memory Technology Devices (MTD)
  168. #
  169. # CONFIG_MTD is not set

  170. #
  171. # Parallel port support
  172. #
  173. # CONFIG_PARPORT is not set

  174. #
  175. # Plug and Play support
  176. #
  177. # CONFIG_PNP is not set

  178. #
  179. # Block devices
  180. #
  181. CONFIG_BLK_DEV_FD=m
  182. # CONFIG_MAC_FLOPPY is not set
  183. # CONFIG_BLK_DEV_XD is not set
  184. # CONFIG_BLK_CPQ_DA is not set
  185. # CONFIG_BLK_CPQ_CISS_DA is not set
  186. # CONFIG_BLK_DEV_DAC960 is not set
  187. # CONFIG_BLK_DEV_UMEM is not set
  188. CONFIG_BLK_DEV_LOOP=y
  189. # CONFIG_BLK_DEV_CRYPTOLOOP is not set
  190. # CONFIG_BLK_DEV_NBD is not set
  191. # CONFIG_BLK_DEV_SX8 is not set
  192. # CONFIG_BLK_DEV_UB is not set
  193. CONFIG_BLK_DEV_RAM=y
  194. CONFIG_BLK_DEV_RAM_COUNT=16
  195. CONFIG_BLK_DEV_RAM_SIZE=4096
  196. CONFIG_BLK_DEV_INITRD=y
  197. CONFIG_INITRAMFS_SOURCE=""
  198. CONFIG_LBD=y
  199. # CONFIG_CDROM_PKTCDVD is not set

  200. #
  201. # IO Schedulers
  202. #
  203. CONFIG_IOSCHED_NOOP=y
  204. CONFIG_IOSCHED_AS=y
  205. CONFIG_IOSCHED_DEADLINE=y
  206. CONFIG_IOSCHED_CFQ=y

  207. #
  208. # ATA/ATAPI/MFM/RLL support
  209. #
  210. CONFIG_IDE=y
  211. CONFIG_BLK_DEV_IDE=y

  212. #
  213. # Please see Documentation/ide.txt for help/info on IDE drives
  214. #
  215. # CONFIG_BLK_DEV_IDE_SATA is not set
  216. CONFIG_BLK_DEV_IDEDISK=y
  217. # CONFIG_IDEDISK_MULTI_MODE is not set
  218. CONFIG_BLK_DEV_IDECD=y
  219. # CONFIG_BLK_DEV_IDETAPE is not set
  220. CONFIG_BLK_DEV_IDEFLOPPY=y
  221. CONFIG_BLK_DEV_IDESCSI=y
  222. # CONFIG_IDE_TASK_IOCTL is not set

  223. #
  224. # IDE chipset support/bugfixes
  225. #
  226. CONFIG_IDE_GENERIC=y
  227. CONFIG_BLK_DEV_IDEPCI=y
  228. CONFIG_IDEPCI_SHARE_IRQ=y
  229. # CONFIG_BLK_DEV_OFFBOARD is not set
  230. CONFIG_BLK_DEV_GENERIC=y
  231. # CONFIG_BLK_DEV_OPTI621 is not set
  232. CONFIG_BLK_DEV_SL82C105=y
  233. CONFIG_BLK_DEV_IDEDMA_PCI=y
  234. # CONFIG_BLK_DEV_IDEDMA_FORCED is not set
  235. CONFIG_IDEDMA_PCI_AUTO=y
  236. # CONFIG_IDEDMA_ONLYDISK is not set
  237. # CONFIG_BLK_DEV_AEC62XX is not set
  238. # CONFIG_BLK_DEV_ALI15X3 is not set
  239. # CONFIG_BLK_DEV_AMD74XX is not set
  240. CONFIG_BLK_DEV_CMD64X=y
  241. # CONFIG_BLK_DEV_TRIFLEX is not set
  242. # CONFIG_BLK_DEV_CY82C693 is not set
  243. # CONFIG_BLK_DEV_CS5520 is not set
  244. # CONFIG_BLK_DEV_CS5530 is not set
  245. # CONFIG_BLK_DEV_HPT34X is not set
  246. # CONFIG_BLK_DEV_HPT366 is not set
  247. # CONFIG_BLK_DEV_SC1200 is not set
  248. # CONFIG_BLK_DEV_PIIX is not set
  249. # CONFIG_BLK_DEV_NS87415 is not set
  250. # CONFIG_BLK_DEV_PDC202XX_OLD is not set
  251. # CONFIG_BLK_DEV_PDC202XX_NEW is not set
  252. # CONFIG_BLK_DEV_SVWKS is not set
  253. # CONFIG_BLK_DEV_SIIMAGE is not set
  254. # CONFIG_BLK_DEV_SLC90E66 is not set
  255. # CONFIG_BLK_DEV_TRM290 is not set
  256. # CONFIG_BLK_DEV_VIA82CXXX is not set
  257. CONFIG_BLK_DEV_IDE_PMAC=y
  258. CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y
  259. CONFIG_BLK_DEV_IDEDMA_PMAC=y
  260. CONFIG_BLK_DEV_IDE_PMAC_BLINK=y
  261. # CONFIG_IDE_ARM is not set
  262. # CONFIG_IDE_CHIPSETS is not set
  263. CONFIG_BLK_DEV_IDEDMA=y
  264. # CONFIG_IDEDMA_IVB is not set
  265. CONFIG_IDEDMA_AUTO=y
  266. # CONFIG_BLK_DEV_HD is not set

  267. #
  268. # SCSI device support
  269. #
  270. CONFIG_SCSI=y
  271. CONFIG_SCSI_PROC_FS=y

  272. #
  273. # SCSI support type (disk, tape, CD-ROM)
  274. #
  275. CONFIG_BLK_DEV_SD=y
  276. # CONFIG_CHR_DEV_ST is not set
  277. # CONFIG_CHR_DEV_OSST is not set
  278. # CONFIG_BLK_DEV_SR is not set
  279. CONFIG_CHR_DEV_SG=y

  280. #
  281. # Some SCSI devices (e.g. CD jukebox) support multiple LUNs
  282. #
  283. # CONFIG_SCSI_MULTI_LUN is not set
  284. CONFIG_SCSI_CONSTANTS=y
  285. # CONFIG_SCSI_LOGGING is not set

  286. #
  287. # SCSI Transport Attributes
  288. #
  289. CONFIG_SCSI_SPI_ATTRS=y
  290. # CONFIG_SCSI_FC_ATTRS is not set

  291. #
  292. # SCSI low-level drivers
  293. #
  294. # CONFIG_BLK_DEV_3W_XXXX_RAID is not set
  295. # CONFIG_SCSI_3W_9XXX is not set
  296. # CONFIG_SCSI_7000FASST is not set
  297. # CONFIG_SCSI_ACARD is not set
  298. # CONFIG_SCSI_AHA152X is not set
  299. # CONFIG_SCSI_AHA1542 is not set
  300. # CONFIG_SCSI_AACRAID is not set
  301. CONFIG_SCSI_AIC7XXX=m
  302. CONFIG_AIC7XXX_CMDS_PER_DEVICE=253
  303. CONFIG_AIC7XXX_RESET_DELAY_MS=15000
  304. CONFIG_AIC7XXX_DEBUG_ENABLE=y
  305. CONFIG_AIC7XXX_DEBUG_MASK=0
  306. CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
  307. CONFIG_SCSI_AIC7XXX_OLD=m
  308. # CONFIG_SCSI_AIC79XX is not set
  309. # CONFIG_SCSI_DPT_I2O is not set
  310. # CONFIG_SCSI_IN2000 is not set
  311. # CONFIG_MEGARAID_NEWGEN is not set
  312. # CONFIG_MEGARAID_LEGACY is not set
  313. # CONFIG_SCSI_SATA is not set
  314. # CONFIG_SCSI_BUSLOGIC is not set
  315. # CONFIG_SCSI_DMX3191D is not set
  316. # CONFIG_SCSI_DTC3280 is not set
  317. # CONFIG_SCSI_EATA is not set
  318. # CONFIG_SCSI_EATA_PIO is not set
  319. # CONFIG_SCSI_FUTURE_DOMAIN is not set
  320. # CONFIG_SCSI_GDTH is not set
  321. # CONFIG_SCSI_GENERIC_NCR5380 is not set
  322. # CONFIG_SCSI_GENERIC_NCR5380_MMIO is not set
  323. # CONFIG_SCSI_IPS is not set
  324. # CONFIG_SCSI_INITIO is not set
  325. # CONFIG_SCSI_INIA100 is not set
  326. # CONFIG_SCSI_NCR53C406A is not set
  327. CONFIG_SCSI_SYM53C8XX_2=y
  328. CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=0
  329. CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
  330. CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
  331. # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set
  332. # CONFIG_SCSI_IPR is not set
  333. # CONFIG_SCSI_PAS16 is not set
  334. # CONFIG_SCSI_PSI240I is not set
  335. # CONFIG_SCSI_QLOGIC_FAS is not set
  336. # CONFIG_SCSI_QLOGIC_ISP is not set
  337. # CONFIG_SCSI_QLOGIC_FC is not set
  338. # CONFIG_SCSI_QLOGIC_1280 is not set
  339. CONFIG_SCSI_QLA2XXX=y
  340. # CONFIG_SCSI_QLA21XX is not set
  341. # CONFIG_SCSI_QLA22XX is not set
  342. # CONFIG_SCSI_QLA2300 is not set
  343. # CONFIG_SCSI_QLA2322 is not set
  344. # CONFIG_SCSI_QLA6312 is not set
  345. # CONFIG_SCSI_QLA6322 is not set
  346. # CONFIG_SCSI_SYM53C416 is not set
  347. # CONFIG_SCSI_DC395x is not set
  348. # CONFIG_SCSI_DC390T is not set
  349. # CONFIG_SCSI_T128 is not set
  350. # CONFIG_SCSI_U14_34F is not set
  351. # CONFIG_SCSI_NSP32 is not set
  352. # CONFIG_SCSI_DEBUG is not set
  353. CONFIG_SCSI_MESH=y
  354. CONFIG_SCSI_MESH_SYNC_RATE=5
  355. CONFIG_SCSI_MESH_RESET_DELAY_MS=4000
  356. CONFIG_SCSI_MAC53C94=y

  357. #
  358. # Old CD-ROM drivers (not SCSI, not IDE)
  359. #
  360. # CONFIG_CD_NO_IDESCSI is not set

  361. #
  362. # Multi-device support (RAID and LVM)
  363. #
  364. # CONFIG_MD is not set

  365. #
  366. # Fusion MPT device support
  367. #
  368. # CONFIG_FUSION is not set

  369. #
  370. # IEEE 1394 (FireWire) support
  371. #
  372. CONFIG_IEEE1394=m

  373. #
  374. # Subsystem Options
  375. #
  376. # CONFIG_IEEE1394_VERBOSEDEBUG is not set
  377. # CONFIG_IEEE1394_OUI_DB is not set
  378. # CONFIG_IEEE1394_EXTRA_CONFIG_ROMS is not set

  379. #
  380. # Device Drivers
  381. #
  382. # CONFIG_IEEE1394_PCILYNX is not set
  383. # CONFIG_IEEE1394_OHCI1394 is not set

  384. #
  385. # Protocol Drivers
  386. #
  387. # CONFIG_IEEE1394_SBP2 is not set
  388. # CONFIG_IEEE1394_ETH1394 is not set
  389. # CONFIG_IEEE1394_RAWIO is not set
  390. # CONFIG_IEEE1394_CMP is not set

  391. #
  392. # I2O device support
  393. #
  394. # CONFIG_I2O is not set

  395. #
  396. # Macintosh device drivers
  397. #
  398. CONFIG_ADB=y
  399. CONFIG_ADB_CUDA=y
  400. CONFIG_ADB_PMU=y
  401. CONFIG_PMAC_PBOOK=y
  402. CONFIG_PMAC_APM_EMU=y
  403. CONFIG_PMAC_BACKLIGHT=y
  404. CONFIG_ADB_MACIO=y
  405. CONFIG_INPUT_ADBHID=y
  406. CONFIG_MAC_EMUMOUSEBTN=y
  407. # CONFIG_ANSLCD is not set

  408. #
  409. # Networking support
  410. #
  411. CONFIG_NET=y

  412. #
  413. # Networking options
  414. #
  415. CONFIG_PACKET=y
  416. # CONFIG_PACKET_MMAP is not set
  417. # CONFIG_NETLINK_DEV is not set
  418. CONFIG_UNIX=y
  419. # CONFIG_NET_KEY is not set
  420. CONFIG_INET=y
  421. CONFIG_IP_MULTICAST=y
  422. # CONFIG_IP_ADVANCED_ROUTER is not set
  423. # CONFIG_IP_PNP is not set
  424. # CONFIG_NET_IPIP is not set
  425. # CONFIG_NET_IPGRE is not set
  426. # CONFIG_IP_MROUTE is not set
  427. # CONFIG_ARPD is not set
  428. CONFIG_SYN_COOKIES=y
  429. # CONFIG_INET_AH is not set
  430. # CONFIG_INET_ESP is not set
  431. # CONFIG_INET_IPCOMP is not set
  432. # CONFIG_INET_TUNNEL is not set
  433. CONFIG_IP_TCPDIAG=y
  434. # CONFIG_IP_TCPDIAG_IPV6 is not set

  435. #
  436. # IP: Virtual Server Configuration
  437. #
  438. # CONFIG_IP_VS is not set
  439. # CONFIG_IPV6 is not set
  440. CONFIG_NETFILTER=y
  441. # CONFIG_NETFILTER_DEBUG is not set

  442. #
  443. # IP: Netfilter Configuration
  444. #
  445. CONFIG_IP_NF_CONNTRACK=m
  446. # CONFIG_IP_NF_CT_ACCT is not set
  447. # CONFIG_IP_NF_CONNTRACK_MARK is not set
  448. # CONFIG_IP_NF_CT_PROTO_SCTP is not set
  449. CONFIG_IP_NF_FTP=m
  450. CONFIG_IP_NF_IRC=m
  451. CONFIG_IP_NF_TFTP=m
  452. CONFIG_IP_NF_AMANDA=m
  453. # CONFIG_IP_NF_QUEUE is not set
  454. CONFIG_IP_NF_IPTABLES=m
  455. CONFIG_IP_NF_MATCH_LIMIT=m
  456. CONFIG_IP_NF_MATCH_IPRANGE=m
  457. CONFIG_IP_NF_MATCH_MAC=m
  458. CONFIG_IP_NF_MATCH_PKTTYPE=m
  459. CONFIG_IP_NF_MATCH_MARK=m
  460. CONFIG_IP_NF_MATCH_MULTIPORT=m
  461. CONFIG_IP_NF_MATCH_TOS=m
  462. CONFIG_IP_NF_MATCH_RECENT=m
  463. CONFIG_IP_NF_MATCH_ECN=m
  464. CONFIG_IP_NF_MATCH_DSCP=m
  465. CONFIG_IP_NF_MATCH_AH_ESP=m
  466. CONFIG_IP_NF_MATCH_LENGTH=m
  467. CONFIG_IP_NF_MATCH_TTL=m
  468. CONFIG_IP_NF_MATCH_TCPMSS=m
  469. CONFIG_IP_NF_MATCH_HELPER=m
  470. CONFIG_IP_NF_MATCH_STATE=m
  471. CONFIG_IP_NF_MATCH_CONNTRACK=m
  472. CONFIG_IP_NF_MATCH_OWNER=m
  473. # CONFIG_IP_NF_MATCH_ADDRTYPE is not set
  474. # CONFIG_IP_NF_MATCH_REALM is not set
  475. # CONFIG_IP_NF_MATCH_SCTP is not set
  476. # CONFIG_IP_NF_MATCH_COMMENT is not set
  477. # CONFIG_IP_NF_MATCH_HASHLIMIT is not set
  478. CONFIG_IP_NF_FILTER=m
  479. CONFIG_IP_NF_TARGET_REJECT=m
  480. # CONFIG_IP_NF_TARGET_LOG is not set
  481. # CONFIG_IP_NF_TARGET_ULOG is not set
  482. CONFIG_IP_NF_TARGET_TCPMSS=m
  483. CONFIG_IP_NF_NAT=m
  484. CONFIG_IP_NF_NAT_NEEDED=y
  485. CONFIG_IP_NF_TARGET_MASQUERADE=m
  486. CONFIG_IP_NF_TARGET_REDIRECT=m
  487. CONFIG_IP_NF_TARGET_NETMAP=m
  488. CONFIG_IP_NF_TARGET_SAME=m
  489. # CONFIG_IP_NF_NAT_LOCAL is not set
  490. CONFIG_IP_NF_NAT_SNMP_BASIC=m
  491. CONFIG_IP_NF_NAT_IRC=m
  492. CONFIG_IP_NF_NAT_FTP=m
  493. CONFIG_IP_NF_NAT_TFTP=m
  494. CONFIG_IP_NF_NAT_AMANDA=m
  495. # CONFIG_IP_NF_MANGLE is not set
  496. CONFIG_IP_NF_RAW=m
  497. CONFIG_IP_NF_TARGET_NOTRACK=m
  498. CONFIG_IP_NF_ARPTABLES=m
  499. CONFIG_IP_NF_ARPFILTER=m
  500. CONFIG_IP_NF_ARP_MANGLE=m
  501. CONFIG_IP_NF_COMPAT_IPCHAINS=m
  502. # CONFIG_IP_NF_COMPAT_IPFWADM is not set

  503. #
  504. # SCTP Configuration (EXPERIMENTAL)
  505. #
  506. # CONFIG_IP_SCTP is not set
  507. # CONFIG_ATM is not set
  508. # CONFIG_BRIDGE is not set
  509. # CONFIG_VLAN_8021Q is not set
  510. # CONFIG_DECNET is not set
  511. # CONFIG_LLC2 is not set
  512. # CONFIG_IPX is not set
  513. # CONFIG_ATALK is not set
  514. # CONFIG_X25 is not set
  515. # CONFIG_LAPB is not set
  516. # CONFIG_NET_DIVERT is not set
  517. # CONFIG_ECONET is not set
  518. # CONFIG_WAN_ROUTER is not set

  519. #
  520. # QoS and/or fair queueing
  521. #
  522. # CONFIG_NET_SCHED is not set
  523. # CONFIG_NET_CLS_ROUTE is not set

  524. #
  525. # Network testing
  526. #
  527. # CONFIG_NET_PKTGEN is not set
  528. # CONFIG_NETPOLL is not set
  529. # CONFIG_NET_POLL_CONTROLLER is not set
  530. # CONFIG_HAMRADIO is not set
  531. # CONFIG_IRDA is not set
  532. # CONFIG_BT is not set
  533. CONFIG_NETDEVICES=y
  534. # CONFIG_DUMMY is not set
  535. # CONFIG_BONDING is not set
  536. # CONFIG_EQUALIZER is not set
  537. # CONFIG_TUN is not set

  538. #
  539. # ARCnet devices
  540. #
  541. # CONFIG_ARCNET is not set

  542. #
  543. # Ethernet (10 or 100Mbit)
  544. #
  545. CONFIG_NET_ETHERNET=y
  546. CONFIG_MII=y
  547. CONFIG_MACE=y
  548. # CONFIG_MACE_AAUI_PORT is not set
  549. CONFIG_BMAC=y
  550. # CONFIG_HAPPYMEAL is not set
  551. CONFIG_SUNGEM=y
  552. # CONFIG_NET_VENDOR_3COM is not set
  553. # CONFIG_LANCE is not set
  554. # CONFIG_NET_VENDOR_SMC is not set
  555. # CONFIG_NET_VENDOR_RACAL is not set

  556. #
  557. # Tulip family network device support
  558. #
  559. # CONFIG_NET_TULIP is not set
  560. # CONFIG_AT1700 is not set
  561. # CONFIG_DEPCA is not set
  562. # CONFIG_HP100 is not set
  563. # CONFIG_NET_ISA is not set
  564. # CONFIG_NET_PCI is not set
  565. # CONFIG_NET_POCKET is not set

  566. #
  567. # Ethernet (1000 Mbit)
  568. #
  569. # CONFIG_ACENIC is not set
  570. # CONFIG_DL2K is not set
  571. # CONFIG_E1000 is not set
  572. # CONFIG_NS83820 is not set
  573. # CONFIG_HAMACHI is not set
  574. # CONFIG_YELLOWFIN is not set
  575. # CONFIG_R8169 is not set
  576. # CONFIG_SK98LIN is not set
  577. # CONFIG_TIGON3 is not set

  578. #
  579. # Ethernet (10000 Mbit)
  580. #
  581. # CONFIG_IXGB is not set
  582. # CONFIG_S2IO is not set

  583. #
  584. # Token Ring devices
  585. #
  586. # CONFIG_TR is not set

  587. #
  588. # Wireless LAN (non-hamradio)
  589. #
  590. CONFIG_NET_RADIO=y

  591. #
  592. # Obsolete Wireless cards support (pre-802.11)
  593. #
  594. # CONFIG_STRIP is not set
  595. # CONFIG_ARLAN is not set
  596. # CONFIG_WAVELAN is not set

  597. #
  598. # Wireless 802.11b ISA/PCI cards support
  599. #
  600. # CONFIG_AIRO is not set
  601. CONFIG_HERMES=m
  602. CONFIG_APPLE_AIRPORT=m
  603. # CONFIG_PLX_HERMES is not set
  604. # CONFIG_TMD_HERMES is not set
  605. # CONFIG_PCI_HERMES is not set
  606. # CONFIG_ATMEL is not set

  607. #
  608. # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support
  609. #
  610. # CONFIG_PRISM54 is not set
  611. CONFIG_NET_WIRELESS=y

  612. #
  613. # Wan interfaces
  614. #
  615. # CONFIG_WAN is not set
  616. # CONFIG_FDDI is not set
  617. # CONFIG_HIPPI is not set
  618. CONFIG_PPP=y
  619. CONFIG_PPP_MULTILINK=y
  620. # CONFIG_PPP_FILTER is not set
  621. CONFIG_PPP_ASYNC=y
  622. CONFIG_PPP_SYNC_TTY=y
  623. CONFIG_PPP_DEFLATE=y
  624. # CONFIG_PPP_BSDCOMP is not set
  625. # CONFIG_PPPOE is not set
  626. # CONFIG_SLIP is not set
  627. # CONFIG_NET_FC is not set
  628. # CONFIG_SHAPER is not set
  629. # CONFIG_NETCONSOLE is not set

  630. #
  631. # ISDN subsystem
  632. #
  633. # CONFIG_ISDN is not set

  634. #
  635. # Telephony Support
  636. #
  637. # CONFIG_PHONE is not set

  638. #
  639. # Input device support
  640. #
  641. CONFIG_INPUT=y

  642. #
  643. # Userland interfaces
  644. #
  645. CONFIG_INPUT_MOUSEDEV=y
  646. CONFIG_INPUT_MOUSEDEV_PSAUX=y
  647. CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
  648. CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
  649. # CONFIG_INPUT_JOYDEV is not set
  650. # CONFIG_INPUT_TSDEV is not set
  651. CONFIG_INPUT_EVDEV=y
  652. CONFIG_INPUT_EVBUG=y

  653. #
  654. # Input I/O drivers
  655. #
  656. # CONFIG_GAMEPORT is not set
  657. CONFIG_SOUND_GAMEPORT=y
  658. CONFIG_SERIO=y
  659. CONFIG_SERIO_I8042=y
  660. CONFIG_SERIO_SERPORT=y
  661. # CONFIG_SERIO_CT82C710 is not set
  662. # CONFIG_SERIO_PCIPS2 is not set
  663. # CONFIG_SERIO_RAW is not set

  664. #
  665. # Input Device Drivers
  666. #
  667. CONFIG_INPUT_KEYBOARD=y
  668. CONFIG_KEYBOARD_ATKBD=y
  669. # CONFIG_KEYBOARD_SUNKBD is not set
  670. # CONFIG_KEYBOARD_LKKBD is not set
  671. # CONFIG_KEYBOARD_XTKBD is not set
  672. # CONFIG_KEYBOARD_NEWTON is not set
  673. CONFIG_INPUT_MOUSE=y
  674. CONFIG_MOUSE_PS2=y
  675. # CONFIG_MOUSE_SERIAL is not set
  676. # CONFIG_MOUSE_INPORT is not set
  677. # CONFIG_MOUSE_LOGIBM is not set
  678. # CONFIG_MOUSE_PC110PAD is not set
  679. # CONFIG_MOUSE_VSXXXAA is not set
  680. # CONFIG_INPUT_JOYSTICK is not set
  681. # CONFIG_INPUT_TOUCHSCREEN is not set
  682. # CONFIG_INPUT_MISC is not set

  683. #
  684. # Character devices
  685. #
  686. CONFIG_VT=y
  687. CONFIG_VT_CONSOLE=y
  688. CONFIG_HW_CONSOLE=y
  689. CONFIG_INOTIFY=y
  690. # CONFIG_SERIAL_NONSTANDARD is not set

  691. #
  692. # Serial drivers
  693. #
  694. CONFIG_SERIAL_8250=y
  695. # CONFIG_SERIAL_8250_CONSOLE is not set
  696. CONFIG_SERIAL_8250_NR_UARTS=4
  697. # CONFIG_SERIAL_8250_EXTENDED is not set

  698. #
  699. # Non-8250 serial port support
  700. #
  701. CONFIG_SERIAL_CORE=y
  702. CONFIG_SERIAL_PMACZILOG=y
  703. # CONFIG_SERIAL_PMACZILOG_CONSOLE is not set
  704. CONFIG_UNIX98_PTYS=y
  705. CONFIG_LEGACY_PTYS=y
  706. CONFIG_LEGACY_PTY_COUNT=256

  707. #
  708. # IPMI
  709. #
  710. # CONFIG_IPMI_HANDLER is not set

  711. #
  712. # Watchdog Cards
  713. #
  714. # CONFIG_WATCHDOG is not set
  715. CONFIG_NVRAM=y
  716. CONFIG_GEN_RTC=y
  717. # CONFIG_GEN_RTC_X is not set
  718. # CONFIG_DTLK is not set
  719. # CONFIG_R3964 is not set
  720. # CONFIG_APPLICOM is not set

  721. #
  722. # Ftape, the floppy tape device driver
  723. #
  724. # CONFIG_AGP is not set
  725. CONFIG_DRM=y
  726. # CONFIG_DRM_TDFX is not set
  727. CONFIG_DRM_R128=y
  728. CONFIG_DRM_RADEON=y
  729. # CONFIG_RAW_DRIVER is not set

  730. #
  731. # I2C support
  732. #
  733. CONFIG_I2C=y
  734. CONFIG_I2C_CHARDEV=m

  735. #
  736. # I2C Algorithms
  737. #
  738. CONFIG_I2C_ALGOBIT=y
  739. # CONFIG_I2C_ALGOPCF is not set
  740. # CONFIG_I2C_ALGOPCA is not set

  741. #
  742. # I2C Hardware Bus support
  743. #
  744. # CONFIG_I2C_ALI1535 is not set
  745. # CONFIG_I2C_ALI1563 is not set
  746. # CONFIG_I2C_ALI15X3 is not set
  747. # CONFIG_I2C_AMD756 is not set
  748. # CONFIG_I2C_AMD8111 is not set
  749. # CONFIG_I2C_ELEKTOR is not set
  750. # CONFIG_I2C_HYDRA is not set
  751. # CONFIG_I2C_I801 is not set
  752. # CONFIG_I2C_I810 is not set
  753. # CONFIG_I2C_ISA is not set
  754. # CONFIG_I2C_KEYWEST is not set
  755. # CONFIG_I2C_NFORCE2 is not set
  756. # CONFIG_I2C_PARPORT_LIGHT is not set
  757. # CONFIG_I2C_PIIX4 is not set
  758. # CONFIG_I2C_PROSAVAGE is not set
  759. # CONFIG_I2C_SAVAGE4 is not set
  760. # CONFIG_SCx200_ACB is not set
  761. # CONFIG_I2C_SIS5595 is not set
  762. # CONFIG_I2C_SIS630 is not set
  763. # CONFIG_I2C_SIS96X is not set
  764. # CONFIG_I2C_STUB is not set
  765. # CONFIG_I2C_VIA is not set
  766. # CONFIG_I2C_VIAPRO is not set
  767. # CONFIG_I2C_VOODOO3 is not set
  768. # CONFIG_I2C_PCA_ISA is not set

  769. #
  770. # Hardware Sensors Chip support
  771. #
  772. # CONFIG_I2C_SENSOR is not set
  773. # CONFIG_SENSORS_ADM1021 is not set
  774. # CONFIG_SENSORS_ADM1025 is not set
  775. # CONFIG_SENSORS_ADM1026 is not set
  776. # CONFIG_SENSORS_ADM1031 is not set
  777. # CONFIG_SENSORS_ASB100 is not set
  778. # CONFIG_SENSORS_DS1621 is not set
  779. # CONFIG_SENSORS_FSCHER is not set
  780. # CONFIG_SENSORS_GL518SM is not set
  781. # CONFIG_SENSORS_IT87 is not set
  782. # CONFIG_SENSORS_LM63 is not set
  783. # CONFIG_SENSORS_LM75 is not set
  784. # CONFIG_SENSORS_LM77 is not set
  785. # CONFIG_SENSORS_LM78 is not set
  786. # CONFIG_SENSORS_LM80 is not set
  787. # CONFIG_SENSORS_LM83 is not set
  788. # CONFIG_SENSORS_LM85 is not set
  789. # CONFIG_SENSORS_LM87 is not set
  790. # CONFIG_SENSORS_LM90 is not set
  791. # CONFIG_SENSORS_MAX1619 is not set
  792. # CONFIG_SENSORS_PC87360 is not set
  793. # CONFIG_SENSORS_SMSC47M1 is not set
  794. # CONFIG_SENSORS_VIA686A is not set
  795. # CONFIG_SENSORS_W83781D is not set
  796. # CONFIG_SENSORS_W83L785TS is not set
  797. # CONFIG_SENSORS_W83627HF is not set

  798. #
  799. # Other I2C Chip support
  800. #
  801. # CONFIG_SENSORS_EEPROM is not set
  802. # CONFIG_SENSORS_PCF8574 is not set
  803. # CONFIG_SENSORS_PCF8591 is not set
  804. # CONFIG_SENSORS_RTC8564 is not set
  805. # CONFIG_I2C_DEBUG_CORE is not set
  806. # CONFIG_I2C_DEBUG_ALGO is not set
  807. # CONFIG_I2C_DEBUG_BUS is not set
  808. # CONFIG_I2C_DEBUG_CHIP is not set

  809. #
  810. # Dallas's 1-wire bus
  811. #
  812. # CONFIG_W1 is not set

  813. #
  814. # Misc devices
  815. #

  816. #
  817. # Multimedia devices
  818. #
  819. # CONFIG_VIDEO_DEV is not set

  820. #
  821. # Digital Video Broadcasting Devices
  822. #
  823. # CONFIG_DVB is not set

  824. #
  825. # Graphics support
  826. #
  827. CONFIG_FB=y
  828. CONFIG_FB_MODE_HELPERS=y
  829. # CONFIG_FB_TILEBLITTING is not set
  830. # CONFIG_FB_CIRRUS is not set
  831. # CONFIG_FB_PM2 is not set
  832. # CONFIG_FB_CYBER2000 is not set
  833. CONFIG_FB_OF=y
  834. CONFIG_FB_CONTROL=y
  835. CONFIG_FB_PLATINUM=y
  836. CONFIG_FB_VALKYRIE=y
  837. CONFIG_FB_CT65550=y
  838. # CONFIG_FB_ASILIANT is not set
  839. # CONFIG_FB_IMSTT is not set
  840. # CONFIG_FB_VGA16 is not set
  841. # CONFIG_FB_RIVA is not set
  842. # CONFIG_FB_MATROX is not set
  843. # CONFIG_FB_RADEON_OLD is not set
  844. CONFIG_FB_RADEON=y
  845. CONFIG_FB_RADEON_I2C=y
  846. # CONFIG_FB_RADEON_DEBUG is not set
  847. CONFIG_FB_ATY128=y
  848. # CONFIG_FB_ATY is not set
  849. # CONFIG_FB_SAVAGE is not set
  850. # CONFIG_FB_SIS is not set
  851. # CONFIG_FB_NEOMAGIC is not set
  852. # CONFIG_FB_KYRO is not set
  853. # CONFIG_FB_3DFX is not set
  854. # CONFIG_FB_VOODOO1 is not set
  855. # CONFIG_FB_TRIDENT is not set
  856. # CONFIG_FB_VIRTUAL is not set

  857. #
  858. # Console display driver support
  859. #
  860. CONFIG_VGA_CONSOLE=y
  861. # CONFIG_MDA_CONSOLE is not set
  862. CONFIG_DUMMY_CONSOLE=y
  863. CONFIG_FRAMEBUFFER_CONSOLE=y
  864. # CONFIG_FONTS is not set
  865. CONFIG_FONT_8x8=y
  866. CONFIG_FONT_8x16=y

  867. #
  868. # Logo configuration
  869. #
  870. # CONFIG_LOGO is not set
  871. # CONFIG_FB_SPLASH is not set

  872. #
  873. # Speakup console speech
  874. #
  875. # CONFIG_SPEAKUP is not set
  876. CONFIG_SPEAKUP_DEFAULT="none"

  877. #
  878. # Sound
  879. #
  880. CONFIG_SOUND=m
  881. # CONFIG_DMASOUND_PMAC is not set

  882. #
  883. # Advanced Linux Sound Architecture
  884. #
  885. CONFIG_SND=m
  886. CONFIG_SND_TIMER=m
  887. CONFIG_SND_PCM=m
  888. # CONFIG_SND_SEQUENCER is not set
  889. CONFIG_SND_OSSEMUL=y
  890. CONFIG_SND_MIXER_OSS=m
  891. CONFIG_SND_PCM_OSS=m
  892. # CONFIG_SND_VERBOSE_PRINTK is not set
  893. # CONFIG_SND_DEBUG is not set

  894. #
  895. # Generic devices
  896. #
  897. # CONFIG_SND_DUMMY is not set
  898. # CONFIG_SND_MTPAV is not set
  899. # CONFIG_SND_SERIAL_U16550 is not set
  900. # CONFIG_SND_MPU401 is not set

  901. #
  902. # ISA devices
  903. #
  904. # CONFIG_SND_AD1848 is not set
  905. # CONFIG_SND_CS4231 is not set
  906. # CONFIG_SND_CS4232 is not set
  907. # CONFIG_SND_CS4236 is not set
  908. # CONFIG_SND_ES1688 is not set
  909. # CONFIG_SND_ES18XX is not set
  910. # CONFIG_SND_GUSCLASSIC is not set
  911. # CONFIG_SND_GUSEXTREME is not set
  912. # CONFIG_SND_GUSMAX is not set
  913. # CONFIG_SND_INTERWAVE is not set
  914. # CONFIG_SND_INTERWAVE_STB is not set
  915. # CONFIG_SND_OPTI92X_AD1848 is not set
  916. # CONFIG_SND_OPTI92X_CS4231 is not set
  917. # CONFIG_SND_OPTI93X is not set
  918. # CONFIG_SND_SB8 is not set
  919. # CONFIG_SND_SB16 is not set
  920. # CONFIG_SND_SBAWE is not set
  921. # CONFIG_SND_WAVEFRONT is not set
  922. # CONFIG_SND_CMI8330 is not set
  923. # CONFIG_SND_OPL3SA2 is not set
  924. # CONFIG_SND_SGALAXY is not set
  925. # CONFIG_SND_SSCAPE is not set

  926. #
  927. # PCI devices
  928. #
  929. # CONFIG_SND_ALI5451 is not set
  930. # CONFIG_SND_ATIIXP is not set
  931. # CONFIG_SND_ATIIXP_MODEM is not set
  932. # CONFIG_SND_AU8810 is not set
  933. # CONFIG_SND_AU8820 is not set
  934. # CONFIG_SND_AU8830 is not set
  935. # CONFIG_SND_AZT3328 is not set
  936. # CONFIG_SND_BT87X is not set
  937. # CONFIG_SND_CS46XX is not set
  938. # CONFIG_SND_CS4281 is not set
  939. # CONFIG_SND_EMU10K1 is not set
  940. # CONFIG_SND_KORG1212 is not set
  941. # CONFIG_SND_MIXART is not set
  942. # CONFIG_SND_NM256 is not set
  943. # CONFIG_SND_RME32 is not set
  944. # CONFIG_SND_RME96 is not set
  945. # CONFIG_SND_RME9652 is not set
  946. # CONFIG_SND_HDSP is not set
  947. # CONFIG_SND_TRIDENT is not set
  948. # CONFIG_SND_YMFPCI is not set
  949. # CONFIG_SND_ALS4000 is not set
  950. # CONFIG_SND_CMIPCI is not set
  951. # CONFIG_SND_ENS1370 is not set
  952. # CONFIG_SND_ENS1371 is not set
  953. # CONFIG_SND_ES1938 is not set
  954. # CONFIG_SND_ES1968 is not set
  955. # CONFIG_SND_MAESTRO3 is not set
  956. # CONFIG_SND_FM801 is not set
  957. # CONFIG_SND_ICE1712 is not set
  958. # CONFIG_SND_ICE1724 is not set
  959. # CONFIG_SND_INTEL8X0 is not set
  960. # CONFIG_SND_INTEL8X0M is not set
  961. # CONFIG_SND_SONICVIBES is not set
  962. # CONFIG_SND_VIA82XX is not set
  963. # CONFIG_SND_VX222 is not set

  964. #
  965. # ALSA PowerMac devices
  966. #
  967. CONFIG_SND_POWERMAC=m

  968. #
  969. # USB devices
  970. #
  971. # CONFIG_SND_USB_AUDIO is not set
  972. # CONFIG_SND_USB_USX2Y is not set

  973. #
  974. # Open Sound System
  975. #
  976. # CONFIG_SOUND_PRIME is not set

  977. #
  978. # USB support
  979. #
  980. CONFIG_USB=y
  981. # CONFIG_USB_DEBUG is not set

  982. #
  983. # Miscellaneous USB options
  984. #
  985. CONFIG_USB_DEVICEFS=y
  986. # CONFIG_USB_BANDWIDTH is not set
  987. # CONFIG_USB_DYNAMIC_MINORS is not set
  988. # CONFIG_USB_SUSPEND is not set
  989. # CONFIG_USB_OTG is not set
  990. CONFIG_USB_ARCH_HAS_HCD=y
  991. CONFIG_USB_ARCH_HAS_OHCI=y

  992. #
  993. # USB Host Controller Drivers
  994. #
  995. # CONFIG_USB_EHCI_HCD is not set
  996. CONFIG_USB_OHCI_HCD=y
  997. # CONFIG_USB_UHCI_HCD is not set
  998. # CONFIG_USB_SL811_HCD is not set

  999. #
  1000. # USB Device Class drivers
  1001. #
  1002. # CONFIG_USB_AUDIO is not set
  1003. # CONFIG_USB_BLUETOOTH_TTY is not set
  1004. # CONFIG_USB_MIDI is not set
  1005. CONFIG_USB_ACM=m
  1006. CONFIG_USB_PRINTER=m

  1007. #
  1008. # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information
  1009. #
  1010. CONFIG_USB_STORAGE=m
  1011. # CONFIG_USB_STORAGE_DEBUG is not set
  1012. # CONFIG_USB_STORAGE_RW_DETECT is not set
  1013. # CONFIG_USB_STORAGE_DATAFAB is not set
  1014. CONFIG_USB_STORAGE_FREECOM=y
  1015. # CONFIG_USB_STORAGE_ISD200 is not set
  1016. CONFIG_USB_STORAGE_DPCM=y
  1017. # CONFIG_USB_STORAGE_HP8200e is not set
  1018. # CONFIG_USB_STORAGE_SDDR09 is not set
  1019. # CONFIG_USB_STORAGE_SDDR55 is not set
  1020. # CONFIG_USB_STORAGE_JUMPSHOT is not set

  1021. #
  1022. # USB Input Devices
  1023. #
  1024. CONFIG_USB_HID=y
  1025. CONFIG_USB_HIDINPUT=y
  1026. # CONFIG_HID_FF is not set
  1027. # CONFIG_USB_HIDDEV is not set
  1028. # CONFIG_USB_AIPTEK is not set
  1029. # CONFIG_USB_WACOM is not set
  1030. # CONFIG_USB_KBTAB is not set
  1031. # CONFIG_USB_POWERMATE is not set
  1032. # CONFIG_USB_MTOUCH is not set
  1033. # CONFIG_USB_EGALAX is not set
  1034. # CONFIG_USB_XPAD is not set
  1035. # CONFIG_USB_ATI_REMOTE is not set

  1036. #
  1037. # USB Imaging devices
  1038. #
  1039. # CONFIG_USB_MDC800 is not set
  1040. # CONFIG_USB_MICROTEK is not set
  1041. # CONFIG_USB_HPUSBSCSI is not set

  1042. #
  1043. # USB Multimedia devices
  1044. #
  1045. # CONFIG_USB_DABUSB is not set

  1046. #
  1047. # Video4Linux support is needed for USB Multimedia device support
  1048. #

  1049. #
  1050. # USB Network Adapters
  1051. #
  1052. # CONFIG_USB_CATC is not set
  1053. # CONFIG_USB_KAWETH is not set
  1054. # CONFIG_USB_PEGASUS is not set
  1055. # CONFIG_USB_RTL8150 is not set
  1056. # CONFIG_USB_USBNET is not set

  1057. #
  1058. # USB port drivers
  1059. #

  1060. #
  1061. # USB Serial Converter support
  1062. #
  1063. CONFIG_USB_SERIAL=m
  1064. # CONFIG_USB_SERIAL_GENERIC is not set
  1065. # CONFIG_USB_SERIAL_BELKIN is not set
  1066. # CONFIG_USB_SERIAL_WHITEHEAT is not set
  1067. # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
  1068. # CONFIG_USB_SERIAL_CYPRESS_M8 is not set
  1069. # CONFIG_USB_SERIAL_EMPEG is not set
  1070. # CONFIG_USB_SERIAL_FTDI_SIO is not set
  1071. CONFIG_USB_SERIAL_VISOR=m
  1072. # CONFIG_USB_SERIAL_IPAQ is not set
  1073. # CONFIG_USB_SERIAL_IR is not set
  1074. # CONFIG_USB_SERIAL_EDGEPORT is not set
  1075. # CONFIG_USB_SERIAL_EDGEPORT_TI is not set
  1076. # CONFIG_USB_SERIAL_IPW is not set
  1077. # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
  1078. CONFIG_USB_SERIAL_KEYSPAN=m
  1079. # CONFIG_USB_SERIAL_KEYSPAN_MPR is not set
  1080. CONFIG_USB_SERIAL_KEYSPAN_USA28=y
  1081. CONFIG_USB_SERIAL_KEYSPAN_USA28X=y
  1082. # CONFIG_USB_SERIAL_KEYSPAN_USA28XA is not set
  1083. # CONFIG_USB_SERIAL_KEYSPAN_USA28XB is not set
  1084. CONFIG_USB_SERIAL_KEYSPAN_USA19=y
  1085. CONFIG_USB_SERIAL_KEYSPAN_USA18X=y
  1086. CONFIG_USB_SERIAL_KEYSPAN_USA19W=y
  1087. # CONFIG_USB_SERIAL_KEYSPAN_USA19QW is not set
  1088. # CONFIG_USB_SERIAL_KEYSPAN_USA19QI is not set
  1089. CONFIG_USB_SERIAL_KEYSPAN_USA49W=y
  1090. # CONFIG_USB_SERIAL_KEYSPAN_USA49WLC is not set
  1091. # CONFIG_USB_SERIAL_KLSI is not set
  1092. # CONFIG_USB_SERIAL_KOBIL_SCT is not set
  1093. # CONFIG_USB_SERIAL_MCT_U232 is not set
  1094. # CONFIG_USB_SERIAL_PL2303 is not set
  1095. # CONFIG_USB_SERIAL_SAFE is not set
  1096. # CONFIG_USB_SERIAL_CYBERJACK is not set
  1097. # CONFIG_USB_SERIAL_XIRCOM is not set
  1098. # CONFIG_USB_SERIAL_OMNINET is not set
  1099. CONFIG_USB_EZUSB=y

  1100. #
  1101. # USB Miscellaneous drivers
  1102. #
  1103. # CONFIG_USB_EMI62 is not set
  1104. # CONFIG_USB_EMI26 is not set
  1105. # CONFIG_USB_TIGL is not set
  1106. # CONFIG_USB_AUERSWALD is not set
  1107. # CONFIG_USB_RIO500 is not set
  1108. # CONFIG_USB_LEGOTOWER is not set
  1109. # CONFIG_USB_LCD is not set
  1110. # CONFIG_USB_LED is not set
  1111. # CONFIG_USB_CYTHERM is not set
  1112. # CONFIG_USB_PHIDGETKIT is not set
  1113. # CONFIG_USB_PHIDGETSERVO is not set
  1114. # CONFIG_USB_TEST is not set

  1115. #
  1116. # USB ATM/DSL drivers
  1117. #

  1118. #
  1119. # USB Gadget Support
  1120. #
  1121. # CONFIG_USB_GADGET is not set

  1122. #
  1123. # MMC/SD Card support
  1124. #
  1125. # CONFIG_MMC is not set

  1126. #
  1127. # File systems
  1128. #
  1129. CONFIG_EXT2_FS=y
  1130. # CONFIG_EXT2_FS_XATTR is not set
  1131. CONFIG_EXT3_FS=m
  1132. CONFIG_EXT3_FS_XATTR=y
  1133. # CONFIG_EXT3_FS_POSIX_ACL is not set
  1134. # CONFIG_EXT3_FS_SECURITY is not set
  1135. CONFIG_JBD=m
  1136. # CONFIG_JBD_DEBUG is not set
  1137. CONFIG_FS_MBCACHE=y
  1138. # CONFIG_REISERFS_FS is not set
  1139. # CONFIG_JFS_FS is not set
  1140. # CONFIG_XFS_FS is not set
  1141. # CONFIG_MINIX_FS is not set
  1142. # CONFIG_ROMFS_FS is not set
  1143. # CONFIG_QUOTA is not set
  1144. CONFIG_DNOTIFY=y
  1145. # CONFIG_AUTOFS_FS is not set
  1146. # CONFIG_AUTOFS4_FS is not set

  1147. #
  1148. # CD-ROM/DVD Filesystems
  1149. #
  1150. CONFIG_ISO9660_FS=y
  1151. # CONFIG_JOLIET is not set
  1152. # CONFIG_ZISOFS is not set
  1153. CONFIG_UDF_FS=m
  1154. CONFIG_UDF_NLS=y

  1155. #
  1156. # DOS/FAT/NT Filesystems
  1157. #
  1158. CONFIG_FAT_FS=m
  1159. CONFIG_MSDOS_FS=m
  1160. CONFIG_VFAT_FS=m
  1161. CONFIG_FAT_DEFAULT_CODEPAGE=437
  1162. CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
  1163. # CONFIG_NTFS_FS is not set

  1164. #
  1165. # Pseudo filesystems
  1166. #
  1167. CONFIG_PROC_FS=y
  1168. CONFIG_PROC_KCORE=y
  1169. CONFIG_SYSFS=y
  1170. CONFIG_DEVFS_FS=y
  1171. # CONFIG_DEVFS_MOUNT is not set
  1172. # CONFIG_DEVFS_DEBUG is not set
  1173. CONFIG_DEVPTS_FS_XATTR=y
  1174. # CONFIG_DEVPTS_FS_SECURITY is not set
  1175. CONFIG_TMPFS=y
  1176. # CONFIG_TMPFS_XATTR is not set
  1177. # CONFIG_HUGETLB_PAGE is not set
  1178. CONFIG_RAMFS=y

  1179. #
  1180. # Miscellaneous filesystems
  1181. #
  1182. # CONFIG_ADFS_FS is not set
  1183. # CONFIG_AFFS_FS is not set
  1184. CONFIG_HFS_FS=m
  1185. CONFIG_HFSPLUS_FS=m
  1186. # CONFIG_BEFS_FS is not set
  1187. # CONFIG_BFS_FS is not set
  1188. # CONFIG_EFS_FS is not set
  1189. # CONFIG_CRAMFS is not set
  1190. # CONFIG_SQUASHFS is not set
  1191. # CONFIG_VXFS_FS is not set
  1192. # CONFIG_HPFS_FS is not set
  1193. # CONFIG_QNX4FS_FS is not set
  1194. # CONFIG_SYSV_FS is not set
  1195. # CONFIG_UFS_FS is not set

  1196. #
  1197. # Network File Systems
  1198. #
  1199. CONFIG_NFS_FS=y
  1200. CONFIG_NFS_V3=y
  1201. # CONFIG_NFS_V4 is not set
  1202. # CONFIG_NFS_DIRECTIO is not set
  1203. CONFIG_NFSD=y
  1204. CONFIG_NFSD_V3=y
  1205. # CONFIG_NFSD_V4 is not set
  1206. CONFIG_NFSD_TCP=y
  1207. CONFIG_LOCKD=y
  1208. CONFIG_LOCKD_V4=y
  1209. CONFIG_EXPORTFS=y
  1210. CONFIG_SUNRPC=y
  1211. # CONFIG_RPCSEC_GSS_KRB5 is not set
  1212. # CONFIG_RPCSEC_GSS_SPKM3 is not set
  1213. # CONFIG_SMB_FS is not set
  1214. # CONFIG_CIFS is not set
  1215. # CONFIG_NCP_FS is not set
  1216. # CONFIG_CODA_FS is not set
  1217. # CONFIG_AFS_FS is not set

  1218. #
  1219. # Partition Types
  1220. #
  1221. CONFIG_PARTITION_ADVANCED=y
  1222. # CONFIG_ACORN_PARTITION is not set
  1223. # CONFIG_OSF_PARTITION is not set
  1224. # CONFIG_AMIGA_PARTITION is not set
  1225. # CONFIG_ATARI_PARTITION is not set
  1226. CONFIG_MAC_PARTITION=y
  1227. CONFIG_MSDOS_PARTITION=y
  1228. # CONFIG_BSD_DISKLABEL is not set
  1229. # CONFIG_MINIX_SUBPARTITION is not set
  1230. # CONFIG_SOLARIS_X86_PARTITION is not set
  1231. # CONFIG_UNIXWARE_DISKLABEL is not set
  1232. # CONFIG_LDM_PARTITION is not set
  1233. # CONFIG_SGI_PARTITION is not set
  1234. # CONFIG_ULTRIX_PARTITION is not set
  1235. # CONFIG_SUN_PARTITION is not set
  1236. # CONFIG_EFI_PARTITION is not set

  1237. #
  1238. # Native Language Support
  1239. #
  1240. CONFIG_NLS=y
  1241. CONFIG_NLS_DEFAULT="iso8859-1"
  1242. # CONFIG_NLS_CODEPAGE_437 is not set
  1243. # CONFIG_NLS_CODEPAGE_737 is not set
  1244. # CONFIG_NLS_CODEPAGE_775 is not set
  1245. # CONFIG_NLS_CODEPAGE_850 is not set
  1246. # CONFIG_NLS_CODEPAGE_852 is not set
  1247. # CONFIG_NLS_CODEPAGE_855 is not set
  1248. # CONFIG_NLS_CODEPAGE_857 is not set
  1249. # CONFIG_NLS_CODEPAGE_860 is not set
  1250. # CONFIG_NLS_CODEPAGE_861 is not set
  1251. # CONFIG_NLS_CODEPAGE_862 is not set
  1252. # CONFIG_NLS_CODEPAGE_863 is not set
  1253. # CONFIG_NLS_CODEPAGE_864 is not set
  1254. # CONFIG_NLS_CODEPAGE_865 is not set
  1255. # CONFIG_NLS_CODEPAGE_866 is not set
  1256. # CONFIG_NLS_CODEPAGE_869 is not set
  1257. CONFIG_NLS_CODEPAGE_936=m
  1258. # CONFIG_NLS_CODEPAGE_950 is not set
  1259. # CONFIG_NLS_CODEPAGE_932 is not set
  1260. # CONFIG_NLS_CODEPAGE_949 is not set
  1261. # CONFIG_NLS_CODEPAGE_874 is not set
  1262. # CONFIG_NLS_ISO8859_8 is not set
  1263. # CONFIG_NLS_CODEPAGE_1250 is not set
  1264. # CONFIG_NLS_CODEPAGE_1251 is not set
  1265. # CONFIG_NLS_ASCII is not set
  1266. CONFIG_NLS_ISO8859_1=m
  1267. # CONFIG_NLS_ISO8859_2 is not set
  1268. # CONFIG_NLS_ISO8859_3 is not set
  1269. # CONFIG_NLS_ISO8859_4 is not set
  1270. # CONFIG_NLS_ISO8859_5 is not set
  1271. # CONFIG_NLS_ISO8859_6 is not set
  1272. # CONFIG_NLS_ISO8859_7 is not set
  1273. # CONFIG_NLS_ISO8859_9 is not set
  1274. # CONFIG_NLS_ISO8859_13 is not set
  1275. # CONFIG_NLS_ISO8859_14 is not set
  1276. # CONFIG_NLS_ISO8859_15 is not set
  1277. # CONFIG_NLS_KOI8_R is not set
  1278. # CONFIG_NLS_KOI8_U is not set
  1279. # CONFIG_NLS_UTF8 is not set

  1280. #
  1281. # Library routines
  1282. #
  1283. CONFIG_CRC_CCITT=y
  1284. CONFIG_CRC32=y
  1285. # CONFIG_LIBCRC32C is not set
  1286. CONFIG_ZLIB_INFLATE=y
  1287. CONFIG_ZLIB_DEFLATE=y

  1288. #
  1289. # Profiling support
  1290. #
  1291. # CONFIG_PROFILING is not set

  1292. #
  1293. # Kernel hacking
  1294. #
  1295. # CONFIG_DEBUG_KERNEL is not set
  1296. # CONFIG_BOOTX_TEXT is not set

  1297. #
  1298. # Security options
  1299. #
  1300. # CONFIG_KEYS is not set
  1301. # CONFIG_SECURITY is not set

  1302. #
  1303. # Cryptographic options
  1304. #
  1305. # CONFIG_CRYPTO is not set

复制代码

#find /lib/modules/<kernel version>/ -type f -iname '*.o' -or -iname '*.ko'
#nano -w /etc/modules.autoload.d/kernel-2.6
        在这文件里加入开机自动载入的模块
#modules-update

10.配置系统
a.fstab
#nano /etc/fstab
下面是我的配置。

  1. # <fs>                  <mountpoint>    <type>          <opts>                      <dump/pass>
  2. /dev/hda3                /                ext3                noauto,noatime                1 1
  3. /dev/hda4                none                swap                sw                        0 0
  4. /dev/hda5                /home                ext3                noatime                        0 1
  5. /dev/cdroms/cdrom0        /mnt/cdrom        auto                noauto,user                0 0

  6. none                        /proc                proc                defaults                0 0

  7. none                        /dev/shm        tmpfs                defaults                0 0       
复制代码

b.网络信息
# echo tux > /etc/hostname
# echo homenetwork > /etc/dnsdomainname
# echo nis.homenetwork > /etc/nisdomainname
# rc-update add domainname default
配置网络
#nano /etc/conf.d/net
#nano /etc/resolv.conf
#rc-update add net.eth0 default
c.安装系统工具
#emerge metalog
#rc-update add metalog default
#emerge vixie-cron
#rc-update add vixie-cron default

11.配置启动
#emerge yaboot
#nano yaboot.conf
下面是我的配置文件。

  1. ## yaboot.conf generated by yabootconfig 1.0.7
  2. ##
  3. ## run: "man yaboot.conf" for details. Do not make changes until you have!!
  4. ##
  5. ## For a dual-boot menu, add one or more of:
  6. ## bsd=/dev/hdaX, macos=/dev/hdaY, macosx=/dev/hdaZ

  7. boot=/dev/hda2
  8. device=/pci@f2000000/mac-io@17/ata-4@1f000/disk@0:
  9. partition=3
  10. root=/dev/hda3
  11. timeout=30
  12. install=/usr/lib/yaboot/yaboot
  13. magicboot=/usr/lib/yaboot/ofboot
  14. #initrd=/boot/initrd-1024x768
  15. #append="video=atyfb:1024x768-32 splash=silent"

  16. image=/boot/kernel-gentoo-2.6.10
  17.         label=2.6.10
  18.         root=/dev/hda3
  19.         sysmap=/boot/System.map-gentoo-2.6.10
  20.         read-only
复制代码


12.重启系统

#exit
#umount /mnt/gentoo/proc /mnt/gentoo/dev /mnt/gentoo
#reboot
 楼主| 发表于 2005-3-17 19:11:15 | 显示全部楼层
安装并配置X
在/etc/make.conf中加入
  1. USE=“cjk nls"
  2. LINGUAS="zh_CN"
复制代码


#emerge arphicfonts (台湾文鼎字体,简体繁体都有)
#fc-cache -f -v (fontconfig的命令,安装字库)
字体将装在/usr/share/fonts/arphicfonts中

这样了中文的问题就解决了。
不过我还是从windows里拷了simsun.ttc,tahoma.ttf,mingliu.ttc tahomabd.ttf
放在/home/fonts下。
#ln -s /home/fonts /usr/share/fonts/MsFonts
#fc-cache

#emerge xorg-x11
#emerge Xautoconfig
#Xautoconfig(自动生成xorg.conf)
#emerge xfce4

#emerge scim-tables

编辑.xinitrc
#nano .xinitrc

  1. export LC_CTYPE=zh_CN
  2. export LANG=zh_CN
  3. export XMODIFIERS="@im=SCIM"
  4. export XIM=SCIM
  5. export XIM_PROGRAM=SCIM
  6. scim -d
  7. exec starxfce4
复制代码

这样了就行了。不过有些程序字体显示还不是很好。
通过编辑~/.fons.conf进行字体的替换

以下是我的.fonts.conf
这样了就行了。不过字体还是觉得不大好看。

  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <!-- /etc/fonts/local.conf file for local customizations -->
  4. <fontconfig>
  5. <!--
  6.   Enable sub-pixel rendering
  7.         <match target="font">
  8.                 <edit name="rgba" mode="assign"><const>rgb</const></edit>
  9.         </match>
  10. -->
  11. <!-- Font directory list configured on  -->

  12.         <dir>/usr/X11R6/lib/X11/fonts/Type1</dir>
  13.         <dir>/home/fonts</dir>
  14.         <dir>/usr/share/fonts</dir>
  15.         <dir>/usr/local/share/fonts</dir>
  16.         <dir>/usr/X11R6/lib/X11/fonts/75dpi</dir>
  17.         <dir>/usr/X11R6/lib/X11/fonts/100dpi</dir>
  18.         <dir>~/.fonts</dir>

  19. <!-- Default fonts -->
  20. <alias>
  21.         <family>Times New Roman</family>
  22.         <family>Times</family>
  23.         <family>SimSun</family>
  24.         <family>MingLiU</family>
  25.         <default><family>serif</family></default>
  26. </alias>
  27. <alias>
  28.         <family>Tahoma</family>
  29.         <family>SimSun</family>
  30.         <family>MingLiU</family>
  31.         <default><family>sans-serif</family></default>
  32. </alias>
  33. <alias>
  34.         <family>Terminal</family>
  35.         <family>Courier New</family>
  36.         <family>SimSun</family>
  37.         <family>MingLiU</family>
  38.         <default><family>monospace</family></default>
  39. </alias>

  40. <alias>
  41.         <family>serif</family>
  42.         <prefer>
  43.                 <family>Times New Roman</family>
  44.                 <family>Times</family>
  45.                 <family>SimSun</family>
  46.                 <family>MingLiU</family>
  47.         </prefer>
  48. </alias>
  49. <alias>
  50.         <family>sans-serif</family>
  51.         <prefer>
  52.                 <family>Tahoma</family>
  53.                 <family>SimSun</family>
  54.                 <family>MingLiU</family>
  55.         </prefer>
  56. </alias>
  57. <alias>
  58.         <family>monospace</family>
  59.         <prefer>
  60.                 <family>Terminal</family>
  61.                 <family>Courier New</family>
  62.                 <family>SimSun</family>
  63.                 <family>MingLiU</family>
  64.         </prefer>
  65. </alias>

  66. <match target="font" >
  67.         <test name="family" qual="any" >
  68.                    <string>Tahoma</string>
  69.                 <string>Verdana</string>
  70.                 <string>Arial</string>
  71.                 <string>Times</string>
  72.                 <string>Times New Roman</string>
  73.                 <string>Courier</string>
  74.                 <string>Courier New</string>
  75.                 <string>SimSun</string>
  76.                 <string>MingLiU</string>
  77.           </test>
  78.           <edit mode="assign" name="antialias" >
  79.                    <bool>false</bool>
  80.           </edit>
  81. </match>


  82. <!-- Enable sub-pixel rasterisaton on LCD displays -->
  83. <match target="font">
  84.         <edit name="rgba" mode="assign">
  85.                 <const>rgb</const>
  86.         </edit>
  87. </match>

  88. <match target="font">
  89.         <test name="spacing" compare="more_eq">
  90.                 <const>dual</const>
  91.         </test>
  92.         <edit name="globaladvance" mode="assign">
  93.                 <bool>false</bool>
  94.         </edit>
  95. </match>


  96. <!-- bold substitution, by luo: [email]karllo@mail.nbptt.zj.cn[/email] -->
  97. <match>
  98.         <test name="family">
  99.                 <string>SimSun</string>
  100.         </test>
  101.         <test name="weight" compare="eq">
  102.                 <const>bold</const>
  103.         </test>
  104.         <edit name="family" mode="assign_replace">
  105.                 <string>SimHei</string>
  106.         </edit>
  107. <!-- if subtitude fonts has "bold", we can use it, otherwise just comment out       
  108.          <edit name="weight" mode="assign_replace">
  109.                 <const>bold</const>
  110.         </edit>  
  111. -->
  112. </match>

  113. <!-- artificial bold by: firefly-->
  114. <match target="font">
  115.         <test target="pattern" name="weight" compare="more">
  116.                 <const>medium</const>
  117.         </test>
  118.         <edit name="weight" mode="assign">
  119.                 <const>bold</const>
  120.         </edit>
  121. </match>

  122. </fontconfig>
复制代码


这样了就行啦。字体显示完善

#startx


and enjoy..........
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-3-17 19:38:40 | 显示全部楼层
Laptop Support


*   pbbuttonsd is a tool that enables the brightness and volume keys on most ppc laptops. The current versions also work as a powermanager.
   
* gtkpbbuttons gives you a gtk front end for pbbuttonsd (visual feedback on button presses in X). gtkpbbuttons requires gtk and should be added to your X session file (~/.Xsession) for best results (so that it is always running while in X).
   
* powerprefs ties together with pbbuttonsd, and gives you the ability to edit settings such as power-management, trackpad options and various other preferences.
   
* cpudyn allows cpu speed scaling for longer battery life.



  1. # emerge pbbuttonsd; rc-update add pbbuttonsd default
  2. # emerge gtkpbbuttons
  3. # emerge powerprefs
  4. # emerge cpudyn
  5. # rc-update add pbbuttonsd boot
  6. # rc-update add cpudyn boot
复制代码
回复 支持 反对

使用道具 举报

发表于 2005-3-17 20:17:53 | 显示全部楼层
有钱啊!G3 多少米?
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-3-17 22:46:32 | 显示全部楼层
来张图。。。 :%  :%

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
回复 支持 反对

使用道具 举报

发表于 2005-3-22 08:47:04 | 显示全部楼层
精华再说。。

兄弟辛苦了。。

我写过的一篇是装在G4上,和兄弟交流。
http://www.linuxsir.cn/bbs/showthread.php?t=124163
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-6-7 13:42:11 | 显示全部楼层


我换了fluxbox+idesk

:%
回复 支持 反对

使用道具 举报

发表于 2005-6-8 16:48:24 | 显示全部楼层
Gentoo用SuSE的頭像??

Good Job!!
回复 支持 反对

使用道具 举报

发表于 2005-8-2 12:28:23 | 显示全部楼层
楼主,你用那个版本装的G3?我下载的ibox怎么不行呢?光盘启动就无法启动,我的G3还没有软驱。请楼主帮忙啊~
回复 支持 反对

使用道具 举报

发表于 2005-8-2 19:01:58 | 显示全部楼层
Post by oldrabbit
楼主,你用那个版本装的G3?我下载的ibox怎么不行呢?光盘启动就无法启动,我的G3还没有软驱。请楼主帮忙啊~

ibox不支持powerpc的。你得用ppc的盘启动http://gentoo.osuosl.org/releases/ppc/2005.0/installcd/
回复 支持 反对

使用道具 举报

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

本版积分规则

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