2017-01-25 13:07:37 +00:00
|
|
|
# To build, use:
|
|
|
|
# nix-build nixos -I nixos-config=nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix -A config.system.build.sdImage
|
2015-05-05 03:23:28 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
extlinux-conf-builder =
|
|
|
|
import ../../system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../../profiles/minimal.nix
|
|
|
|
../../profiles/installation-device.nix
|
|
|
|
./sd-image.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
assertions = lib.singleton {
|
|
|
|
assertion = pkgs.stdenv.system == "armv7l-linux";
|
|
|
|
message = "sd-image-armv7l-multiplatform.nix can be only built natively on ARMv7; " +
|
|
|
|
"it cannot be cross compiled";
|
|
|
|
};
|
|
|
|
|
2016-06-19 19:49:36 +00:00
|
|
|
# Needed by RPi firmware
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
2015-05-05 03:23:28 +00:00
|
|
|
boot.loader.grub.enable = false;
|
|
|
|
boot.loader.generic-extlinux-compatible.enable = true;
|
|
|
|
|
2015-10-24 14:32:21 +00:00
|
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
2016-04-18 15:00:32 +00:00
|
|
|
boot.kernelParams = ["console=ttyS0,115200n8" "console=ttymxc0,115200n8" "console=ttyAMA0,115200n8" "console=ttyO0,115200n8" "console=tty0"];
|
2015-05-05 03:23:28 +00:00
|
|
|
|
|
|
|
# FIXME: this probably should be in installation-device.nix
|
|
|
|
users.extraUsers.root.initialHashedPassword = "";
|
|
|
|
|
|
|
|
sdImage = {
|
2016-06-19 19:49:36 +00:00
|
|
|
populateBootCommands = let
|
|
|
|
configTxt = pkgs.writeText "config.txt" ''
|
|
|
|
[pi2]
|
|
|
|
kernel=u-boot-rpi2.bin
|
|
|
|
|
|
|
|
[pi3]
|
|
|
|
kernel=u-boot-rpi3.bin
|
|
|
|
enable_uart=1
|
|
|
|
'';
|
|
|
|
in ''
|
2017-02-11 10:23:16 +00:00
|
|
|
(cd ${pkgs.raspberrypifw}/share/raspberrypi/boot && cp bootcode.bin fixup*.dat start*.elf $NIX_BUILD_TOP/boot/)
|
2016-06-19 19:49:36 +00:00
|
|
|
cp ${pkgs.ubootRaspberryPi2}/u-boot.bin boot/u-boot-rpi2.bin
|
2017-01-20 12:54:05 +00:00
|
|
|
cp ${pkgs.ubootRaspberryPi3_32bit}/u-boot.bin boot/u-boot-rpi3.bin
|
2016-06-19 19:49:36 +00:00
|
|
|
cp ${configTxt} boot/config.txt
|
2015-05-05 03:23:28 +00:00
|
|
|
${extlinux-conf-builder} -t 3 -c ${config.system.build.toplevel} -d ./boot
|
2016-06-19 19:49:36 +00:00
|
|
|
'';
|
2015-05-05 03:23:28 +00:00
|
|
|
};
|
|
|
|
}
|