uboot: 2017.11 -> 2018.03, cross fixes
(cherry picked from commit 5804547243010ec8e341e98e8acbc5c96263682e) (cherry picked from commit 7c46833b047710f220971d7d7d3b1dbe6fed805b)
This commit is contained in:
parent
f2004e6287
commit
d29202bc48
@ -1,10 +1,9 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch, bc, dtc, openssl, python2
|
{ stdenv, fetchurl, fetchpatch, bc, dtc, openssl, python2, swig
|
||||||
, hostPlatform
|
, hostPlatform, buildPackages
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
buildUBoot = { targetPlatforms
|
buildUBoot = { filesToInstall
|
||||||
, filesToInstall
|
|
||||||
, installDir ? "$out"
|
, installDir ? "$out"
|
||||||
, defconfig
|
, defconfig
|
||||||
, extraMakeFlags ? []
|
, extraMakeFlags ? []
|
||||||
@ -13,18 +12,14 @@ let
|
|||||||
stdenv.mkDerivation (rec {
|
stdenv.mkDerivation (rec {
|
||||||
|
|
||||||
name = "uboot-${defconfig}-${version}";
|
name = "uboot-${defconfig}-${version}";
|
||||||
version = "2017.11";
|
version = "2018.03";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2";
|
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2";
|
||||||
sha256 = "01bcsah5imy6m3fbjwhqywxg0pfk5fl8ks9ylb7kv3zmrb9qy0ba";
|
sha256 = "1z9x635l5164c5hnf7qs19w7j3qghbkgs7rpn673dm898i9pfx3y";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
(fetchpatch {
|
|
||||||
url = https://github.com/dezgeg/u-boot/commit/cbsize-2017-11.patch;
|
|
||||||
sha256 = "08rqsrj78aif8vaxlpwiwwv1jwf0diihbj0h88hc0mlp0kmyqxwm";
|
|
||||||
})
|
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
url = https://github.com/dezgeg/u-boot/commit/rpi-2017-11-patch1.patch;
|
url = https://github.com/dezgeg/u-boot/commit/rpi-2017-11-patch1.patch;
|
||||||
sha256 = "067yq55vv1slv4xy346px7h329pi14abdn04chg6s1s6hmf6c1x9";
|
sha256 = "067yq55vv1slv4xy346px7h329pi14abdn04chg6s1s6hmf6c1x9";
|
||||||
@ -34,8 +29,8 @@ let
|
|||||||
sha256 = "0bbw0q027xvzvdxxvpzjajg4rm30a8mb7z74b6ma9q0l7y7bi0c4";
|
sha256 = "0bbw0q027xvzvdxxvpzjajg4rm30a8mb7z74b6ma9q0l7y7bi0c4";
|
||||||
})
|
})
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
url = https://github.com/dezgeg/u-boot/commit/pythonpath-2017-11.patch;
|
url = https://github.com/dezgeg/u-boot/commit/pythonpath-2018-03.patch;
|
||||||
sha256 = "162b2lglp307pzxsf9m7nnmzwxqd7xkwp5j85bm6bg1a38ngpl9v";
|
sha256 = "1rhhlhrwhv7ic1n5i720jfh2cxwrkssrkvinllyjy3j9k9bpzcqd";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -43,14 +38,22 @@ let
|
|||||||
patchShebangs tools
|
patchShebangs tools
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ bc dtc openssl python2 ];
|
nativeBuildInputs = [ bc dtc openssl python2 swig ];
|
||||||
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
||||||
|
|
||||||
hardeningDisable = [ "all" ];
|
hardeningDisable = [ "all" ];
|
||||||
|
|
||||||
makeFlags = [ "DTC=dtc" ] ++ extraMakeFlags;
|
makeFlags = [
|
||||||
|
"DTC=dtc"
|
||||||
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
||||||
|
] ++ extraMakeFlags;
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
|
runHook preConfigure
|
||||||
|
|
||||||
make ${defconfig}
|
make ${defconfig}
|
||||||
|
|
||||||
|
runHook postConfigure
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
@ -65,21 +68,13 @@ let
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
|
||||||
crossAttrs = {
|
|
||||||
makeFlags = [
|
|
||||||
"ARCH=${hostPlatform.platform.kernelArch}"
|
|
||||||
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.denx.de/wiki/U-Boot/;
|
homepage = http://www.denx.de/wiki/U-Boot/;
|
||||||
description = "Boot loader for embedded systems";
|
description = "Boot loader for embedded systems";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = [ maintainers.dezgeg ];
|
maintainers = [ maintainers.dezgeg ];
|
||||||
platforms = targetPlatforms;
|
|
||||||
} // extraMeta;
|
} // extraMeta;
|
||||||
} // args);
|
} // removeAttrs args [ "extraMeta" ]);
|
||||||
|
|
||||||
in rec {
|
in rec {
|
||||||
inherit buildUBoot;
|
inherit buildUBoot;
|
||||||
@ -88,10 +83,14 @@ in rec {
|
|||||||
defconfig = "allnoconfig";
|
defconfig = "allnoconfig";
|
||||||
installDir = "$out/bin";
|
installDir = "$out/bin";
|
||||||
buildFlags = "tools NO_SDL=1";
|
buildFlags = "tools NO_SDL=1";
|
||||||
|
hardeningDisable = [];
|
||||||
dontStrip = false;
|
dontStrip = false;
|
||||||
targetPlatforms = stdenv.lib.platforms.linux;
|
extraMeta.platforms = stdenv.lib.platforms.linux;
|
||||||
# build tools/kwboot
|
# build tools/kwboot
|
||||||
extraMakeFlags = [ "CONFIG_KIRKWOOD=y" ];
|
extraMakeFlags = [ "CONFIG_KIRKWOOD=y" ];
|
||||||
|
postConfigure = ''
|
||||||
|
sed -i '/CONFIG_SYS_TEXT_BASE/c\CONFIG_SYS_TEXT_BASE=0x00000000' .config
|
||||||
|
'';
|
||||||
filesToInstall = [
|
filesToInstall = [
|
||||||
"tools/dumpimage"
|
"tools/dumpimage"
|
||||||
"tools/fdtgrep"
|
"tools/fdtgrep"
|
||||||
@ -103,86 +102,86 @@ in rec {
|
|||||||
|
|
||||||
ubootA20OlinuxinoLime = buildUBoot rec {
|
ubootA20OlinuxinoLime = buildUBoot rec {
|
||||||
defconfig = "A20-OLinuXino-Lime_defconfig";
|
defconfig = "A20-OLinuXino-Lime_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootBananaPi = buildUBoot rec {
|
ubootBananaPi = buildUBoot rec {
|
||||||
defconfig = "Bananapi_defconfig";
|
defconfig = "Bananapi_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootBeagleboneBlack = buildUBoot rec {
|
ubootBeagleboneBlack = buildUBoot rec {
|
||||||
defconfig = "am335x_boneblack_defconfig";
|
defconfig = "am335x_boneblack_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["MLO" "u-boot.img"];
|
filesToInstall = ["MLO" "u-boot.img"];
|
||||||
};
|
};
|
||||||
|
|
||||||
# http://git.denx.de/?p=u-boot.git;a=blob;f=board/solidrun/clearfog/README;hb=refs/heads/master
|
# http://git.denx.de/?p=u-boot.git;a=blob;f=board/solidrun/clearfog/README;hb=refs/heads/master
|
||||||
ubootClearfog = buildUBoot rec {
|
ubootClearfog = buildUBoot rec {
|
||||||
defconfig = "clearfog_defconfig";
|
defconfig = "clearfog_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot-spl.kwb"];
|
filesToInstall = ["u-boot-spl.kwb"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootJetsonTK1 = buildUBoot rec {
|
ubootJetsonTK1 = buildUBoot rec {
|
||||||
defconfig = "jetson-tk1_defconfig";
|
defconfig = "jetson-tk1_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot" "u-boot.dtb" "u-boot-dtb-tegra.bin" "u-boot-nodtb-tegra.bin"];
|
filesToInstall = ["u-boot" "u-boot.dtb" "u-boot-dtb-tegra.bin" "u-boot-nodtb-tegra.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootOdroidXU3 = buildUBoot rec {
|
ubootOdroidXU3 = buildUBoot rec {
|
||||||
defconfig = "odroid-xu3_defconfig";
|
defconfig = "odroid-xu3_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot-dtb.bin"];
|
filesToInstall = ["u-boot-dtb.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootOrangePiPc = buildUBoot rec {
|
ubootOrangePiPc = buildUBoot rec {
|
||||||
defconfig = "orangepi_pc_defconfig";
|
defconfig = "orangepi_pc_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootPcduino3Nano = buildUBoot rec {
|
ubootPcduino3Nano = buildUBoot rec {
|
||||||
defconfig = "Linksprite_pcDuino3_Nano_defconfig";
|
defconfig = "Linksprite_pcDuino3_Nano_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootQemuArm = buildUBoot rec {
|
ubootQemuArm = buildUBoot rec {
|
||||||
defconfig = "qemu_arm_defconfig";
|
defconfig = "qemu_arm_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot.bin"];
|
filesToInstall = ["u-boot.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootRaspberryPi = buildUBoot rec {
|
ubootRaspberryPi = buildUBoot rec {
|
||||||
defconfig = "rpi_defconfig";
|
defconfig = "rpi_defconfig";
|
||||||
targetPlatforms = ["armv6l-linux"];
|
extraMeta.platforms = ["armv6l-linux"];
|
||||||
filesToInstall = ["u-boot.bin"];
|
filesToInstall = ["u-boot.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootRaspberryPi2 = buildUBoot rec {
|
ubootRaspberryPi2 = buildUBoot rec {
|
||||||
defconfig = "rpi_2_defconfig";
|
defconfig = "rpi_2_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot.bin"];
|
filesToInstall = ["u-boot.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootRaspberryPi3_32bit = buildUBoot rec {
|
ubootRaspberryPi3_32bit = buildUBoot rec {
|
||||||
defconfig = "rpi_3_32b_defconfig";
|
defconfig = "rpi_3_32b_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot.bin"];
|
filesToInstall = ["u-boot.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootRaspberryPi3_64bit = buildUBoot rec {
|
ubootRaspberryPi3_64bit = buildUBoot rec {
|
||||||
defconfig = "rpi_3_defconfig";
|
defconfig = "rpi_3_defconfig";
|
||||||
targetPlatforms = ["aarch64-linux"];
|
extraMeta.platforms = ["aarch64-linux"];
|
||||||
filesToInstall = ["u-boot.bin"];
|
filesToInstall = ["u-boot.bin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
ubootUtilite = buildUBoot rec {
|
ubootUtilite = buildUBoot rec {
|
||||||
defconfig = "cm_fx6_defconfig";
|
defconfig = "cm_fx6_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot-with-nand-spl.imx"];
|
filesToInstall = ["u-boot-with-nand-spl.imx"];
|
||||||
buildFlags = "u-boot-with-nand-spl.imx";
|
buildFlags = "u-boot-with-nand-spl.imx";
|
||||||
postConfigure = ''
|
postConfigure = ''
|
||||||
@ -196,7 +195,7 @@ in rec {
|
|||||||
|
|
||||||
ubootWandboard = buildUBoot rec {
|
ubootWandboard = buildUBoot rec {
|
||||||
defconfig = "wandboard_defconfig";
|
defconfig = "wandboard_defconfig";
|
||||||
targetPlatforms = ["armv7l-linux"];
|
extraMeta.platforms = ["armv7l-linux"];
|
||||||
filesToInstall = ["u-boot.img" "SPL"];
|
filesToInstall = ["u-boot.img" "SPL"];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user