现在不一定要nitro sources了,gentoo-dev-sources也有相关选项了。
http://dev.gentoo.org/~spock/pro ... in-5-easy-steps.php
This document describes how to get fbsplash up-n-running in a fast and
painless way.
0) Preparation. Make sure you that you either have your ACCEPT_KEYWORDS set
to ~<your_arch> (eg. ~x86) or that you add:
sys-kernel/gentoo-dev-sources ~x86
media-gfx/splashutils ~x86
to your /etc/portage/package.keywords.
1) Install the latest Gentoo kernel sources:
# emerge gentoo-dev-sources
2) Configure, build and install your kernel: (内核有关选项)
# cd /usr/src/linux
# make menuconfig
# make
# make install modules_install
3) Install splashutils:
# emerge splashutils
4) Create an initramfs image for fbsplash:
# splash_geninitramfs -v -g /boot/fbsplash-emergence-1024x768 -r 1024x768 emergence
5) Configure your bootloader: (instructions for grub)
# cd /boot/grub
Edit menu.lst, find the entry for your kernel, and put 'splash=silent,theme:emergence'
onto the kernel command line. You should get something like this:
title Gentoo Linux (g-d-s 2.6.8.1)
root (hd0,4)
kernel /boot/gentoo-2.6.8.1 ro root=/dev/hda1 video=vesafb:ywrap,pmipal,1024x768-32@85 splash=silent,theme:emergence
initrd /boot/fbsplash-emergence-1024x768
This is it. Reboot and enjoy fbsplash  |