aboutsummaryrefslogtreecommitdiff
path: root/pkgs/misc/uboot
diff options
context:
space:
mode:
authorSamuel Dionne-Riel <samuel@dionne-riel.com>2017-12-10 20:56:36 -0500
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-03-18 18:53:12 +0200
commit2ff31f71ae1f10b3d1779b876ac94bf2a9998bd9 (patch)
treec3fe542bbfac656810dbedd39966eaced3709a1c /pkgs/misc/uboot
parentf2175e1bd47038759a5f6621f6ead97e4680c48e (diff)
U-Boot: Add SOPINE Baseboard build
This build is compatible with PINE A64-LTS. [dezgeg changed the original device tree patch to v4 of the patch series "sunxi: sync H3, H5, A64 DTs from mainline Linux" submitted to the upstream mailing list by Andre Przywara. Also install the u-boot-sunxi-with-spl.bin binary similar to 32-bit boards since it's now being built by the upstream build system.]
Diffstat (limited to 'pkgs/misc/uboot')
-rw-r--r--pkgs/misc/uboot/default.nix19
1 files changed, 18 insertions, 1 deletions
diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix
index b56ca2693570..aac5f5a2c802 100644
--- a/pkgs/misc/uboot/default.nix
+++ b/pkgs/misc/uboot/default.nix
@@ -1,11 +1,20 @@
{ stdenv, fetchurl, fetchpatch, bc, dtc, openssl, python2, swig
+, armTrustedFirmwareAllwinner
, hostPlatform, buildPackages
}:
let
+ # Various changes for 64-bit sunxi boards, (hopefully) destined for 2018.05
+ sunxiPatch = fetchpatch {
+ name = "sunxi.patch";
+ url = "https://github.com/u-boot/u-boot/compare/v2018.03...dezgeg:2018-03-sunxi.patch";
+ sha256 = "1pqn7c6c06hfygwpcgaraqvqxcjhz99j0rx5psfhj8igy0qvk2dq";
+ };
+
buildUBoot = { filesToInstall
, installDir ? "$out"
, defconfig
+ , extraPatches ? []
, extraMakeFlags ? []
, extraMeta ? {}
, ... } @ args:
@@ -36,7 +45,7 @@ let
url = https://github.com/dezgeg/u-boot/commit/extlinux-path-length-2018-03.patch;
sha256 = "07jafdnxvqv8lz256qy29agjc2k1zj5ad4k28r1w5qkhwj4ixmf8";
})
- ];
+ ] ++ extraPatches;
postPatch = ''
patchShebangs tools
@@ -200,6 +209,14 @@ in rec {
filesToInstall = ["u-boot.bin"];
};
+ ubootSopine = buildUBoot rec {
+ extraPatches = [sunxiPatch];
+ defconfig = "sopine_baseboard_defconfig";
+ extraMeta.platforms = ["aarch64-linux"];
+ BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
+ filesToInstall = ["u-boot-sunxi-with-spl.bin"];
+ };
+
ubootUtilite = buildUBoot rec {
defconfig = "cm_fx6_defconfig";
extraMeta.platforms = ["armv7l-linux"];