2017-01-25 14:07:37 +01:00
|
|
|
# To build, use:
|
2021-02-21 21:16:51 +01:00
|
|
|
# nix-build nixos -I nixos-config=nixos/modules/installer/sd-card/sd-image-aarch64.nix -A config.system.build.sdImage
|
2017-01-23 23:52:25 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2017-10-25 21:26:45 +02:00
|
|
|
../../profiles/base.nix
|
2017-01-23 23:52:25 +01:00
|
|
|
./sd-image.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
boot.loader.grub.enable = false;
|
|
|
|
boot.loader.generic-extlinux-compatible.enable = true;
|
|
|
|
|
2018-01-24 15:46:41 +01:00
|
|
|
boot.consoleLogLevel = lib.mkDefault 7;
|
2017-10-25 19:30:17 +02:00
|
|
|
|
|
|
|
# The serial ports listed here are:
|
|
|
|
# - ttyS0: for Tegra (Jetson TX1)
|
|
|
|
# - ttyAMA0: for QEMU's -machine virt
|
2020-09-14 05:26:21 +02:00
|
|
|
boot.kernelParams = ["console=ttyS0,115200n8" "console=ttyAMA0,115200n8" "console=tty0"];
|
2017-01-23 23:52:25 +01:00
|
|
|
|
|
|
|
sdImage = {
|
2019-06-02 00:03:44 +02:00
|
|
|
populateFirmwareCommands = let
|
2017-01-23 23:52:25 +01:00
|
|
|
configTxt = pkgs.writeText "config.txt" ''
|
2020-09-13 04:48:05 +02:00
|
|
|
[pi3]
|
2017-01-23 23:52:25 +01:00
|
|
|
kernel=u-boot-rpi3.bin
|
2018-01-24 15:43:16 +01:00
|
|
|
|
2020-09-13 04:48:05 +02:00
|
|
|
[pi4]
|
|
|
|
kernel=u-boot-rpi4.bin
|
|
|
|
enable_gic=1
|
|
|
|
armstub=armstub8-gic.bin
|
|
|
|
|
|
|
|
# Otherwise the resolution will be weird in most cases, compared to
|
|
|
|
# what the pi3 firmware does by default.
|
|
|
|
disable_overscan=1
|
|
|
|
|
|
|
|
[all]
|
2018-01-24 15:43:16 +01:00
|
|
|
# Boot in 64-bit mode.
|
2019-07-30 21:33:11 +02:00
|
|
|
arm_64bit=1
|
2018-01-24 15:43:16 +01:00
|
|
|
|
2020-09-13 04:48:05 +02:00
|
|
|
# U-Boot needs this to work, regardless of whether UART is actually used or not.
|
|
|
|
# Look in arch/arm/mach-bcm283x/Kconfig in the U-Boot tree to see if this is still
|
|
|
|
# a requirement in the future.
|
2017-01-23 23:52:25 +01:00
|
|
|
enable_uart=1
|
2018-01-24 15:43:16 +01:00
|
|
|
|
|
|
|
# Prevent the firmware from smashing the framebuffer setup done by the mainline kernel
|
|
|
|
# when attempting to show low-voltage or overtemperature warnings.
|
|
|
|
avoid_warnings=1
|
2017-01-23 23:52:25 +01:00
|
|
|
'';
|
|
|
|
in ''
|
2019-06-02 00:03:44 +02:00
|
|
|
(cd ${pkgs.raspberrypifw}/share/raspberrypi/boot && cp bootcode.bin fixup*.dat start*.elf $NIX_BUILD_TOP/firmware/)
|
2020-09-13 04:48:05 +02:00
|
|
|
|
|
|
|
# Add the config
|
2019-06-02 00:03:44 +02:00
|
|
|
cp ${configTxt} firmware/config.txt
|
2020-09-13 04:48:05 +02:00
|
|
|
|
|
|
|
# Add pi3 specific files
|
|
|
|
cp ${pkgs.ubootRaspberryPi3_64bit}/u-boot.bin firmware/u-boot-rpi3.bin
|
|
|
|
|
|
|
|
# Add pi4 specific files
|
|
|
|
cp ${pkgs.ubootRaspberryPi4_64bit}/u-boot.bin firmware/u-boot-rpi4.bin
|
|
|
|
cp ${pkgs.raspberrypi-armstubs}/armstub8-gic.bin firmware/armstub8-gic.bin
|
|
|
|
cp ${pkgs.raspberrypifw}/share/raspberrypi/boot/bcm2711-rpi-4-b.dtb firmware/
|
2017-01-23 23:52:25 +01:00
|
|
|
'';
|
2019-06-02 03:14:05 +02:00
|
|
|
populateRootCommands = ''
|
|
|
|
mkdir -p ./files/boot
|
2020-06-21 10:06:18 +02:00
|
|
|
${config.boot.loader.generic-extlinux-compatible.populateCmd} -c ${config.system.build.toplevel} -d ./files/boot
|
2019-06-02 03:14:05 +02:00
|
|
|
'';
|
2017-01-23 23:52:25 +01:00
|
|
|
};
|
|
|
|
}
|