2018-02-23 22:50:24 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, bc, dtc, openssl, python2, swig
|
|
|
|
, hostPlatform, buildPackages
|
2017-06-28 20:30:13 +00:00
|
|
|
}:
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2010-03-01 23:22:48 +00:00
|
|
|
let
|
2018-02-23 22:50:24 +00:00
|
|
|
buildUBoot = { filesToInstall
|
2015-11-02 23:53:10 +00:00
|
|
|
, installDir ? "$out"
|
|
|
|
, defconfig
|
2017-12-23 01:19:01 +00:00
|
|
|
, extraMakeFlags ? []
|
2015-11-02 23:53:10 +00:00
|
|
|
, extraMeta ? {}
|
|
|
|
, ... } @ args:
|
|
|
|
stdenv.mkDerivation (rec {
|
|
|
|
|
|
|
|
name = "uboot-${defconfig}-${version}";
|
2018-02-23 22:50:24 +00:00
|
|
|
version = "2018.03";
|
2015-11-02 23:53:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2";
|
2018-02-23 22:50:24 +00:00
|
|
|
sha256 = "1z9x635l5164c5hnf7qs19w7j3qghbkgs7rpn673dm898i9pfx3y";
|
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 {
|
2018-02-23 22:50:24 +00:00
|
|
|
url = https://github.com/dezgeg/u-boot/commit/pythonpath-2018-03.patch;
|
|
|
|
sha256 = "1rhhlhrwhv7ic1n5i720jfh2cxwrkssrkvinllyjy3j9k9bpzcqd";
|
2017-11-06 23:56:59 +00:00
|
|
|
})
|
2018-03-04 02:17:13 +00:00
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/dezgeg/u-boot/commit/extlinux-path-length-2018-03.patch;
|
|
|
|
sha256 = "07jafdnxvqv8lz256qy29agjc2k1zj5ad4k28r1w5qkhwj4ixmf8";
|
|
|
|
})
|
2017-11-06 23:56:59 +00:00
|
|
|
];
|
2016-09-07 23:37:11 +00:00
|
|
|
|
2017-03-17 20:17:02 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs tools
|
|
|
|
'';
|
|
|
|
|
2018-02-23 22:50:24 +00:00
|
|
|
nativeBuildInputs = [ bc dtc openssl python2 swig ];
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2017-11-06 23:56:59 +00:00
|
|
|
|
|
|
|
hardeningDisable = [ "all" ];
|
|
|
|
|
2018-02-23 22:50:24 +00:00
|
|
|
makeFlags = [
|
|
|
|
"DTC=dtc"
|
|
|
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
|
|
|
] ++ extraMakeFlags;
|
2017-11-06 23:56:59 +00:00
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
configurePhase = ''
|
2018-02-23 22:50:24 +00:00
|
|
|
runHook preConfigure
|
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
make ${defconfig}
|
2018-02-23 22:50:24 +00:00
|
|
|
|
|
|
|
runHook postConfigure
|
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
|
|
|
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 ];
|
|
|
|
} // extraMeta;
|
2018-02-23 22:50:24 +00:00
|
|
|
} // removeAttrs args [ "extraMeta" ]);
|
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";
|
2018-02-23 22:50:24 +00:00
|
|
|
hardeningDisable = [];
|
2015-11-02 23:53:10 +00:00
|
|
|
dontStrip = false;
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = stdenv.lib.platforms.linux;
|
2017-12-23 01:19:13 +00:00
|
|
|
# build tools/kwboot
|
2018-03-06 05:04:10 +00:00
|
|
|
extraMakeFlags = [ "CONFIG_KIRKWOOD=y" "CROSS_BUILD_TOOLS=1" "NO_SDL=1" "tools" ];
|
2018-02-23 22:50:24 +00:00
|
|
|
postConfigure = ''
|
|
|
|
sed -i '/CONFIG_SYS_TEXT_BASE/c\CONFIG_SYS_TEXT_BASE=0x00000000' .config
|
|
|
|
'';
|
2017-12-23 01:19:13 +00:00
|
|
|
filesToInstall = [
|
|
|
|
"tools/dumpimage"
|
|
|
|
"tools/fdtgrep"
|
|
|
|
"tools/kwboot"
|
|
|
|
"tools/mkenvimage"
|
|
|
|
"tools/mkimage"
|
|
|
|
];
|
2015-11-02 23:53:10 +00:00
|
|
|
};
|
|
|
|
|
2017-06-10 20:21:17 +00:00
|
|
|
ubootA20OlinuxinoLime = buildUBoot rec {
|
|
|
|
defconfig = "A20-OLinuXino-Lime_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2017-06-10 20:21:17 +00:00
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
|
|
};
|
|
|
|
|
2015-12-25 18:31:43 +00:00
|
|
|
ubootBananaPi = buildUBoot rec {
|
|
|
|
defconfig = "Bananapi_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2015-12-25 18:31:43 +00:00
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
2016-04-18 16:57:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ubootBeagleboneBlack = buildUBoot rec {
|
|
|
|
defconfig = "am335x_boneblack_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2016-04-18 16:57:08 +00:00
|
|
|
filesToInstall = ["MLO" "u-boot.img"];
|
2015-12-25 18:31:43 +00:00
|
|
|
};
|
|
|
|
|
2017-12-22 23:28:59 +00:00
|
|
|
# http://git.denx.de/?p=u-boot.git;a=blob;f=board/solidrun/clearfog/README;hb=refs/heads/master
|
|
|
|
ubootClearfog = buildUBoot rec {
|
|
|
|
defconfig = "clearfog_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2017-12-22 23:28:59 +00:00
|
|
|
filesToInstall = ["u-boot-spl.kwb"];
|
|
|
|
};
|
|
|
|
|
2018-02-24 04:47:27 +00:00
|
|
|
ubootGuruplug = buildUBoot rec {
|
|
|
|
defconfig = "guruplug_defconfig";
|
|
|
|
extraMeta.platforms = ["armv5tel-linux"];
|
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
ubootJetsonTK1 = buildUBoot rec {
|
|
|
|
defconfig = "jetson-tk1_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2015-11-02 23:53:10 +00:00
|
|
|
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";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2017-03-21 01:23:02 +00:00
|
|
|
filesToInstall = ["u-boot-dtb.bin"];
|
2017-03-20 08:06:20 +00:00
|
|
|
};
|
|
|
|
|
2017-12-11 03:11:15 +00:00
|
|
|
ubootOrangePiPc = buildUBoot rec {
|
|
|
|
defconfig = "orangepi_pc_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2017-12-11 03:11:15 +00:00
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
|
|
};
|
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
ubootPcduino3Nano = buildUBoot rec {
|
|
|
|
defconfig = "Linksprite_pcDuino3_Nano_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2015-11-02 23:53:10 +00:00
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
|
|
};
|
2015-06-07 19:12:18 +00:00
|
|
|
|
2017-12-11 22:52:45 +00:00
|
|
|
ubootQemuArm = buildUBoot rec {
|
|
|
|
defconfig = "qemu_arm_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2017-12-11 22:52:45 +00:00
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
ubootRaspberryPi = buildUBoot rec {
|
|
|
|
defconfig = "rpi_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv6l-linux"];
|
2015-11-02 23:53:10 +00:00
|
|
|
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";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2016-04-23 11:44:19 +00:00
|
|
|
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";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2016-04-23 11:44:19 +00:00
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2017-01-20 12:54:05 +00:00
|
|
|
ubootRaspberryPi3_64bit = buildUBoot rec {
|
|
|
|
defconfig = "rpi_3_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["aarch64-linux"];
|
2017-01-20 12:54:05 +00:00
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2018-02-24 04:47:27 +00:00
|
|
|
ubootSheevaplug = buildUBoot rec {
|
|
|
|
defconfig = "sheevaplug_defconfig";
|
|
|
|
extraMeta.platforms = ["armv5tel-linux"];
|
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2016-06-23 04:16:29 +00:00
|
|
|
ubootUtilite = buildUBoot rec {
|
|
|
|
defconfig = "cm_fx6_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2016-06-23 04:16:29 +00:00
|
|
|
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";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2015-12-25 18:55:22 +00:00
|
|
|
filesToInstall = ["u-boot.img" "SPL"];
|
|
|
|
};
|
2009-11-08 00:32:12 +00:00
|
|
|
}
|