2017-01-25 14:07:37 +01:00
|
|
|
# To build, use:
|
|
|
|
# nix-build nixos -I nixos-config=nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix -A config.system.build.sdImage
|
2015-05-05 05:23:28 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
extlinux-conf-builder =
|
|
|
|
import ../../system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix {
|
2018-12-28 20:41:51 +01:00
|
|
|
pkgs = pkgs.buildPackages;
|
2015-05-05 05:23:28 +02:00
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
2017-10-25 21:26:45 +02:00
|
|
|
../../profiles/base.nix
|
2015-05-05 05:23:28 +02:00
|
|
|
../../profiles/installation-device.nix
|
|
|
|
./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;
|
2019-08-17 18:42:22 +02:00
|
|
|
boot.kernelPackages = pkgs.linuxPackages_rpi1;
|
2015-05-05 05:23:28 +02:00
|
|
|
|
|
|
|
sdImage = {
|
2019-06-26 02:24:58 +02:00
|
|
|
populateFirmwareCommands = let
|
2018-05-05 18:02:00 +02:00
|
|
|
configTxt = pkgs.writeText "config.txt" ''
|
|
|
|
# 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
|
|
|
|
|
|
|
|
[pi0]
|
|
|
|
kernel=u-boot-rpi0.bin
|
|
|
|
|
|
|
|
[pi1]
|
|
|
|
kernel=u-boot-rpi1.bin
|
|
|
|
'';
|
|
|
|
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/)
|
|
|
|
cp ${pkgs.ubootRaspberryPiZero}/u-boot.bin firmware/u-boot-rpi0.bin
|
|
|
|
cp ${pkgs.ubootRaspberryPi}/u-boot.bin firmware/u-boot-rpi1.bin
|
|
|
|
cp ${configTxt} firmware/config.txt
|
2018-05-05 18:02:00 +02:00
|
|
|
'';
|
2019-06-02 03:14:05 +02:00
|
|
|
populateRootCommands = ''
|
|
|
|
mkdir -p ./files/boot
|
|
|
|
${extlinux-conf-builder} -t 3 -c ${config.system.build.toplevel} -d ./files/boot
|
|
|
|
'';
|
2015-05-05 05:23:28 +02:00
|
|
|
};
|
2019-09-01 18:57:21 +02:00
|
|
|
|
|
|
|
# the installation media is also the installation target,
|
|
|
|
# so we don't want to provide the installation configuration.nix.
|
|
|
|
installer.cloneConfig = false;
|
2015-05-05 05:23:28 +02:00
|
|
|
}
|