mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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.]
This commit is contained in:
parent
f2175e1bd4
commit
2ff31f71ae
2 changed files with 19 additions and 1 deletions
|
@ -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"];
|
||||
|
|
|
@ -13881,6 +13881,7 @@ with pkgs;
|
|||
ubootRaspberryPi3_32bit
|
||||
ubootRaspberryPi3_64bit
|
||||
ubootSheevaplug
|
||||
ubootSopine
|
||||
ubootUtilite
|
||||
ubootWandboard
|
||||
;
|
||||
|
|
Loading…
Reference in a new issue