Difference between revisions of "Raspberry Pi"

From Funtoo
Jump to navigation Jump to search
m (→‎Edit config.txt: enable 64bit mode)
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Note|See [[:News:New_Raspberry_Pi_and_ODROID_builds|our latest announcement about new Raspberry Pi and ODROID optimized builds]].}}
Funtoo Linux now has builds that are specifically optimized for the following systems, in addition to 'generic' optimized ARM builds:
Funtoo Linux now has builds that are specifically optimized for the following systems, in addition to 'generic' optimized ARM builds:


Line 6: Line 4:
* [[Raspberry Pi (Version 2)]] - Raspberry Pi 2 Model B (Broadcom BCM2836, released Feb 2015.)
* [[Raspberry Pi (Version 2)]] - Raspberry Pi 2 Model B (Broadcom BCM2836, released Feb 2015.)
* [[Raspberry Pi (Version 3)]] - Raspberry Pi 2 Model B version 1.2 (Oct 2016) and Raspberry Pi 3 Model B.
* [[Raspberry Pi (Version 3)]] - Raspberry Pi 2 Model B version 1.2 (Oct 2016) and Raspberry Pi 3 Model B.
* [[ODROID-XU4]] - [http://www.hardkernel.com/main/products/prdt_info.php?g_code=G143452239825 ODROID-XU4] board from ODROID.
* [[ODROID-XU4]] board from ODROID.
* [[Arm64_generic]] Raspberry Pi 4


{{fancywarning|Please, follow http://www.funtoo.org/Funtoo_Linux_Installation_on_ARM.}}
{{fancywarning|Please, follow http://www.funtoo.org/Funtoo_Linux_Installation_on_ARM.}}
Line 15: Line 14:


This document contains notes about getting Funtoo Linux up-and-running on the Raspberry Pi. Most information is already available on other documents, so this document mostly explains how to get the information needed to perform the installation.
This document contains notes about getting Funtoo Linux up-and-running on the Raspberry Pi. Most information is already available on other documents, so this document mostly explains how to get the information needed to perform the installation.
Please read [[Funtoo Linux Installation on ARM]] for general information about installing Funtoo Linux on ARM architecture.


== Installation ==
== Installation ==
Line 43: Line 38:
Mount the partition that will hold your rootfs of the SD card and extract the stage3 you have downloaded.
Mount the partition that will hold your rootfs of the SD card and extract the stage3 you have downloaded.


<console>
{{console|body=
# ##i##mkdir /mnt/SD_root
###i## mkdir /mnt/funtoo
# ##i##mount /dev/sdcard-device-px /mnt/SD_root
###i## mount /dev/sdcard-device-px /mnt/funtoo
</console>
}}


Get firmware and kernel:
Get firmware and kernel:


<console>
{{console|body=
# ##i##cd /tmp/
###i## cd /tmp/
# ##i##git clone --depth 1 git://github.com/raspberrypi/firmware/
###i## git clone --depth 1 git://github.com/raspberrypi/firmware/
# ##i##cp -r firmware/boot/* /mnt/SD_root/boot/
###i## cp -r firmware/boot/* /mnt/funtoo/boot/
# ##i##cp -r firmware/modules /mnt/SD_root/lib/
###i## cp -r firmware/modules /mnt/funtoo/lib/
</console>
}}


=== Edit cmdline.txt ===
=== Edit cmdline.txt ===
<console>
{{console|body=
# ##i##vi /mnt/SD_root/boot/cmdline.txt
###i## nano /mnt/funtoo/boot/cmdline.txt
</console>
}}


Create the line with the boot kernel parameters with the following content:
Create the line with the boot kernel parameters with the following content:


dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 root=/dev/sdcard-device-px rootfstype=ext4 elevator=deadline rootwait
{{file|name=/mnt/funtoo/boot/cmdline.txt|desc=Stifler's Mom|body=
dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 root=/dev/sdcard-device-px rootfstype=ext4 elevator=deadline rootwait
}}


=== Edit config.txt ===
=== Edit config.txt ===
Create the line with the boot kernel parameters:
Create the line with the boot kernel parameters:


<console>
{{console|body=
# ##i##vi /mnt/SD_root/boot/config.txt
###i## nano /mnt/funtoo/boot/config.txt
</console>
}}


To Raspberry Pi B and B+ (armv6j) use '''kernel.img''':
To Raspberry Pi B and B+ (armv6j) use '''kernel.img''':
Line 87: Line 84:
</pre>
</pre>


To Raspberry Pi 4 (armv8) use '''kernel8.img''':
<pre>
arm_64bit=1
kernel=kernel8.img
disable_overscan=0
</pre>


=== Disable console s0 ===
=== Disable console s0 ===
Line 92: Line 96:
Comment out the s0 console (serial) for fix message in dmesg: "INIT: Id" s0 "respawning too fast".
Comment out the s0 console (serial) for fix message in dmesg: "INIT: Id" s0 "respawning too fast".


<console>
{{console|body=
# ##i##vi /mnt/SD_root/etc/inittab
###i##vi /mnt/funtoo/etc/inittab
</console>
}}


  # SERIAL CONSOLES
  # SERIAL CONSOLES

Latest revision as of 09:38, November 13, 2020

Funtoo Linux now has builds that are specifically optimized for the following systems, in addition to 'generic' optimized ARM builds:

In above mentioned guide installation is more detailed

The Raspberry Pi is an ARM device (BCM2835, ARMv6).

This document contains notes about getting Funtoo Linux up-and-running on the Raspberry Pi. Most information is already available on other documents, so this document mostly explains how to get the information needed to perform the installation.

Installation

Gentoo Linux's wiki already provide a complete installation manual for Gentoo Linux. To avoid duplicating information, only parts that are different for Funtoo Linux will be highlighted here.

Gentoo's Raspberry Pi Quick Install Guide

Stage 3

Funtoo Linux Stage 3 tarballs for Raspberry Pi B or B+ (armv6j) can be found on [1].

Funtoo Linux Stage 3 tarballs for Raspberry Pi 2 (armv7) can be found on [2].


Extracting the tarball is done using tar xpf instead of tar xpjf.

Get the firmware and the kernel image of the official kernel raspberry pi project

Install Kernel Linux and modules

The Raspberry Pi Foundation maintains a Linux kernel tree that can run on the Raspberry Pi (hardware), including a pre-compiled version we use here. follow the steps below:

Mount the partition that will hold your rootfs of the SD card and extract the stage3 you have downloaded.

root # mkdir /mnt/funtoo
root # mount /dev/sdcard-device-px /mnt/funtoo

Get firmware and kernel:

root # cd /tmp/
root # git clone --depth 1 git://github.com/raspberrypi/firmware/
root # cp -r firmware/boot/* /mnt/funtoo/boot/
root # cp -r firmware/modules /mnt/funtoo/lib/

Edit cmdline.txt

root # nano /mnt/funtoo/boot/cmdline.txt

Create the line with the boot kernel parameters with the following content:

   /mnt/funtoo/boot/cmdline.txt - Stifler's Mom
dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 root=/dev/sdcard-device-px rootfstype=ext4 elevator=deadline rootwait

Edit config.txt

Create the line with the boot kernel parameters:

root # nano /mnt/funtoo/boot/config.txt

To Raspberry Pi B and B+ (armv6j) use kernel.img:

kernel=kernel.img
disable_overscan=0

To Raspberry Pi 2 (armv7) use kernel7.img:

kernel=kernel7.img
disable_overscan=0

To Raspberry Pi 4 (armv8) use kernel8.img:

arm_64bit=1
kernel=kernel8.img
disable_overscan=0

Disable console s0

Comment out the s0 console (serial) for fix message in dmesg: "INIT: Id" s0 "respawning too fast".

root #vi /mnt/funtoo/etc/inittab
# SERIAL CONSOLES
#s0:12345:respawn:/sbin/agetty 9600 ttyS0 vt100
#s1:12345:respawn:/sbin/agetty 9600 ttyS1 vt100

Raspberry Pi Userland

Get Raspberry Pi userspace tools and libraries (VCGENCMD).

Please read Raspberry Pi Userland (VCGENCMD) for general information about installing VCGENCMD on Funtoo Linux on ARMv6j architecture.


Portage

Update your portage treeː

root # ego --sync

Video FB

Please set -video_cards_omapfb on USE (make.conf) to solve many problems on emerge x11-base/xorg-drivers

Enabling networking on boot

Raspberry Pi 3 WiFi

If you have a Raspberry Pi 3, you will need to create the directory /lib/firmware/brcm and copy all the files located at https://github.com/RPi-Distro/firmware-nonfree/tree/master/brcm80211/brcm into this directory. This will provide the necessary binary firmware for WiFi to function at boot time.

   Note

It is recommended that you emerge wireless-tools and use the iwconfig command to see if Power Management is set to on. If so, use the command iwconfig wlan0 power off in a local startup script to disable wireless power management. This will solve intermittent connectivity issues (WiFi going in/out) over WiFi.

Please consult Funtoo Linux Networking for information regarding network configuration.

Select profile

Funtoo Linux has a different profile than Gentoo. Correct arch , subarch and build will be already set. More information can be found by typing epro show. For more information, see Funtoo Profiles.