From 1daea67bbd070f694dc454930e6a4ef26bacfcdb Mon Sep 17 00:00:00 2001 From: Daniel Fullmer Date: Tue, 20 Oct 2020 22:22:09 -0700 Subject: [PATCH] Added missing uboot file --- uboot/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 uboot/default.nix diff --git a/uboot/default.nix b/uboot/default.nix new file mode 100644 index 0000000..b796e08 --- /dev/null +++ b/uboot/default.nix @@ -0,0 +1,13 @@ +{ pkgs }: + +pkgs.buildUBoot { + patches = [ + ./0001-WIP-Initial-support-for-pinecube.patch + ./0002-sun8i-emac-sun8i-v3s-compatibility-for-sun8i-emac.patch + ./0003-pinecube-Add-ethernet-support.patch + ]; + + defconfig = "pinecube_defconfig"; + extraMeta.platforms = ["armv7l-linux"]; + filesToInstall = ["u-boot-sunxi-with-spl.bin"]; +}