about summary refs log tree commit diff
path: root/pkgs/misc/uboot
diff options
context:
space:
mode:
authorAndrew Childs <lorne@cons.org.nz>2019-11-25 01:37:01 +0900
committerAndrew Childs <lorne@cons.org.nz>2019-11-25 01:37:01 +0900
commit2db8c2310a852e12087712a3514007ba1db4cf24 (patch)
treeff782f239eb8af6434e9f14e4cd7a20c7d9d9606 /pkgs/misc/uboot
parentc383268e119791ead9f2868cc2236cb722c9061f (diff)
ubootTools: use tools-only_defconfig instead of allnoconfig
Includes more features in the tools, like support for Flat Device Tree
files in mkimage.
Diffstat (limited to 'pkgs/misc/uboot')
-rw-r--r--pkgs/misc/uboot/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix
index ffe576c31d81a..f7663c8e4470c 100644
--- a/pkgs/misc/uboot/default.nix
+++ b/pkgs/misc/uboot/default.nix
@@ -90,15 +90,12 @@ in {
   inherit buildUBoot;
 
   ubootTools = buildUBoot {
-    defconfig = "allnoconfig";
+    defconfig = "tools-only_defconfig";
     installDir = "$out/bin";
     hardeningDisable = [];
     dontStrip = false;
     extraMeta.platforms = lib.platforms.linux;
     extraMakeFlags = [ "HOST_TOOLS_ALL=y" "CROSS_BUILD_TOOLS=1" "NO_SDL=1" "tools" ];
-    postConfigure = ''
-      sed -i '/CONFIG_SYS_TEXT_BASE/c\CONFIG_SYS_TEXT_BASE=0x00000000' .config
-    '';
     filesToInstall = [
       "tools/dumpimage"
       "tools/fdtgrep"