ubootTools: set CONFIG_ARCH_MVEBU=y

u-boot only builds some architecture-specific tools, if this
architecture is selected in configuration. So a 'allnoconfig' won't
include them.

As they are pretty useful however, we'd like to have them in ubootTools.
This can be accomplished by enabling CONFIG_KIRKWOOD=y and possibly
more later.

authored by Florian Klink and committed by Tuomas Tynkkynen 8a844db5 027d7bbb

+9 -1
+9 -1
pkgs/misc/uboot/default.nix
··· 90 buildFlags = "tools NO_SDL=1"; 91 dontStrip = false; 92 targetPlatforms = stdenv.lib.platforms.linux; 93 - filesToInstall = ["tools/dumpimage" "tools/mkenvimage" "tools/mkimage"]; 94 }; 95 96 ubootA20OlinuxinoLime = buildUBoot rec {
··· 90 buildFlags = "tools NO_SDL=1"; 91 dontStrip = false; 92 targetPlatforms = stdenv.lib.platforms.linux; 93 + # build tools/kwboot 94 + extraMakeFlags = [ "CONFIG_KIRKWOOD=y" ]; 95 + filesToInstall = [ 96 + "tools/dumpimage" 97 + "tools/fdtgrep" 98 + "tools/kwboot" 99 + "tools/mkenvimage" 100 + "tools/mkimage" 101 + ]; 102 }; 103 104 ubootA20OlinuxinoLime = buildUBoot rec {