2019-01-19 02:00:58 +00:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, bc, bison, dtc, flex, openssl, swig
|
2017-12-11 01:56:36 +00:00
|
|
|
, armTrustedFirmwareAllwinner
|
2018-07-21 01:44:44 +01:00
|
|
|
, buildPackages
|
2017-06-28 21:30:13 +01:00
|
|
|
}:
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2010-03-01 23:22:48 +00:00
|
|
|
let
|
2019-05-18 02:56:31 +01:00
|
|
|
buildUBoot = { version ? "2019.04"
|
2019-01-05 21:10:10 +00:00
|
|
|
, filesToInstall
|
2015-11-02 23:53:10 +00:00
|
|
|
, installDir ? "$out"
|
|
|
|
, defconfig
|
2019-01-01 06:05:36 +00:00
|
|
|
, extraConfig ? ""
|
2017-12-11 01:56:36 +00:00
|
|
|
, extraPatches ? []
|
2017-12-23 01:19:01 +00:00
|
|
|
, extraMakeFlags ? []
|
2015-11-02 23:53:10 +00:00
|
|
|
, extraMeta ? {}
|
|
|
|
, ... } @ args:
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation ({
|
2015-11-02 23:53:10 +00:00
|
|
|
|
2019-01-05 21:10:10 +00:00
|
|
|
pname = "uboot-${defconfig}";
|
|
|
|
inherit version;
|
2015-11-02 23:53:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2";
|
2019-05-18 02:56:31 +01:00
|
|
|
sha256 = "1vwv4bgbl7fjcm073zrphn17hnz5h5h778f88ivdsgbb2lnpgdvn";
|
2015-11-02 23:53:10 +00:00
|
|
|
};
|
|
|
|
|
2017-11-06 23:56:59 +00:00
|
|
|
patches = [
|
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-12-11 01:56:36 +00:00
|
|
|
] ++ extraPatches;
|
2016-09-08 00:37:11 +01:00
|
|
|
|
2017-03-17 20:17:02 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs tools
|
|
|
|
'';
|
|
|
|
|
2018-12-30 23:44:03 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
bc
|
|
|
|
bison
|
|
|
|
dtc
|
|
|
|
flex
|
|
|
|
openssl
|
|
|
|
(buildPackages.python2.withPackages (p: [ p.libfdt ]))
|
|
|
|
swig
|
|
|
|
];
|
2018-02-23 22:50:24 +00:00
|
|
|
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
|
|
|
|
2019-01-01 06:05:36 +00:00
|
|
|
passAsFile = [ "extraConfig" ];
|
|
|
|
|
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
|
|
|
|
2019-01-01 06:05:36 +00:00
|
|
|
cat $extraConfigPath >> .config
|
|
|
|
|
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 20:12:18 +01:00
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
mkdir -p ${installDir}
|
2018-12-30 23:44:03 +00:00
|
|
|
cp ${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 04:13:34 +01:00
|
|
|
|
2018-03-24 14:07:50 +00:00
|
|
|
# make[2]: *** No rule to make target 'lib/efi_loader/helloworld.efi', needed by '__build'. Stop.
|
|
|
|
enableParallelBuilding = false;
|
|
|
|
|
2015-11-02 23:53:10 +00:00
|
|
|
dontStrip = true;
|
2009-11-08 00:32:12 +00:00
|
|
|
|
2018-12-30 23:44:03 +00:00
|
|
|
meta = with lib; {
|
2017-08-01 21:03:30 +01: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
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
in {
|
2015-11-02 23:53:10 +00:00
|
|
|
inherit buildUBoot;
|
2015-06-07 20:12:18 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootTools = buildUBoot {
|
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-12-30 23:44:03 +00:00
|
|
|
extraMeta.platforms = lib.platforms.linux;
|
2018-04-20 12:58:32 +01:00
|
|
|
extraMakeFlags = [ "HOST_TOOLS_ALL=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
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootA20OlinuxinoLime = buildUBoot {
|
2017-06-10 21:21:17 +01:00
|
|
|
defconfig = "A20-OLinuXino-Lime_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2017-06-10 21:21:17 +01:00
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootBananaPi = buildUBoot {
|
2015-12-25 18:31:43 +00:00
|
|
|
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 17:57:08 +01:00
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootBananaPim64 = buildUBoot {
|
2019-04-24 21:50:01 +01:00
|
|
|
defconfig = "bananapi_m64_defconfig";
|
|
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootBeagleboneBlack = buildUBoot {
|
2016-04-18 17:57:08 +01:00
|
|
|
defconfig = "am335x_boneblack_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2016-04-18 17:57:08 +01: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
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootClearfog = buildUBoot {
|
2017-12-22 23:28:59 +00:00
|
|
|
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"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootGuruplug = buildUBoot {
|
2018-02-24 04:47:27 +00:00
|
|
|
defconfig = "guruplug_defconfig";
|
|
|
|
extraMeta.platforms = ["armv5tel-linux"];
|
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootJetsonTK1 = buildUBoot {
|
2015-11-02 23:53:10 +00:00
|
|
|
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"];
|
2018-03-16 17:27:01 +00:00
|
|
|
# tegra-uboot-flasher expects this exact directory layout, sigh...
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/spl
|
|
|
|
cp spl/u-boot-spl $out/spl/
|
|
|
|
'';
|
2015-11-02 23:53:10 +00:00
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootNovena = buildUBoot {
|
2018-07-01 19:46:23 +01:00
|
|
|
defconfig = "novena_defconfig";
|
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
|
|
filesToInstall = ["u-boot.bin" "SPL"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootOdroidXU3 = buildUBoot {
|
2017-03-20 08:06:20 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootOrangePiPc = buildUBoot {
|
2017-12-11 03:11:15 +00:00
|
|
|
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"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootOrangePiZeroPlus2H5 = buildUBoot {
|
2018-09-22 21:25:22 +01:00
|
|
|
defconfig = "orangepi_zero_plus2_defconfig";
|
|
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootPcduino3Nano = buildUBoot {
|
2015-11-02 23:53:10 +00:00
|
|
|
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"];
|
2018-01-19 20:14:00 +00:00
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootPine64 = buildUBoot {
|
2018-01-19 20:14:00 +00:00
|
|
|
defconfig = "pine64_plus_defconfig";
|
|
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
2015-11-02 23:53:10 +00:00
|
|
|
};
|
2015-06-07 20:12:18 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootPine64LTS = buildUBoot {
|
2019-05-18 02:57:14 +01:00
|
|
|
defconfig = "pine64-lts_defconfig";
|
|
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootPinebook = buildUBoot {
|
2019-05-18 02:58:47 +01:00
|
|
|
defconfig = "pinebook_defconfig";
|
|
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootQemuAarch64 = buildUBoot {
|
2018-03-15 07:03:39 +00:00
|
|
|
defconfig = "qemu_arm64_defconfig";
|
|
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootQemuArm = buildUBoot {
|
2017-12-11 22:52:45 +00:00
|
|
|
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"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootRaspberryPi = buildUBoot {
|
2015-11-02 23:53:10 +00:00
|
|
|
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 20:12:18 +01:00
|
|
|
};
|
2010-03-01 23:22:48 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootRaspberryPi2 = buildUBoot {
|
2016-04-23 12:44:19 +01:00
|
|
|
defconfig = "rpi_2_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2016-04-23 12:44:19 +01:00
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootRaspberryPi3_32bit = buildUBoot {
|
2016-04-23 12:44:19 +01:00
|
|
|
defconfig = "rpi_3_32b_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2016-04-23 12:44:19 +01:00
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootRaspberryPi3_64bit = buildUBoot {
|
2017-01-20 12:54:05 +00:00
|
|
|
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"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootRaspberryPiZero = buildUBoot {
|
2018-05-05 12:44:04 +01:00
|
|
|
defconfig = "rpi_0_w_defconfig";
|
|
|
|
extraMeta.platforms = ["armv6l-linux"];
|
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootSheevaplug = buildUBoot {
|
2018-02-24 04:47:27 +00:00
|
|
|
defconfig = "sheevaplug_defconfig";
|
|
|
|
extraMeta.platforms = ["armv5tel-linux"];
|
|
|
|
filesToInstall = ["u-boot.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootSopine = buildUBoot {
|
2017-12-11 01:56:36 +00:00
|
|
|
defconfig = "sopine_baseboard_defconfig";
|
|
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootUtilite = buildUBoot {
|
2016-06-23 05:16:29 +01:00
|
|
|
defconfig = "cm_fx6_defconfig";
|
2018-02-23 22:50:24 +00:00
|
|
|
extraMeta.platforms = ["armv7l-linux"];
|
2016-06-23 05:16:29 +01:00
|
|
|
filesToInstall = ["u-boot-with-nand-spl.imx"];
|
|
|
|
buildFlags = "u-boot-with-nand-spl.imx";
|
2019-01-01 06:05:36 +00:00
|
|
|
extraConfig = ''
|
2016-06-23 05:16:29 +01:00
|
|
|
CONFIG_CMD_SETEXPR=y
|
|
|
|
'';
|
|
|
|
# sata init; load sata 0 $loadaddr u-boot-with-nand-spl.imx
|
|
|
|
# sf probe; sf update $loadaddr 0 80000
|
|
|
|
};
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
ubootWandboard = buildUBoot {
|
2015-12-25 18:55:22 +00:00
|
|
|
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
|
|
|
}
|