Correct unionfs-fuse bincache path and clean up debugging code
[genkernel.git] / README
1 DEPENDANCIES:
2   - GCC and binutils
3   - GNU Bash
4
5 USAGE:
6   See http://www.gentoo.org/doc/en/genkernel.xml or
7   issue ``genkernel --help''.
8
9 PORTING:
10   To port to other arches:
11
12   # cd /usr/share/genkernel
13   # cp -Rp x86 ${myarch}
14   # mkdir /usr/share/genkernel/pkg/${myarch}
15
16   Modify what is needed in the /usr/share/genkernel/${myarch}
17   directory, as well making a generic kernel-config.
18
19 IMPORTANT KERNEL NOTES:
20   - You MUST have /dev/pts turned on.
21     "Block devices->Loopback device support"  
22     "Block devices->RAM disk support"
23   - To boot genkernel properly, the kernel config must have
24     RAM disk support and Initial RAM disk support. You should
25     also set your "Default RAM disk size to 8192"
26
27 BOOTING A KERNEL WITH INITRD:
28
29   GRUB:
30     real_root=  needs to point to your root partition
31     root=       needs to point to the ramdisk (should stay at /dev/ram0)
32     init=       needs to point to the linuxrc file to execute on the ramdisk
33     vga=        should be the resolution you want your screen. 0x317 is
34                 1024x768 - 16bpp and you'll get a pretty splash if
35                 configured properly
36
37   GRUB EXAMPLE ENTRY:
38     title=2.6.0 [ Genkernel ]
39     root (hd0,0)
40     kernel (hd0,0)/boot/kernel-2.6.0-gentoo root=/dev/ram0 init=/linuxrc real_root=/dev/hda3 vga=0x317
41     initrd (hd0,0)/boot/initrd-2.6.0-gentoo