Genkernel fork to have some custom behavior.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Tim Yamin d46fc1ea7d
Modularized parallel support in the X86 2.6 configuration.
21 years ago
alpha add alpha profile 21 years ago
generic Bugfixes for bugs #46941, #46641; and a cosmetic fix for LiveCD mount issues. 21 years ago
parisc add makeopts params, and fixes for if old coreutils is in root 21 years ago
parisc64 Ported to parisc64 21 years ago
pkg Removing broken 1.00-pre8 busybox. 21 years ago
ppc What stuff needs to be automatically loaded for each kernel 21 years ago
ppc64 g5 and pseries kernel config 21 years ago
sparc Fixed MAKEOPTS for sparc32 so kernels will reliably build. 21 years ago
sparc64 add makeopts params, and fixes for if old coreutils is in root 21 years ago
x86 Modularized parallel support in the X86 2.6 configuration. 21 years ago
x86_64 gcloop fixes 21 years ago
README Version bump. Closes bugs #34948, #37371, #41129, #41166, #42725, #42815, 21 years ago
TODO Version bump. Closes bugs #34948, #37371, #41129, #41166, #42725, #42815, 21 years ago
gen_arch.sh add new genkernel dev 21 years ago
gen_cmdline.sh Added an error message for mistyped options [ Bug #45946 ] and also shortened 21 years ago
gen_compile.sh A few short fixes: reduced compilation verbosity; bootsplash fix to use both 21 years ago
gen_configkernel.sh Version bump. Closes bugs #34948, #37371, #41129, #41166, #42725, #42815, 21 years ago
gen_determineargs.sh Version bump. Closes bugs #34948, #37371, #41129, #41166, #42725, #42815, 21 years ago
gen_funcs.sh Bugfixes for bugs #46941, #46641; and a cosmetic fix for LiveCD mount issues. 21 years ago
gen_initrd.sh Fix for bug #46596; version header update. 21 years ago
gen_moddeps.sh fixes 21 years ago
gen_package.sh changes for livecd stuff 21 years ago
genkernel Bugfixes for bugs #46941, #46641; and a cosmetic fix for LiveCD mount issues. 21 years ago
genkernel.conf Version bump. Closes bugs #34948, #37371, #41129, #41166, #42725, #42815, 21 years ago
notes add new genkernel dev 21 years ago

README

DEPENDANCIES:

- GCC and binutils
- GNU Bash

USAGE:
See http://www.gentoo.org/doc/en/genkernel.xml or
issue ``genkernel --help''.

PORTING:
To port to other arches:

# cd /usr/share/genkernel
# cp -Rp x86 ${myarch}
# mkdir /usr/share/genkernel/pkg/${myarch}

Modify what is needed in the /usr/share/genkernel/${myarch}
directory, as well making a generic kernel-config.

IMPORTANT KERNEL NOTES:
- You MUST have /dev/pts turned on.
- If you want Bootsplash, you MUST have VESAFB enabled for 2.6,
other framebuffers won't work. You MUST also enable
"video mode selection support" and "Framebuffer Console support"
- To build a kernel with Genkernel you must have
"Block devices->Loopback device support"
"Block devices->RAM disk support"
- To boot genkernel properly, the kernel config must have
RAM disk support and Initial RAM disk support. You should
also set your "Default RAM disk size to 8192"

BOOTING A KERNEL WITH INITRD:

GRUB:
real_root= needs to point to your root partition
root= needs to point to the ramdisk (should stay at /dev/ram0)
init= needs to point to the linuxrc file to execute on the ramdisk
vga= should be the resolution you want your screen. 0x317 is
1024x768 - 16bpp and you'll get a pretty bootsplash if
configured properly

GRUB EXAMPLE ENTRY:
title=2.6.0 [ Genkernel ]
root (hd0,0)
kernel (hd0,0)/boot/kernel-2.6.0-gentoo root=/dev/ram0 init=/linuxrc real_root=/dev/hda3 vga=0x317
initrd (hd0,0)/boot/initrd-2.6.0-gentoo