summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorSamuel Dionne-Riel <samuel@dionne-riel.com>2020-01-21 17:07:33 -0500
committerSamuel Dionne-Riel <samuel@dionne-riel.com>2020-01-21 17:09:05 -0500
commit7943c33087b2b3d4d10a935bc152fc9dbbca7fd8 (patch)
treef7108bda00b60795aaacf91b308d8aaf5167def8 /pkgs/misc
parentca931caf160bd967a89d9c8f9b37ae182022a7f8 (diff)
downloadnixpkgs-7943c33087b2b3d4d10a935bc152fc9dbbca7fd8.tar
nixpkgs-7943c33087b2b3d4d10a935bc152fc9dbbca7fd8.tar.gz
nixpkgs-7943c33087b2b3d4d10a935bc152fc9dbbca7fd8.tar.bz2
nixpkgs-7943c33087b2b3d4d10a935bc152fc9dbbca7fd8.tar.lz
nixpkgs-7943c33087b2b3d4d10a935bc152fc9dbbca7fd8.tar.xz
nixpkgs-7943c33087b2b3d4d10a935bc152fc9dbbca7fd8.tar.zst
nixpkgs-7943c33087b2b3d4d10a935bc152fc9dbbca7fd8.zip
uboot: ubootBeagleboneBlack -> ubootAmx335xEVM
See u-boot@8fa7f65dd02c176ee6021eaf40114560b8954ba2

>    configs: Remove am335x_boneblack_defconfig
>
>    The am335x_evm_defconfig supports all am335x_boneblack variants. Remove
>    the redundant am335x_boneblack_defconfig.
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/uboot/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix
index c373364103f..29dfb6558a9 100644
--- a/pkgs/misc/uboot/default.nix
+++ b/pkgs/misc/uboot/default.nix
@@ -112,6 +112,12 @@ in {
     filesToInstall = ["u-boot-sunxi-with-spl.bin"];
   };
 
+  ubootAmx335xEVM = buildUBoot {
+    defconfig = "am335x_evm_defconfig";
+    extraMeta.platforms = ["armv7l-linux"];
+    filesToInstall = ["MLO" "u-boot.img"];
+  };
+
   ubootBananaPi = buildUBoot {
     defconfig = "Bananapi_defconfig";
     extraMeta.platforms = ["armv7l-linux"];
@@ -131,12 +137,6 @@ in {
     filesToInstall = ["u-boot-sunxi-with-spl.bin"];
   };
 
-  ubootBeagleboneBlack = buildUBoot {
-    defconfig = "am335x_boneblack_defconfig";
-    extraMeta.platforms = ["armv7l-linux"];
-    filesToInstall = ["MLO" "u-boot.img"];
-  };
-
   # http://git.denx.de/?p=u-boot.git;a=blob;f=board/solidrun/clearfog/README;hb=refs/heads/master
   ubootClearfog = buildUBoot {
     defconfig = "clearfog_defconfig";