aboutsummaryrefslogtreecommitdiff
path: root/pkgs/misc/uboot/default.nix
diff options
context:
space:
mode:
authorBen Wolsieffer <benwolsieffer@gmail.com>2018-02-23 23:47:27 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-05-13 16:12:08 -0400
commitd50bcaa8168b2b41d0e6d195d9ccb03e9d332d6c (patch)
treef9178ee8d69df4fc7dcd6fdb9952dbef4acdc9ea /pkgs/misc/uboot/default.nix
parent2a450cec19028bb7ea533bbb3d98966722b22d7e (diff)
uboot: sheevplug and guruplug: use mainline U-Boot
These derivations have not seen any updates since they were created in 2010, and some of their sources have disappeared. There are upstream configs for these boards, so these are now used, and they build correctly. I have no way of testing them, and I don't if anyone even uses either board with Nix anymore. (cherry picked from commit 01020b3263629be5a8697aa781dcb267df8de0a0) (cherry picked from commit 48ade50d8ece09d3ff732b07f0facdcd78084ac3)
Diffstat (limited to '')
-rw-r--r--pkgs/misc/uboot/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix
index 800c00572821..9da52e494371 100644
--- a/pkgs/misc/uboot/default.nix
+++ b/pkgs/misc/uboot/default.nix
@@ -129,6 +129,12 @@ in rec {
filesToInstall = ["u-boot-spl.kwb"];
};
+ ubootGuruplug = buildUBoot rec {
+ defconfig = "guruplug_defconfig";
+ extraMeta.platforms = ["armv5tel-linux"];
+ filesToInstall = ["u-boot.bin"];
+ };
+
ubootJetsonTK1 = buildUBoot rec {
defconfig = "jetson-tk1_defconfig";
extraMeta.platforms = ["armv7l-linux"];
@@ -183,6 +189,12 @@ in rec {
filesToInstall = ["u-boot.bin"];
};
+ ubootSheevaplug = buildUBoot rec {
+ defconfig = "sheevaplug_defconfig";
+ extraMeta.platforms = ["armv5tel-linux"];
+ filesToInstall = ["u-boot.bin"];
+ };
+
ubootUtilite = buildUBoot rec {
defconfig = "cm_fx6_defconfig";
extraMeta.platforms = ["armv7l-linux"];