um yeah i got to this part and i cant get anywhere... should (if i can) skip it or what?
its the part where i guess your suppose to install and activate it...
i typed...
#c-update add coldplug boot
*/sbin/rc-update: /etc/init.d/coldplug not found; aborting
then i tryed
#rc -update add coldplug boot
*Caching service dependencies...
*ERROR: runlevel -update does not exist; exiting...
then i typed it again and all i get is
#rc -update add coldplug boot
*ERROR: runlevel -update does not exist; exiting...
This is where im stuct at in the Guide...
7.d. Alternative: Using genkernel
If you are reading this section, you have chosen to use our genkernel script to configure your kernel for you.
Now that your kernel source tree is installed, it's now time to compile your kernel by using our genkernel script to automatically build a kernel for you. genkernel works by configuring a kernel nearly identically to the way our Installation CD kernel is configured. This means that when you use genkernel to build your kernel, your system will generally detect all your hardware at boot-time, just like our Installation CD does. Because genkernel doesn't require any manual kernel configuration, it is an ideal solution for those users who may not be comfortable compiling their own kernels.
Now, let's see how to use genkernel. First, emerge the genkernel ebuild:
Code Listing 14: Emerging genkernel
# emerge genkernel
Now, compile your kernel sources by running genkernel all. Be aware though, as genkernel compiles a kernel that supports almost all hardware, this compilation will take quite a while to finish!
Note that, if your boot partition doesn't use ext2 or ext3 as filesystem you might need to manually configure your kernel using genkernel --menuconfig all and add support for your filesystem in the kernel (i.e. not as a module). Users of EVMS2 or LVM2 will probably want to add --evms2 or --lvm2 as argument as well.
Code Listing 15: Running genkernel
# genkernel all
Once genkernel completes, a kernel, full set of modules and initial root disk (initrd) will be created. We will use the kernel and initrd when configuring a boot loader later in this document. Write down the names of the kernel and initrd as you will need it when writing the bootloader configuration file. The initrd will be started immediately after booting to perform hardware autodetection (just like on the Installation CD) before your "real" system starts up.
Code Listing 16: Checking the created kernel image name and initrd
# ls /boot/kernel* /boot/initramfs*
Now, let's perform one more step to get our system to be more like the Installation CD -- let's emerge coldplug. While the initrd autodetects hardware that is needed to boot your system, coldplug autodetects everything else. To emerge and enable coldplug, type the following:
Code Listing 17: Emerging and enabling coldplug
# emerge coldplug
# rc-update add coldplug boot