mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
uboot: fix cross-build of ubootTools
(cherry picked from commit28fd7d9594
) (cherry picked from commit4c669db598
)
This commit is contained in:
parent
d50bcaa816
commit
b63124dfc5
1 changed files with 1 additions and 2 deletions
|
@ -86,12 +86,11 @@ in rec {
|
|||
ubootTools = buildUBoot rec {
|
||||
defconfig = "allnoconfig";
|
||||
installDir = "$out/bin";
|
||||
buildFlags = "tools NO_SDL=1";
|
||||
hardeningDisable = [];
|
||||
dontStrip = false;
|
||||
extraMeta.platforms = stdenv.lib.platforms.linux;
|
||||
# build tools/kwboot
|
||||
extraMakeFlags = [ "CONFIG_KIRKWOOD=y" ];
|
||||
extraMakeFlags = [ "CONFIG_KIRKWOOD=y" "CROSS_BUILD_TOOLS=1" "NO_SDL=1" "tools" ];
|
||||
postConfigure = ''
|
||||
sed -i '/CONFIG_SYS_TEXT_BASE/c\CONFIG_SYS_TEXT_BASE=0x00000000' .config
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue