nixpkgs/pkgs/misc/uboot/default.nix

278 lines
7.6 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, fetchpatch, bc, bison, dtc, flex, openssl, swig
, armTrustedFirmwareAllwinner
, buildPackages
2017-06-28 20:30:13 +00:00
}:
let
2019-05-18 01:56:31 +00:00
buildUBoot = { version ? "2019.04"
, filesToInstall
, installDir ? "$out"
, defconfig
, extraConfig ? ""
, extraPatches ? []
2017-12-23 01:19:01 +00:00
, extraMakeFlags ? []
, extraMeta ? {}
, ... } @ args:
stdenv.mkDerivation (rec {
pname = "uboot-${defconfig}";
inherit version;
src = fetchurl {
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2";
2019-05-18 01:56:31 +00:00
sha256 = "1vwv4bgbl7fjcm073zrphn17hnz5h5h778f88ivdsgbb2lnpgdvn";
};
patches = [
(fetchpatch {
url = https://github.com/dezgeg/u-boot/commit/extlinux-path-length-2018-03.patch;
sha256 = "07jafdnxvqv8lz256qy29agjc2k1zj5ad4k28r1w5qkhwj4ixmf8";
})
] ++ extraPatches;
2016-09-07 23:37:11 +00:00
2017-03-17 20:17:02 +00:00
postPatch = ''
patchShebangs tools
'';
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 ];
hardeningDisable = [ "all" ];
2018-02-23 22:50:24 +00:00
makeFlags = [
"DTC=dtc"
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
] ++ extraMakeFlags;
passAsFile = [ "extraConfig" ];
configurePhase = ''
2018-02-23 22:50:24 +00:00
runHook preConfigure
make ${defconfig}
2018-02-23 22:50:24 +00:00
cat $extraConfigPath >> .config
2018-02-23 22:50:24 +00:00
runHook postConfigure
'';
installPhase = ''
runHook preInstall
mkdir -p ${installDir}
cp ${lib.concatStringsSep " " filesToInstall} ${installDir}
runHook postInstall
'';
# make[2]: *** No rule to make target 'lib/efi_loader/helloworld.efi', needed by '__build'. Stop.
enableParallelBuilding = false;
dontStrip = true;
meta = with lib; {
homepage = http://www.denx.de/wiki/U-Boot/;
description = "Boot loader for embedded systems";
license = licenses.gpl2;
maintainers = [ maintainers.dezgeg ];
} // extraMeta;
2018-02-23 22:50:24 +00:00
} // removeAttrs args [ "extraMeta" ]);
in rec {
inherit buildUBoot;
ubootTools = buildUBoot rec {
defconfig = "allnoconfig";
installDir = "$out/bin";
2018-02-23 22:50:24 +00:00
hardeningDisable = [];
dontStrip = false;
extraMeta.platforms = lib.platforms.linux;
2018-04-20 11:58:32 +00: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
'';
filesToInstall = [
"tools/dumpimage"
"tools/fdtgrep"
"tools/kwboot"
"tools/mkenvimage"
"tools/mkimage"
];
};
ubootA20OlinuxinoLime = buildUBoot rec {
defconfig = "A20-OLinuXino-Lime_defconfig";
2018-02-23 22:50:24 +00:00
extraMeta.platforms = ["armv7l-linux"];
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
};
ubootBananaPi = buildUBoot rec {
defconfig = "Bananapi_defconfig";
2018-02-23 22:50:24 +00:00
extraMeta.platforms = ["armv7l-linux"];
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
2016-04-18 16:57:08 +00:00
};
2019-04-24 20:50:01 +00:00
ubootBananaPim64 = buildUBoot rec {
defconfig = "bananapi_m64_defconfig";
extraMeta.platforms = ["aarch64-linux"];
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
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"];
};
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"];
};
ubootGuruplug = buildUBoot rec {
defconfig = "guruplug_defconfig";
extraMeta.platforms = ["armv5tel-linux"];
filesToInstall = ["u-boot.bin"];
};
ubootJetsonTK1 = buildUBoot rec {
defconfig = "jetson-tk1_defconfig";
2018-02-23 22:50:24 +00:00
extraMeta.platforms = ["armv7l-linux"];
filesToInstall = ["u-boot" "u-boot.dtb" "u-boot-dtb-tegra.bin" "u-boot-nodtb-tegra.bin"];
# tegra-uboot-flasher expects this exact directory layout, sigh...
postInstall = ''
mkdir -p $out/spl
cp spl/u-boot-spl $out/spl/
'';
};
2018-07-01 18:46:23 +00:00
ubootNovena = buildUBoot rec {
defconfig = "novena_defconfig";
extraMeta.platforms = ["armv7l-linux"];
filesToInstall = ["u-boot.bin" "SPL"];
};
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"];
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"];
};
ubootOrangePiZeroPlus2H5 = buildUBoot rec {
defconfig = "orangepi_zero_plus2_defconfig";
extraMeta.platforms = ["aarch64-linux"];
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
};
ubootPcduino3Nano = buildUBoot rec {
defconfig = "Linksprite_pcDuino3_Nano_defconfig";
2018-02-23 22:50:24 +00:00
extraMeta.platforms = ["armv7l-linux"];
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
2018-01-19 20:14:00 +00:00
};
ubootPine64 = buildUBoot rec {
defconfig = "pine64_plus_defconfig";
extraMeta.platforms = ["aarch64-linux"];
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
};
ubootPine64LTS = buildUBoot rec {
defconfig = "pine64-lts_defconfig";
extraMeta.platforms = ["aarch64-linux"];
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
};
ubootQemuAarch64 = buildUBoot rec {
defconfig = "qemu_arm64_defconfig";
extraMeta.platforms = ["aarch64-linux"];
filesToInstall = ["u-boot.bin"];
};
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"];
};
ubootRaspberryPi = buildUBoot rec {
defconfig = "rpi_defconfig";
2018-02-23 22:50:24 +00:00
extraMeta.platforms = ["armv6l-linux"];
filesToInstall = ["u-boot.bin"];
};
ubootRaspberryPi2 = buildUBoot rec {
defconfig = "rpi_2_defconfig";
2018-02-23 22:50:24 +00:00
extraMeta.platforms = ["armv7l-linux"];
filesToInstall = ["u-boot.bin"];
};
ubootRaspberryPi3_32bit = buildUBoot rec {
defconfig = "rpi_3_32b_defconfig";
2018-02-23 22:50:24 +00:00
extraMeta.platforms = ["armv7l-linux"];
filesToInstall = ["u-boot.bin"];
};
ubootRaspberryPi3_64bit = buildUBoot rec {
defconfig = "rpi_3_defconfig";
2018-02-23 22:50:24 +00:00
extraMeta.platforms = ["aarch64-linux"];
filesToInstall = ["u-boot.bin"];
};
ubootRaspberryPiZero = buildUBoot rec {
defconfig = "rpi_0_w_defconfig";
extraMeta.platforms = ["armv6l-linux"];
filesToInstall = ["u-boot.bin"];
};
ubootSheevaplug = buildUBoot rec {
defconfig = "sheevaplug_defconfig";
extraMeta.platforms = ["armv5tel-linux"];
filesToInstall = ["u-boot.bin"];
};
ubootSopine = buildUBoot rec {
defconfig = "sopine_baseboard_defconfig";
extraMeta.platforms = ["aarch64-linux"];
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
};
ubootUtilite = buildUBoot rec {
defconfig = "cm_fx6_defconfig";
2018-02-23 22:50:24 +00:00
extraMeta.platforms = ["armv7l-linux"];
filesToInstall = ["u-boot-with-nand-spl.imx"];
buildFlags = "u-boot-with-nand-spl.imx";
extraConfig = ''
CONFIG_CMD_SETEXPR=y
'';
# sata init; load sata 0 $loadaddr u-boot-with-nand-spl.imx
# sf probe; sf update $loadaddr 0 80000
};
ubootWandboard = buildUBoot rec {
defconfig = "wandboard_defconfig";
2018-02-23 22:50:24 +00:00
extraMeta.platforms = ["armv7l-linux"];
filesToInstall = ["u-boot.img" "SPL"];
};
}