pine64-rockpro64: init

This commit is contained in:
Tom Fitzhenry
2023-09-29 22:10:49 +10:00
committed by mergify[bot]
parent b31be8f114
commit f4ef5df944
5 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Pine64 RockPro64
## _Tow-Boot_
We highly suggest installing _Tow-Boot_ to the SPI Flash.
- https://github.com/Tow-Boot/Tow-Boot
Having the firmware installed to SPI makes the device act basically like a
normal computer. No need for weird incantations to setup the platform boot
firmware.
Alternatively, starting from the _Tow-Boot_ disk image on eMMC is easier to
deal with and understand than having to deal with _U-Boot_ manually.

View File

@@ -0,0 +1,9 @@
{ pkgs, lib, ... }:
{
boot.initrd.kernelModules = [
# PCIe/NVMe
"nvme"
"pcie_rockchip_host"
"phy_rockchip_pcie"
];
}