mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
cedbdc934d
We allowed passing another version, but that wasn't too useful, given we hardcoded the hash of the fetchurl.
285 lines
7.7 KiB
Nix
285 lines
7.7 KiB
Nix
{ stdenv, lib, fetchurl, fetchpatch, bc, bison, dtc, flex, openssl, swig
|
|
, armTrustedFirmwareAllwinner
|
|
, buildPackages
|
|
}:
|
|
|
|
let
|
|
defaultVersion = "2019.10";
|
|
defaultSrc = fetchurl {
|
|
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${defaultVersion}.tar.bz2";
|
|
sha256 = "053hcrwwlacqh2niisn0zas95zkbffw5aw5sdhixs8lmfdq60vcd";
|
|
};
|
|
buildUBoot = {
|
|
version ? null
|
|
, src ? null
|
|
, filesToInstall
|
|
, installDir ? "$out"
|
|
, defconfig
|
|
, extraConfig ? ""
|
|
, extraPatches ? []
|
|
, extraMakeFlags ? []
|
|
, extraMeta ? {}
|
|
, ... } @ args: stdenv.mkDerivation ({
|
|
pname = "uboot-${defconfig}";
|
|
|
|
version = if src == null then defaultVersion else version;
|
|
|
|
src = if src == null then defaultSrc else src;
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = https://github.com/dezgeg/u-boot/commit/extlinux-path-length-2018-03.patch;
|
|
sha256 = "07jafdnxvqv8lz256qy29agjc2k1zj5ad4k28r1w5qkhwj4ixmf8";
|
|
})
|
|
] ++ extraPatches;
|
|
|
|
postPatch = ''
|
|
patchShebangs tools
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
bc
|
|
bison
|
|
dtc
|
|
flex
|
|
openssl
|
|
(buildPackages.python2.withPackages (p: [ p.libfdt ]))
|
|
swig
|
|
];
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
hardeningDisable = [ "all" ];
|
|
|
|
makeFlags = [
|
|
"DTC=dtc"
|
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
|
] ++ extraMakeFlags;
|
|
|
|
passAsFile = [ "extraConfig" ];
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
|
|
make ${defconfig}
|
|
|
|
cat $extraConfigPath >> .config
|
|
|
|
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 = with maintainers; [ dezgeg samueldr ];
|
|
} // extraMeta;
|
|
} // removeAttrs args [ "extraMeta" ]);
|
|
|
|
in {
|
|
inherit buildUBoot;
|
|
|
|
ubootTools = buildUBoot {
|
|
defconfig = "tools-only_defconfig";
|
|
installDir = "$out/bin";
|
|
hardeningDisable = [];
|
|
dontStrip = false;
|
|
extraMeta.platforms = lib.platforms.linux;
|
|
extraMakeFlags = [ "HOST_TOOLS_ALL=y" "CROSS_BUILD_TOOLS=1" "NO_SDL=1" "tools" ];
|
|
filesToInstall = [
|
|
"tools/dumpimage"
|
|
"tools/fdtgrep"
|
|
"tools/kwboot"
|
|
"tools/mkenvimage"
|
|
"tools/mkimage"
|
|
];
|
|
};
|
|
|
|
ubootA20OlinuxinoLime = buildUBoot {
|
|
defconfig = "A20-OLinuXino-Lime_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
ubootBananaPi = buildUBoot {
|
|
defconfig = "Bananapi_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
ubootBananaPim64 = buildUBoot {
|
|
defconfig = "bananapi_m64_defconfig";
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
ubootBeagleboneBlack = buildUBoot {
|
|
defconfig = "am335x_boneblack_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["MLO" "u-boot.img"];
|
|
};
|
|
|
|
# http://git.denx.de/?p=u-boot.git;a=blob;f=board/solidrun/clearfog/README;hb=refs/heads/master
|
|
ubootClearfog = buildUBoot {
|
|
defconfig = "clearfog_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot-spl.kwb"];
|
|
};
|
|
|
|
ubootGuruplug = buildUBoot {
|
|
defconfig = "guruplug_defconfig";
|
|
extraMeta.platforms = ["armv5tel-linux"];
|
|
filesToInstall = ["u-boot.bin"];
|
|
};
|
|
|
|
ubootJetsonTK1 = buildUBoot {
|
|
defconfig = "jetson-tk1_defconfig";
|
|
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/
|
|
'';
|
|
};
|
|
|
|
ubootNovena = buildUBoot {
|
|
defconfig = "novena_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot.bin" "SPL"];
|
|
};
|
|
|
|
ubootOdroidXU3 = buildUBoot {
|
|
defconfig = "odroid-xu3_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot-dtb.bin"];
|
|
};
|
|
|
|
ubootOrangePiPc = buildUBoot {
|
|
defconfig = "orangepi_pc_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
ubootOrangePiZeroPlus2H5 = buildUBoot {
|
|
defconfig = "orangepi_zero_plus2_defconfig";
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
ubootPcduino3Nano = buildUBoot {
|
|
defconfig = "Linksprite_pcDuino3_Nano_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
ubootPine64 = buildUBoot {
|
|
defconfig = "pine64_plus_defconfig";
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
ubootPine64LTS = buildUBoot {
|
|
defconfig = "pine64-lts_defconfig";
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
ubootPinebook = buildUBoot {
|
|
defconfig = "pinebook_defconfig";
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
ubootQemuAarch64 = buildUBoot {
|
|
defconfig = "qemu_arm64_defconfig";
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
filesToInstall = ["u-boot.bin"];
|
|
};
|
|
|
|
ubootQemuArm = buildUBoot {
|
|
defconfig = "qemu_arm_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot.bin"];
|
|
};
|
|
|
|
ubootRaspberryPi = buildUBoot {
|
|
defconfig = "rpi_defconfig";
|
|
extraMeta.platforms = ["armv6l-linux"];
|
|
filesToInstall = ["u-boot.bin"];
|
|
};
|
|
|
|
ubootRaspberryPi2 = buildUBoot {
|
|
defconfig = "rpi_2_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot.bin"];
|
|
};
|
|
|
|
ubootRaspberryPi3_32bit = buildUBoot {
|
|
defconfig = "rpi_3_32b_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot.bin"];
|
|
};
|
|
|
|
ubootRaspberryPi3_64bit = buildUBoot {
|
|
defconfig = "rpi_3_defconfig";
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
filesToInstall = ["u-boot.bin"];
|
|
};
|
|
|
|
ubootRaspberryPiZero = buildUBoot {
|
|
defconfig = "rpi_0_w_defconfig";
|
|
extraMeta.platforms = ["armv6l-linux"];
|
|
filesToInstall = ["u-boot.bin"];
|
|
};
|
|
|
|
ubootSheevaplug = buildUBoot {
|
|
defconfig = "sheevaplug_defconfig";
|
|
extraMeta.platforms = ["armv5tel-linux"];
|
|
filesToInstall = ["u-boot.bin"];
|
|
};
|
|
|
|
ubootSopine = buildUBoot {
|
|
defconfig = "sopine_baseboard_defconfig";
|
|
extraMeta.platforms = ["aarch64-linux"];
|
|
BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin";
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
ubootUtilite = buildUBoot {
|
|
defconfig = "cm_fx6_defconfig";
|
|
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 {
|
|
defconfig = "wandboard_defconfig";
|
|
extraMeta.platforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot.img" "SPL"];
|
|
};
|
|
}
|