armTrustedFirmwareS905: init

This supports the Amlogic S905, otherwise known as Meson GXBB.
This commit is contained in:
Ben Wolsieffer 2019-12-05 16:17:36 -05:00
parent b5ec2b5c63
commit d00a38aa70
2 changed files with 8 additions and 0 deletions

View file

@ -103,4 +103,11 @@ in {
extraMeta.platforms = ["aarch64-linux"];
filesToInstall = [ "build/${platform}/release/bl31/bl31.elf"];
};
armTrustedFirmwareS905 = buildArmTrustedFirmware rec {
extraMakeFlags = [ "bl31" ];
platform = "gxbb";
extraMeta.platforms = ["aarch64-linux"];
filesToInstall = [ "build/${platform}/release/bl31.bin"];
};
}

View file

@ -15816,6 +15816,7 @@ in
armTrustedFirmwareQemu
armTrustedFirmwareRK3328
armTrustedFirmwareRK3399
armTrustedFirmwareS905
;
microcodeAmd = callPackage ../os-specific/linux/microcode/amd.nix { };