2017-11-06 23:56:59 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, bc, dtc, python2
|
2017-06-28 20:30:13 +00:00
|
|
|
, hostPlatform
|
|
|
|
}:
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2010-03-01 23:22:48 +00:00
|
|
|
let
|
2015-11-02 23:53:10 +00:00
|
|
|
buildUBoot = { targetPlatforms
|
|
|
|
, filesToInstall
|
|
|
|
, installDir ? "$out"
|
|
|
|
, defconfig
|
|
|
|
, extraMeta ? {}
|
|
|
|
, ... } @ args:
|
|
|
|
stdenv.mkDerivation (rec {
|
|
|
|
|
|
|
|
name = "uboot-${defconfig}-${version}";
|
2017-11-06 23:56:59 +00:00
|
|
|
version = "2017.11";
|
2015-11-02 23:53:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2";
|
2017-11-06 23:56:59 +00:00
|
|
|
sha256 = "01bcsah5imy6m3fbjwhqywxg0pfk5fl8ks9ylb7kv3zmrb9qy0ba";
|
2015-11-02 23:53:10 +00:00
|
|
|
};
|
|
|
|
|
2017-11-06 23:56:59 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/dezgeg/u-boot/commit/rpi-2017-11-patch1.patch;
|
|
|
|
sha256 = "067yq55vv1slv4xy346px7h329pi14abdn04chg6s1s6hmf6c1x9";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/dezgeg/u-boot/commit/rpi-2017-11-patch2.patch;
|
|
|
|
sha256 = "0bbw0q027xvzvdxxvpzjajg4rm30a8mb7z74b6ma9q0l7y7bi0c4";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/dezgeg/u-boot/commit/pythonpath-2017-11.patch;
|
|
|
|
sha256 = "162b2lglp307pzxsf9m7nnmzwxqd7xkwp5j85bm6bg1a38ngpl9v";
|
|
|
|
})
|
|
|
|
];
|
2016-09-07 23:37:11 +00:00
|
|
|
|
2017-03-17 20:17:02 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs tools
|
|
|
|
'';
|
|
|
|
|
2017-11-06 23:56:59 +00:00
|
|
|
nativeBuildInputs = [ bc dtc python2 ];
|
|
|
|
|
|
|
|
hardeningDisable = [ "all" ];
|
|
|
|
|
|
|
|
makeFlags = [ "DTC=dtc" ];
|
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
configurePhase = ''
|
|
|
|
make ${defconfig}
|
2010-03-01 15:21:24 +00:00
|
|
|
'';
|
2010-03-01 23:22:48 +00:00
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2015-06-07 19:12:18 +00:00
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
mkdir -p ${installDir}
|
|
|
|
cp ${stdenv.lib.concatStringsSep " " filesToInstall} ${installDir}
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
2015-06-19 03:13:34 +00:00
|
|
|
|
2017-02-11 13:53:01 +00:00
|
|
|
enableParallelBuilding = true;
|
2015-11-02 23:53:10 +00:00
|
|
|
dontStrip = true;
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
crossAttrs = {
|
|
|
|
makeFlags = [
|
2017-06-28 20:30:13 +00:00
|
|
|
"ARCH=${hostPlatform.platform.kernelArch}"
|
|
|
|
"CROSS_COMPILE=${stdenv.cc.prefix}"
|
2015-11-02 23:53:10 +00:00
|
|
|
];
|
|
|
|
};
|
2010-03-01 23:22:48 +00:00
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://www.denx.de/wiki/U-Boot/;
|
2015-11-02 23:53:10 +00:00
|
|
|
description = "Boot loader for embedded systems";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
platforms = targetPlatforms;
|
|
|
|
} // extraMeta;
|
|
|
|
} // args);
|
2010-03-01 23:22:48 +00:00
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
in rec {
|
|
|
|
inherit buildUBoot;
|
2015-06-07 19:12:18 +00:00
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
ubootTools = buildUBoot rec {
|
2016-02-27 17:30:17 +00:00
|
|
|
defconfig = "allnoconfig";
|
2015-11-02 23:53:10 +00:00
|
|
|
installDir = "$out/bin";
|
|
|
|
buildFlags = "tools NO_SDL=1";
|
|
|
|
dontStrip = false;
|
|
|
|
targetPlatforms = stdenv.lib.platforms.linux;
|
|
|
|
filesToInstall = ["tools/dumpimage" "tools/mkenvimage" "tools/mkimage"];
|
|
|
|
};
|
|
|
|
|
2017-06-10 20:21:17 +00:00
|
|
|
ubootA20OlinuxinoLime = buildUBoot rec {
|
|
|
|
defconfig = "A20-OLinuXino-Lime_defconfig";
|
|
|
|
targetPlatforms = ["armv7l-linux"];
|
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
|
|
};
|
|
|
|
|
2015-12-25 18:31:43 +00:00
|
|
|
ubootBananaPi = buildUBoot rec {
|
|
|
|
defconfig = "Bananapi_defconfig";
|
|
|
|
targetPlatforms = ["armv7l-linux"];
|
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
2016-04-18 16:57:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ubootBeagleboneBlack = buildUBoot rec {
|
|
|
|
defconfig = "am335x_boneblack_defconfig";
|
|
|
|
targetPlatforms = ["armv7l-linux"];
|
|
|
|
filesToInstall = ["MLO" "u-boot.img"];
|
2015-12-25 18:31:43 +00:00
|
|
|
};
|
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
ubootJetsonTK1 = buildUBoot rec {
|
|
|
|
defconfig = "jetson-tk1_defconfig";
|
|
|
|
targetPlatforms = ["armv7l-linux"];
|
|
|
|
filesToInstall = ["u-boot" "u-boot.dtb" "u-boot-dtb-tegra.bin" "u-boot-nodtb-tegra.bin"];
|
|
|
|
};
|
|
|
|
|
2017-03-20 08:06:20 +00:00
|
|
|
ubootOdroidXU3 = buildUBoot rec {
|
|
|
|
defconfig = "odroid-xu3_defconfig";
|
|
|
|
targetPlatforms = ["armv7l-linux"];
|
2017-03-21 01:23:02 +00:00
|
|
|
filesToInstall = ["u-boot-dtb.bin"];
|
2017-03-20 08:06:20 +00:00
|
|
|
};
|
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
ubootPcduino3Nano = buildUBoot rec {
|
|
|
|
defconfig = "Linksprite_pcDuino3_Nano_defconfig";
|
|
|
|
targetPlatforms = ["armv7l-linux"];
|
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
|
|
};
|
2015-06-07 19:12:18 +00:00
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
ubootRaspberryPi = buildUBoot rec {
|
|
|
|
defconfig = "rpi_defconfig";
|
|
|
|
targetPlatforms = ["armv6l-linux"];
|
|
|
|
filesToInstall = ["u-boot.bin"];
|
2015-06-07 19:12:18 +00:00
|
|
|
};
|
2010-03-01 23:22:48 +00:00
|
|
|
|
2016-04-23 11:44:19 +00:00
|
|
|
ubootRaspberryPi2 = buildUBoot rec {
|
|
|
|
defconfig = "rpi_2_defconfig";
|
|
|
|
targetPlatforms = ["armv7l-linux"];
|
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2017-01-20 12:54:05 +00:00
|
|
|
ubootRaspberryPi3_32bit = buildUBoot rec {
|
2016-04-23 11:44:19 +00:00
|
|
|
defconfig = "rpi_3_32b_defconfig";
|
|
|
|
targetPlatforms = ["armv7l-linux"];
|
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2017-01-20 12:54:05 +00:00
|
|
|
ubootRaspberryPi3_64bit = buildUBoot rec {
|
|
|
|
defconfig = "rpi_3_defconfig";
|
|
|
|
targetPlatforms = ["aarch64-linux"];
|
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2016-06-23 04:16:29 +00:00
|
|
|
ubootUtilite = buildUBoot rec {
|
|
|
|
defconfig = "cm_fx6_defconfig";
|
|
|
|
targetPlatforms = ["armv7l-linux"];
|
|
|
|
filesToInstall = ["u-boot-with-nand-spl.imx"];
|
|
|
|
buildFlags = "u-boot-with-nand-spl.imx";
|
|
|
|
postConfigure = ''
|
|
|
|
cat >> .config << EOF
|
|
|
|
CONFIG_CMD_SETEXPR=y
|
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
# sata init; load sata 0 $loadaddr u-boot-with-nand-spl.imx
|
|
|
|
# sf probe; sf update $loadaddr 0 80000
|
|
|
|
};
|
|
|
|
|
2015-12-25 18:55:22 +00:00
|
|
|
ubootWandboard = buildUBoot rec {
|
|
|
|
defconfig = "wandboard_defconfig";
|
|
|
|
targetPlatforms = ["armv7l-linux"];
|
|
|
|
filesToInstall = ["u-boot.img" "SPL"];
|
|
|
|
};
|
2009-11-08 00:32:12 +00:00
|
|
|
}
|