I could successful install Gentoo on a Raspberry Pi 4 with this guide and this guide.
For my first installation I Fetched the Kernel Version rspi-4.19.y from the Git-Hub Repository and cross-compiled it. All worked well and my Pi could afterwards boot successfully.
Later I saw that there are other branch version of the kernel so I would tried to upgrade the kernel to the version rpi-4.20.y.
I did following on my pc:
Code: Select all
root@gentoo ~/RaspberryPi/linux # git checkout rpi-4.20.y
Checking out files: 100% (12834/12834), done.
Switched to a new branch 'rpi-4.20.y'
Code: Select all
root@gentoo ~/RaspberryPi/linux # ARCH=arm64 CROSS_COMPILE=aarch64-unknown-linux-gnu- make olddefconfigCode: Select all
root@gentoo ~/RaspberryPi/linux # ARCH=arm64 CROSS_COMPILE=aarch64-unknown-linux-gnu- make -j9
root@gentoo ~/RaspberryPi/linux # cp ~/RaspberryPi/linux/arch/arm64/boot/Image /mnt/gentoo/boot/kernel8.imgCode: Select all
root@gentoo ~/RaspberryPi/linux # ARCH=arm64 CROSS_COMPILE=aarch64-unknown-linux-gnu- make modules_install INSTALL_MOD_PATH=/mnt/gentooDoes this branch version not work? Or do I had made a wrong step?
I am very grateful for any information.

