pinecube-nixos/uboot/default.nix
2020-10-27 18:52:19 -07:00

18 lines
367 B
Nix

{ pkgs }:
pkgs.buildUBoot {
patches = [ ./Pine64-PineCube-uboot-support.patch ];
defconfig = "pinecube_defconfig";
# Putting this here because it's more a design choice and not generic support
# for hardware.
extraConfig = ''
CONFIG_CMD_BOOTMENU=y
'';
extraMeta.platforms = ["armv7l-linux"];
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
}