This is Gentoo's testing wiki. It is a non-operational environment and its textual content is outdated.
Please visit our production wiki at https://wiki.gentoo.org
Raspberry Pi 3 64 bit Install
This Page Has Been Tested Twice and found to WFM. It Might Still Drink All The Beer in Your Fridge ... or Worse
Overview
History
Its been about a year since the Raspberry Pi 3 with a 64-bit capable CPU became available. At the outset, it was difficult to install Gentoo on the Pi 3 in 64-bit mode. A lot of work by a lot of people has almost brought a 64-bit Gentoo install on the Pi 3 down to almost a standard handbook install.
The Gentoo arm64 offering is experimental at the time of writing. That means that very little is marked stable. Expect to use ACCEPT_KEYWORDS="~arm64"
and then use package.accept_keywords too.
What works
All the Pi 3 hardware is supported in 64-bit mode. That's
WiFi USB Ethernet (needs USB) Bluetooth Hardware Video Acceleration Sound over HDMI
Untested
PAL/NTSC Video Output Analogue Sound Output
Whats required
Gentoo Install on a PC microSD card reader for the PC Raspberry Pi 3 microSD card > 8G USB Keyboard USB Mouse HDMI Display
The content of the microSD card will be wiped during the install.
Installation overview
- Install crossdev on the PC
- Fetch the Raspberry Pi firmware
- Fetch the Raspberry Pi kernel
- Partition the microSD card
- Fetch the Gentoo bits of the install
- Cross compile and install your kernel
- Setup
- Boot the Pi to Test
Install crossdev on the PC
There are no prebuilt kernel images for the Pi 3 in its arm64 mode. Until you have a arm64 kernel, you can't boot it in 64-bit mode. Its a little chicken and egg. Once the Pi is running, it can build its own kernels.
crossdev is Gentoos' tool for building cross compiler tool chains. Once its installed, we will use it to build the arm64 kernel on the Gentoo PC.
root #
emerge --ask sys-devel/crossdev
will install the crossdev tool.
Using crossdev to build a cross compiler
root #
crossdev -t aarch64-unknown-linux-gnu
You may need to nominate an overlay to store the cross ebuilds, crossdev will let you know.
There are other parameters you can pass to crossdev too.
Do not use
-S
to build a stable toolchain, arm64 moves quicklyCrossdev insists that many of the files in /etc/portage/ are directories
Convert files as crossdev asks e.g.
error: please convert /etc/portage/package.env to a directory
by appending _file to the existing filename
root #
mv /etc/portage/package.env /etc/portage/package.env_file
making the directory
root #
mkdir /etc/portage/package.env
then moving package.env_file into the directory.
root #
mv /etc/portage/package.env_file /etc/portage/package.env
Rinse and repeat until crossdev is happy.
crossdev will take a while. It's building
binutils: binutils-[latest] gcc: gcc-[latest] headers: linux-headers-[latest] libc: glibc-[latest]
When crossdev completes you will have a cross toolchain
user $
gcc-config -l
[1] aarch64-unknown-linux-gnu-5.4.0 * [2] x86_64-pc-linux-gnu-5.3.0 [3] x86_64-pc-linux-gnu-5.4.0 *
It will also create an arm64 target root in /usr/aarch64-unknown-linux-gnu This is used by cross emerge.
Pure cross compiling, other than the kernel, is out of scope of this guide.
Fetch the Raspberry Pi firmware
The Raspberry Pi Firmware is maintained in a git repository. You will need to install git if you don't have it.
root #
emerge --ask dev-vcs/git
Don't do anything you don't need to do as root.
As your normal user, make some space in the home directory for raspberry pi
user $
mkdir raspberrypi
will do nicely.
This will be for the Raspberry Pi firmware and kernel
user $
cd raspberrypi
user $
git clone -b stable --depth=1 https://github.com/raspberrypi/firmware
will fetch the Pi firmware into a directory called firmware
As we only need the /boot directory out of the stable branch, depth option is used so that not all the history will be fetched, but a lot of space, bandwidth and time is saved.
There is nothing to build. ~/raspberrypi/firmware/boot is used as is.
Fetch, configure and build the Raspberry Pi kernel
Fetch the Raspberry Pi kernel
Stay in raspberrypi directory and
user $
git clone https://github.com/raspberrypi/linux
will fetch the kernel into a directory called linux.
With absolutely no fanfare at all, 64-bit support was added to this kernel tree late in 2016. No more searching for odd patches.
Not everything has been accepted by the mainline kernel yet but it's getting closer. Feel free to test for yourself.
The master branch may be broken as its commit by commit as it happens. Test if you want to. It's better to use a release branch. At the time of writing that is rpi-4.14.y. The 4.14 mainline kernel is still at -rc status.
user $
cd linux
user $
git checkout rpi-4.14.y
Checking out files: 100% (33079/33079), done. Branch rpi-4.14.y set up to track remote branch rpi-4.14.y from origin. Switched to a new branch 'rpi-4.14.y'
That's the kernel source tree in place, ready for configuring and cross compiling.
Configure the kernel
ARCH=arm64
must be specified everywhere or the kernel build system will use the host arch. This will destroy the arm64 .config fileAs your user
user $
cd raspberrypi/linux
The bcmrpi3_defconfig config file is almost right as it stands. It defaults to the powersave CPU governor, which runs the Pi at 600MHz. All the governors are there. Ondemand is recommended.
user $
ARCH=arm64 CROSS_COMPILE=aarch64-unknown-linux-gnu- make bcmrpi3_defconfig
Either use menuconfig to change the default CPU governor, add something to the kernel command line, or change it after booting.
user $
ARCH=arm64 CROSS_COMPILE=aarch64-unknown-linux-gnu- make menuconfig
Search for CPU_FREQ_DEFAULT_GOV go to that location and set the default to Ondemand. Exit menuconfig, saving the change.
.config - Linux/arm64 4.14.72-raspberrypi Kernel Configuration > CPU Power Management > CPU Frequency scaling ────────────────────────────────── ┌────────────────────────── CPU Frequency scaling ───────────────────────────┐ │ Arrow keys navigate the menu. <Enter> selects submenus ---> (or empty │ │ submenus ----). Highlighted letters are hotkeys. Pressing <Y> includes, │ │ <N> excludes, <M> modularizes features. Press <Esc><Esc> to exit, <?> │ │ for Help, </> for Search. Legend: [*] built-in [ ] excluded <M> module │ │ ┌────────────────────────────────────────────────────────────────────────┐ │ │ │ [*] CPU Frequency scaling │ │ │ │ [*] CPU frequency transition statistics │ │ │ │ [ ] CPU frequency transition statistics details │ │ │ │ Default CPUFreq governor (powersave) ---> │ │ │ │ <*> 'performance' governor │ │ │ │ -*- 'powersave' governor │ │ │ │ <*> 'userspace' governor for userspace frequency scaling │ │ │ │ <*> 'ondemand' cpufreq policy governor │ │
The kernel .config contains lots of support for hardware you don't have and possibly have never heard of. More confident readers may be tempted to trim things out now. A word of advice - don't, at least, not until the system boots.
Cross compiling the kernel
The kernel will not link with the gold linker. It ends with
aarch64-unknown-linux-gnu-ld: fatal error: -shared and -pie are incompatible
If you don't know what the gold linker is, you are not using it.
The build is conventional, other than telling the build system to build for arm64 and use the cross compiler.
user $
ARCH=arm64 CROSS_COMPILE=aarch64-unknown-linux-gnu- make -jX
Change X
to the number of parallel make jobs you want to run. Convention is cores+1.
Partition the microSD card
This step will destroy ALL the data on the microSD card
Background
The Raspberry Pi does not need a boot loader. There is no firmware for the ARM CPU, like there is in a PC. Instead, the GPU manages loading software for the CPU to execute, while the CPU is held reset. Its the GPU that has the 'BIOS' that gets everything started.
This makes it impossible to brick the Pi, since at worst, the microSD card needs to be reloaded.
This arrangement does impose some constraints on the microSD card.
The partition table must be MSDOS The first partition (/boot) must be vfat.
The bootcode.bin file has some useful defaults that make setup easier, which we will take advantage of later.
Partitioning
Depending on how the microSD card is connected to you PC, it my be /dev/sdX or /dev/mmcblkY
Check! Do get it right - Don't ruin your PC install
In the example below, it's /dev/sdk.
Using the partitioning tool of your choice, make three partitions on your microSD card.
boot 128Mb swap 2G root (/) the rest.
Using fdisk, and your microSD card block device, not my /dev/sdk
root #
fdisk /dev/...
Make the partition table and add partitions
Make a new MS-DOS disklable
Command (m for help): o
Add a new partition - this will be 128Mb for /boot
Command (m for help): n Partition type p primary (0 primary, 0 extended, 4 free) e extended (container for logical partitions) Select (default p): p Partition number (1-4, default 1): 1 First sector (2048-15523839, default 2048): Last sector, +sectors or +size{K,M,G,T,P} (2048-15523839, default 15523839): +128M
Has created a new partition 1 of type 'Linux' and of size 128 MiB.
Add a 2G partition 2 for swap.
Put the remaining space in partition 3 for root.
Check with
Command (m for help): p
Using an 8G microSD card it should show
Device Boot Start End Sectors Size Id Type /dev/sdk1 2048 264191 262144 128M 83 Linux /dev/sdk2 264192 4458495 4194304 2G 83 Linux /dev/sdk3 4458496 15523839 11065344 5.3G 83 Linux
Set flags and partition types
Toggle the bootable flag on partition 1
Command (m for help): a Partition number (1-3, default 3): 1
The bootable flag on partition 1 is enabled now.
Mark partition 1 as FAT
Command (m for help): t Partition number (1-3, default 3): 1 Partition type (type L to list all types): c Changed type of partition 'Linux' to 'W95 FAT32 (LBA)'.
The Pi checks the type of partition 1 in the partition table and will not boot if its 82
Mark partition 2 as swap
Command (m for help): t Partition number (1-3, default 3): 2 Partition type (type L to list all types): 82 Changed type of partition 'Linux swap / Solaris' to 'Linux swap / Solaris'.
Check again.
Device Boot Start End Sectors Size Id Type /dev/sdk1 * 2048 264191 262144 128M c W95 FAT32 (LBA) /dev/sdk2 264192 4458495 4194304 2G 82 Linux swap / Solaris /dev/sdk3 4458496 15523839 11065344 5.3G 83 Linux
Save the new partition table
Nothing has been written to the microSD card yet. This is the last opportunity to back out
Exit fdisk with either w or q
w write table to disk and exit q quit without saving changes
Make filesystems
You know the block devices from the partitioning step above. Fill in the ... to match your system.
vfat for /boot
root #
mkfs -t vfat -F 32 /dev/...1
Be sure to add the
-F 32
switch. When using mkfs to make a vfat file system and -F 32
is not explicitly defined, mkdosfs will automatically select between 12, 16 and 32-bit, whatever mkdosfs thinks will fit better for the file system size, which in this case it would default to FAT16. This partition MUST be formatted FAT32 in order for the Raspberry Pi to boot.mkswap for swap
root #
mkswap /dev/...2
ext4 for root
root #
mkfs -i 8192 -t ext4 /dev/...3
-i 8192
makes an inode for every two filesystem blocks, 8kBThe inode count cannot be changed after filesystem creation and can limit the number of files on a files system. The Gentoo repository alone needs over 17,000 inodes.
Fetch the Gentoo bits of the install
To make it easy to cross refer to the Gentoo_Handbook
root #
mkdir /mnt/gentoo
Mount the microSD card root filesystem at /mnt/gentoo
root #
mount /dev/xxx3 /mnt/gentoo
Install the arm64 stage 3
Following the Gentoo_Handbook fetch the arm64 stage3 and untar it to /mnt/gentoo in the normal way.
/mnt/gentoo/tmp should be empty. Clear it now or the the Pi will do it at boot.
That may take a long time.
root #
rm -rf /mnt/gentoo/tmp/*
Before and after clearing /mnt/gentoo/tmp
Filesystem 1K-blocks Used Available Use% Mounted on /dev/sdk3 5380212 1205968 3881228 24% /mnt/gentoo /dev/sdk3 5380212 874636 4212560 18% /mnt/gentoo
Install a Portage snapshot
This step is not actually needed to boot the Pi but emerge won't work without it
Following the Gentoo_Handbook fetch and unpack a portage shapshot in the normal way.
Careful readers can copy their host /usr/portage as long as ./packages and ./distfiles are omitted.
Populating /boot
The Raspberry Pi Foundation provided files
Mount the microSD card boot at /mnt/gentoo/boot. (The microSD card root should still be mounted at /mnt/gentoo)
root #
mount /dev/xxx1 /mnt/gentoo/boot
As root, copy the content of your normal users ~/raspberrypi/firmware/boot to /mnt/gentoo/boot.
root #
cp -rv ~<user>/raspberrypi/firmware/boot/* /mnt/gentoo/boot
You should end up with files in /mnt/gentoo/boot, not a directory called boot.
Not all the files there are required. It's a one size fits all for all models of Raspberry Pi operating in 32-bit mode.
Install the kernel to the microSD card
The kernel was built above, now to install it.
The kernel is in three parts
kernel binary kernel modules the device tree
Install the kernel binary
As root, copy the kernel binary from the build location
root #
cp /home/<user>/raspberrypi/linux/arch/arm64/boot/Image /mnt/gentoo/boot/kernel8.img
If the /boot/kernel8.img file exists, the bootcode.bin sets up the Pi for 64-bit operation and loads /boot/kernel8.img as the kernel.
It is possible to use other kernel file names by adding entries to /boot/config.txt
Install the device tree
The device tree binary (.dtb) describes the hardware to the kernel. This avoids having all the existing hardware configurations are coded into the kernel.
Due to the way the Raspberry Pi 64-bit kernel support has been added, there are going to be two different device trees with the same file name. A 32-bit version and a 64-bit version. They are not interchangeable. Move the 32-bit version out of the way.
For Raspberry Pi 3B:
root #
mv /mnt/gentoo/boot/bcm2710-rpi-3-b.dtb /mnt/gentoo/boot/bcm2710-rpi-3-b.dtb_32
For Raspberry Pi 3B Plus:
root #
mv /mnt/gentoo/boot/bcm2710-rpi-3-b-plus.dtb /mnt/gentoo/boot/bcm2710-rpi-3-b-plus.dtb_32
That's renamed the 32-bit version.
Copy the dtb from the build location
For Raspberry Pi 3B:
root #
cp /home/<user>/raspberrypi/linux/arch/arm64/boot/dts/broadcom/bcm2710-rpi-3-b.dtb /mnt/gentoo/boot
For Raspberry Pi 3B Plus:
root #
cp /home/<user>/raspberrypi/linux/arch/arm64/boot/dts/broadcom/bcm2710-rpi-3-b-plus.dtb /mnt/gentoo/boot
It is possible to use other device tree file names by adding entries to /boot/config.txt
Install the kernel modules
From the top of the kernel tree, install the kernel modules.
root #
cd /home/<user>/raspberrypi/linux
root #
ARCH=arm64 CROSS_COMPILE=aarch64-unknown-linux-gnu- make modules_install INSTALL_MOD_PATH=/mnt/gentoo
The INSTALL_MOD_PATH is the root of the filesystem the modules are to be installed into. Due to kernel naming
user $
uname -a
Linux Pi3 64bit 4.10.0-rc6-v8+ #2 SMP PREEMPT Thu Feb 2 20:34:34 GMT 2017 aarch64 GNU/Linux
it's unlikely you will have a 4.10.0-rc6-v8+ so omitting INSTALL_MOD_PATH is probably harmless to your build host install.
Checking the kernel install
root #
ls /mnt/gentoo/boot
COPYING.linux bcm2708-rpi-cm.dtb bcm2710-rpi-cm3.dtb fixup_db.dat kernel8.img start_db.elf LICENCE.broadcom bcm2709-rpi-2-b.dtb bootcode.bin fixup_x.dat overlays start_x.elf bcm2708-rpi-b-plus.dtb bcm2710-rpi-3-b.dtb fixup.dat kernel.img start.elf bcm2708-rpi-b.dtb bcm2710-rpi-3-b.dtb_32 fixup_cd.dat kernel7.img start_cd.elf
Notice the two bcm2710-rpi-3-b.dtb device tree binaries and the kernel8.img.
root #
ls /mnt/gentoo/lib/modules
4.10.0-rc6-v8+
Shows that the kernel modules were installed to the correct location.
Raspberry Pi 3 peripherals
Now that we have the base operating system in, we will need to do some file configuration by hand to get the peripherals working.
Serial port configuration
The Gentoo stage 3 comes with the default Gentoo serial port configuration. In Raspbian Jessie, udev rules exist that provide aliases for GPIO14:15 (/dev/serial0) and the Bluetooth serial port (/dev/serial1). If you're not using the pi3-miniuart-bt or the pi3-disable-bt device tree overlays, ttyS0 (mini UART) points to /dev/serial0 (GPIO14:15) while ttyAMA0 (Bluetooth) points to /dev/serial1 (Bluetooth).
If, however, the pi3-miniuart-bt overlay is in use, udev rules automagically make ttyAMA0 point to /dev/serial0 (GPIO14:15) while ttyS0 points to /dev/serial1 (Bluetooth). If the pi3-disable-bt overlay is in use, ttyAMA0 still points to /dev/serial0 (GPIO14:15) while Bluetooth/ttyS0 are disabled.
This allows the use of /dev/serial1 in any Bluetooth configuration files and command line arguments regardless of which serial port it is assigned to. It also allows the use of /dev/serial0 in any apps and/or configuration files/command line arguments which reference the GPIO14:15 pins regardless of which overlay is/is not in use.
In order to make things easier when working with the device tree overlays for the Bluetooth module as well as any applications which were written in a Raspbian environment that uses the serial0 and serial1 aliases, we'll need to first create a udev rule to mimic this behavior.
Open up /mnt/gentoo/etc/inittab -
root #
nano -w /mnt/gentoo/etc/inittab
Find this line and comment it out by appending a # at the beginning of the line -
f0:12345:respawn:/sbin/agetty 9600 ttyAMA0 vt100
Save and exit the file. This prevents Gentoo from assigning the serial console to ttyAMA0 on /root mount, which will conflict with Bluetooth operation if left uncommented.
Next, create the empty file 99-com.rules in /mnt/gentoo/etc/udev/rules.d -
root #
nano -w /mnt/gentoo/etc/udev/rules.d/99-com.rules
Copy and paste this into the empty file, then save and exit the file -
SUBSYSTEM=="input", GROUP="input", MODE="0660" SUBSYSTEM=="i2c-dev", GROUP="i2c", MODE="0660" SUBSYSTEM=="spidev", GROUP="spi", MODE="0660" SUBSYSTEM=="bcm2835-gpiomem", GROUP="gpio", MODE="0660" SUBSYSTEM=="gpio*", PROGRAM="/bin/sh -c '\ chown -R root:gpio /sys/class/gpio && chmod -R 770 /sys/class/gpio;\ chown -R root:gpio /sys/devices/virtual/gpio && chmod -R 770 /sys/devices/virtual/gpio;\ chown -R root:gpio /sys$devpath && chmod -R 770 /sys$devpath\ '" KERNEL=="ttyAMA[01]", GROUP="dialout", PROGRAM="/bin/sh -c '\ ALIASES=/proc/device-tree/aliases; \ if cmp -s $ALIASES/uart0 $ALIASES/serial0; then \ echo 0;\ elif cmp -s $ALIASES/uart0 $ALIASES/serial1; then \ echo 1; \ else \ exit 1; \ fi\ '", SYMLINK+="serial%c" KERNEL=="ttyS0", GROUP="dialout", PROGRAM="/bin/sh -c '\ ALIASES=/proc/device-tree/aliases; \ if cmp -s $ALIASES/uart1 $ALIASES/serial0; then \ echo 0; \ elif cmp -s $ALIASES/uart1 $ALIASES/serial1; then \ echo 1; \ else \ exit 1; \ fi \ '", SYMLINK+="serial%c"
This will assign ttyS0 and ttyAMA0 to the dialout group just as they are in Raspbian Jessie. It will also provide the serial0 (GPIO14:15) and serial1 (Bluetooth) aliases, which eases the task of switching the serial ports around between the Bluetooth and GPIO14:15.
Install WiFi firmware
The Raspberry Pi 3 WiFi requires firmware to operate. The files brcmfmac43430-sdio.txt and brcmfmac43430-sdio.bin are both required to be present in /mnt/gentoo/lib/firmware/brcm for Raspberry Pi 3B, while the files brcmfmac43455-sdio.txt and brcmfmac43455-sdio.bin are required for Raspberry Pi 3B Plus.
They can be downloaded via wireless.wiki.kernel.org. Alternatively, you can also pull them from /lib/firmware/brcm on an existing Raspbian installation. Copy the entire /lib/firmware/brcm directory from a Raspbian install into the Gentoo /mnt/gentoo/lib/firmware directory.
Kernel
You'll also want to ensure that Broadcom IEEE802.11n embedded FullMAC WLAN driver with SDIO bus interface support is enabled in the kernel. In the menu shown below, this is all that needs to be enabled. You can set the FullMAC WLAN driver as a module or compile it into the kernel. If you plan to use only the onboard WiFi, everything else under the Wireless LAN menu can be disabled.
Device Drivers--> Network Device Support--> Wireless LAN--> [*] Broadcom devices < > Broadcom 43xx wireless support (mac80211 stack) < > Broadcom 43xx-legacy wireless support (mac80211 stack) < > Broadcom IEEE802.11n PCIe SoftMAC WLAN driver <*/M> Broadcom FullMAC WLAN driver [*] SDIO bus interface support for FullMAC driver [ ] USB bus interface support for FullMAC driver [ ] Broadcom device tracing [ ] Broadcom driver debug functions
Once the firmware files are copied over to /mnt/gentoo/lib/firmware/brcm, the appropriate kernel settings are built, and a wireless network manager (such as wpa_supplicant) is installed, the WiFi should work.
Install Bluetooth firmware
The Raspberry Pi 3B needs the BCM43430A1.hcd firmware file, and the Raspberry Pi 3B+ needs the BCM4345C0.hcd firmware file. The firmware files can be found in the Raspbian bluez-firmware GitHub repository. The firmware files need to be placed in the /mnt/gentoo/lib/firmware/brcm directory.
Create the firmware directory:
root #
mkdir -p /mnt/gentoo/lib/firmware/brcm
Fetch the Raspberry Pi 3B Bluetooth firmware:
root #
wget -P /mnt/gentoo/lib/firmware/brcm https://raw.githubusercontent.com/RPi-Distro/bluez-firmware/master/broadcom/BCM43430A1.hcd
Fetch the Raspberry Pi 3B+ Bluetooth firmware:
root #
wget -P /mnt/gentoo/lib/firmware/brcm https://raw.githubusercontent.com/RPi-Distro/bluez-firmware/master/broadcom/BCM4345C0.hcd
After boot:
Attach the serial device /dev/ttyAMA0 to the Bluetooth stack using btattach, which is provided by the net-wireless/bluez package:
root #
btattach -B /dev/ttyAMA0 -P bcm -S 3000000
Alternatively, hciattach can be used if net-wireless/bluez is built with the deprecated
USE flag enabled:
root #
hciattach /dev/ttyAMA0 bcm43xx 3000000 flow - <bdaddr>
Both commands will create a HCI device (e.g. hci0) in /sys/class/bluetooth and load the required firmware. To have the HCI device created at boot using btattach, the following OpenRC init script can be used:
#!/sbin/openrc-run command="/usr/bin/btattach" command_args="-B /dev/ttyAMA0 -P bcm -S 3000000" command_background=true pidfile="/run/btattach.pid" depend() { after coldplug hotplug modules need localmount }
Make the init script executable:
root #
chmod +x /mnt/gentoo/etc/init.d/btattach
After booting Pi
Start btattach:
root #
rc-service btattach start
Start btattach at boot:
root #
rc-update add btattach default
Setup
The chroot environment is very handy as it allows you to configure your startup run levels (rc-update) as well as update your Portage snapshot (emerge --sync). Additionally, you can set the root password as well as create users in the chroot environment.
If you plan to only access your Pi via SSH, you'll need at least networking on startup, which requires either net.eth0 or dhcpcd to be added to the default run level, as well as OpenSSH itself (sshd).
Much of the setup prior to booting a new Gentoo install is done in a chroot. Chrooting into an arm64 install from some other arch is beyond the scope of this guide. Instead, only the bare minimum setup from outside the chroot is covered. Consult the Embedded Handbook/General/Compiling with qemu user chroot page to learn how to use qemu to establish a cross-chroot.
The only emerge task that seems to work within an arm64 cross-chroot environment is emerge --sync. You have to wait to boot into the Gentoo installation on the Pi in order to emerge packages. This includes emerge -auND @world. But you can get all the necessary pre-boot things configured in the chroot environment.
Root Password
You need this to be able to log in at all
There are several ways to generate a password hash for /etc/shadow. I usually copy the hash from another system. My Pi uses an /etc/shadow root entry:
root:$6$xxPVR/Td5iP$/7Asdgq0ux2sgNkklnndcG4g3493kUYfrrdenBXjxBxEsoLneJpDAwOyX/kkpFB4pU5dlhHEyN0SK4eh/WpmO0::0:99999:7:::
The matching password is raspberry.
Feel free to use that line to replace the root entry in /mnt/gentoo/etc/shadow
You can change the password once you are logged in.
/etc/fstab
On the Pi, the microSD card will be /dev/mmcblk0 with partitions /dev/mmcblk0p1, /dev/mmcblk0p2 and /dev/mmcblk0p3
Edit /mnt/gentoo/etc/fstab to match.
/dev/mmcblk0p1 /boot vfat noauto,noatime 1 2 /dev/mmcblk0p2 none swap sw 0 0 /dev/mmcblk0p3 / ext4 noatime 0 1
/boot/config.txt
This file will not exist until its created. Create it with the following content.
# have a properly sized image disable_overscan=1 # lets have the VC4 hardware accelerated video dtoverlay=vc4-fkms-v3d # for sound over HDMI hdmi_drive=2 # Enable audio (loads snd_bcm2835) dtparam=audioon # gpu_mem is for closed-source driver only; since we are only using the # open-source driver here, set low gpu_mem=16
Alternative: Use the /boot/config.txt from a working Raspbian install
Here is a config.txt file from a working Raspbian install. If the above does not work, this one should.
# For more options and information see # http://rpf.io/configtxt # Some settings may impact device functionality. See link above for details # uncomment if you get no picture on HDMI for a default "safe" mode #hdmi_safe=1 # uncomment this if your display has a black border of unused pixels visible # and your display can output without overscan disable_overscan=1 # uncomment the following to adjust overscan. Use positive numbers if console # goes off screen, and negative if there is too much border #overscan_left=16 #overscan_right=16 #overscan_top=16 #overscan_bottom=16 # uncomment to force a console size. By default it will be display's size minus # overscan. #framebuffer_width=1280 #framebuffer_height=720 # uncomment if hdmi display is not detected and composite is being output #hdmi_force_hotplug=1 # uncomment to force a specific HDMI mode (this will force VGA) #hdmi_group=1 #hdmi_mode=1 # uncomment to force a HDMI mode rather than DVI. This can make audio work in # DMT (computer monitor) modes #hdmi_drive=2 # uncomment to increase signal to HDMI, if you have interference, blanking, or # no display #config_hdmi_boost=4 # uncomment for composite PAL #sdtv_mode=2 #uncomment to overclock the arm. 700 MHz is the default. #arm_freq=800 # Uncomment some or all of these to enable the optional hardware interfaces #dtparam=i2c_arm=on #dtparam=i2s=on #dtparam=spi=on # Uncomment this to disable the Bluetooth module on /dev/ttyAMA0 dtoverlay=pi3-miniuart-bt # Uncomment this to enable the lirc-rpi module #dtoverlay=lirc-rpi # Additional overlays and parameters are documented /boot/overlays/README # Enable audio (loads snd_bcm2835) dtparam=audio=on # NOOBS Auto-generated Settings: #hdmi_force_hotplug=1 enable_uart0=1 gpu_mem=128
/boot/cmdline.txt
This file will not exist until its created. Create it with the following content.
root=/dev/mmcblk0p3 rootfstype=ext4 rootwait
This boots the Pi with a kernel command line of
8250.nr_uarts=0 cma=256M@256M dma.dmachans=0x7f35 bcm2708_fb.fbwidth=1920 bcm2708_fb.fbheight=1080 bcm2709.boardrev=0xa02082 bcm2709.serial=0x8e2830fe smsc95xx.macaddr=B8:27:EB:28:30:FE bcm2708_fb.fbswap=1 bcm2709.uart_clock=48000000 vc_mem.mem_base=0x3dc00000 vc_mem.mem_size=0x3f000000 root=/dev/mmcblk0p3 rootfstype=ext4 rootwait
It really is one long line.
Alternative: Use /boot/cmdline.txt from a working Raspbian install
Here is the cmdline.txt file from a working Raspbian install. If the above does not work, this one should. Be sure to set root to your root partition, and rootfstype to your partition type. /dev/mmcblk0p7 and ext4
are shown below as examples.
dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p7 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
Setting the console keymap
This step is optional if you can log in using the default
keymap="us"
Set the keymap to something you use, e.g.
keymap="dvorak-uk"
Boot the Pi to test
Unmount the microSD card.
root #
umount /mnt/gentoo/boot
root #
umount /mnt/gentoo
When the prompt returns, move the microSD card to the Raspberry Pi and power on.
For 10 seconds (it seems much longer) you should see the GPU 'Rainbow' test pattern, then the familiar boot messages.
Log in at the Pi console. Nothing was added to any runlevels during the install, so networking was not started, nor anything that depends on networking, like ntpd and sshd.
The Pi does not have a hardware real time clock. Its time will be Jan 1, 1970.
What next
As always with Gentoo, if it booted, that's the hard bit done.
All The setup steps in the Gentoo Handbook Fix the MAC address or use a static IP Allow root logins via ssh Add a crond, a logger and other things the handbook does before the reboot. Add Kernel Sources (or at least the .config)
Random hints
WiFi and Bluetooth
It's unlikely that WiFi or Bluetooth will work at first boot. Expect to add some control tools for both.
CFLAGS
CFLAGS="-march=armv8-a+crc -mtune=cortex-a53 -ftree-vectorize -O2 -pipe -fomit-frame-pointer"
gcc-6.x allows the use of -march=native
but that will prevent the use of distcc. The above is
the same as gcc-6.3 would set for -march=native
anyway.
ACCEPT_KEYWORDS
Outside of the @system
set, arm64 is either testing or keyword masked. Set
ACCEPT_KEYWORDS="~arm64"
and expect to use package.accept_keywords too.
The stage 3 tarball has been built with gcc-4.9 as gcc-5.4 is in testing ...
Upgrade GCC then rebuild all of the installed C++ software.
News item 2015-10-22 GCC 5 Defaults to the New C++11 ABI
MAKEOPTS
With only 1G RAM, and four cores, the conventional MAKEOPTS="-j5"
is a bit aggressive for building larger things. It will force swapping or even appear to lock up the Pi completely, to the point where it won't even respond to the console.
Use files in /etc/portage/env/ and entries in /etc/portage/package.env to set MAKEOPTS on a per package basis.
Networking
dhcpcd is not in the stage 3, nor is eth0
in the default runlevel.
root #
busybox udhcpc eth0
will bring up eth0
sshd
The default configuration for sshd will not allow password based root logins.
add your ssh public key for root make a normal user in the wheel group edit /etc/ssh/sshd_config to allow password based root logins
Updating the tool chain
Once you boot, you may have the desire to update @world
first thing. However, as of the time of this writing, the latest stage3 for arm64 was built in December 2016. A lot of things in the tool chain will be out of date with what is on the current Portage tree. Once you've booted the Raspberry Pi and confirmed that you have an internet connection, you'll want to first run emerge --sync to get the absolute latest tree, then run perl-cleaner --all to get all of your Perl packages up to date.
root #
emerge --sync
root #
perl-cleaner --all
root #
emerge -auDN @world
Useful packages
Network time sync
The Raspberry Pi 3 does not have a hardware real time clock on board. There are vendors online where you can order RTC modules made for the Pi, but if you don't plan to run one, I highly recommend installing a NTP client.
First, we'll set the initial time using the date command. Date and time will be entered in mmddhhmmyyyy
format and the time is in 24-hr format -
root #
date mmddhhmmyyyy
As an example, if the time is 10:05PM on 7/31/2017 -
root #
date 073122052017
As with most things Gentoo, the NTP daemon is just an emerge away -
root #
emerge --ask net-misc/ntp
Remove the hardware clock service hwclock from the boot runlevel and replace it with the software clock service swclock -
root #
rc-update del hwclock boot
root #
rc-update add swclock boot
Make sure you have the correct time zone set to the area which most closely matches your locale in /usr/share/zoneinfo -
root #
ls /usr/share/zoneinfo
root #
echo "<YOUR_TIME_ZONE>" > /etc/timezone
As an example, if you live in California, you would do -
root #
echo "America/Los_Angeles" > /etc/timezone
Install your timezone libraries -
root #
emerge --ask sys-libs/timezone-data
Start the NTP client and add it to the default runlevel -
root #
rc-service ntp-client start
root #
rc-update add ntp-client default
Where to get help
On Internet Relay Chat
irc.freenode.net#gentoo-arm irc.freenode.net#gentoo-embedded
On the Gentoo Forums, start a new topic in the Gentoo on ARM forum.
I don't mind a PM on the forums with a link to your post. I don't do one to one help via email or the forums PM system. You will either get no response at all or a request to make a public post. That way others may learn from your misfortune.
Acknowledgements
Everyone contributing to the arm64 software base.
Especially Sakaki, who showed the way on the final steps.