You first need to select your timezone so that your system knows where it is
located. Look for your timezone in
# ls /usr/share/zoneinfo(Suppose you want to use GMT) # ln -sf /usr/share/zoneinfo/GMT /etc/localtime
The core around which all distributions are built is the Linux kernel. It is the
layer between the user programs and your system hardware. Gentoo provides its
users several possible kernel sources. A full listing with description is
available at the
For PPC you can choose between
# emerge ppc-development-sources
When you take a look in
# ls -l /usr/src/linux lrwxrwxrwx 1 root root 12 Oct 13 11:04 /usr/src/linux -> linux-2.6.1
If this isn't the case (i.e. the symlink points to a different kernel source) change the symlink before you continue:
# rm /usr/src/linux # cd /usr/src # ln -s linux-2.6.1 linux
Now it is time to configure and compile your kernel source. All architectures
can use
Continue now with
Manually configuring a kernel is often seen as the most difficult course every Linux users ever has to go through. Nothing is less true -- after configuring a couple of kernels you don't even remember that it was difficult ;)
However, one thing
Now go to your kernel source directory and execute
# cd /usr/src/linux # make menuconfig
You will be greeted with several configuration sections. We'll first list some options you must activate (otherwise Gentoo will not function, or not function properly without additional tweaks).
First of all, activate the use of development and experimental code/drivers. You need this, otherwise some very important code/drivers won't show up:
Code maturity level options ---> [*] Prompt for development and/or incomplete code/drivers
Now go to
File systems ---> [*] Virtual memory file system support (former shm fs) [*] /proc file system support [*] /dev file system support (EXPERIMENTAL) [*] Automatically mount at boot(Deselect the following unless you have a 2.6 kernel) [ ] /dev/pts file system for Unix98 PTYs(Select one or more of the following options as needed by your system) <*> Reiserfs support <*> Ext3 journalling file system support <*> JFS filesystem support <*> Second extended fs support <*> XFS filesystem support
If you are using PPPoE to connect to the Internet or you are using a dial-up modem, you will need the following options in the kernel:
Network device support ---> <*> PPP (point-to-point protocol) support <*> PPP support for async serial ports <*> PPP support for sync tty ports
The two compression options won't harm but are not definitely needed, neither
does the
If you require it, don't forget to include support in the kernel for your ethernet card.
Disable ADB raw keycodes:
Macintosh Device Drivers ---> [ ] Support for ADB raw keycodes
Also choose the correct RTC support (
Character devices ---> [ ] Enhanced RTC General setup ---> [*] Support for /dev/rtc
Users of OldWorld machines will want HFS support so they can copy compiled kernels to the MacOS partition.
File Systems ---> [*] HFS Support
When you're done configuring your kernel, continue with
Now that your kernel is configured, it is time to compile and install it. Exit
the configuration and run
(Apple/IBM) # make dep && make vmlinux modules modules_install (Pegasos) # make dep && make zImage modules modules_install
When the kernel is done compiling, copy over the kernel image to
(Apple/IBM) # cp vmlinux /boot/kernel-2.4.24 (Pegasos) # cp arch/ppc/boot/images/zImage.chrp /boot/kernel-2.4.24
Also don't forget to copy over the system map:
# cp System.map /boot/System.map-2.4.24
It is also wise to copy over your kernel configuration file to
# cp .config /boot/config-2.4.24
Now continue with
If appropriate, you should emerge ebuilds for any additional hardware that is on your system. Here is a list of kernel-related ebuilds that you could emerge:
| Ebuild | Purpose | Command |
|---|---|---|
Beware though, some of these ebuilds might deal with big dependencies. To verify
what packages will be installed by emerging an ebuild, use
# emerge --pretend xfree-drm
You should list the modules you want automatically loaded in
To view all available modules, run the following
# find /lib/modules/<kernel version>/ -type f -iname '*.o' -or -iname '*.ko'
For instance, to automatically load the
(Example for 2.4 kernels) # nano -w /etc/modules.autoload.d/kernel-2.4
3c59x
Now run
# modules-update
Continue the installation with