f80a563461
I don't own this board, but someone on IRC reported this as working (and anyway it's practically identical to ubootPcduino3Nano since they're both Allwinner boards)
95 lines
2.5 KiB
Nix
95 lines
2.5 KiB
Nix
{ stdenv, fetchurl, bc, dtc }:
|
|
|
|
let
|
|
buildUBoot = { targetPlatforms
|
|
, filesToInstall
|
|
, installDir ? "$out"
|
|
, defconfig
|
|
, extraMeta ? {}
|
|
, ... } @ args:
|
|
stdenv.mkDerivation (rec {
|
|
|
|
name = "uboot-${defconfig}-${version}";
|
|
version = "2015.10";
|
|
|
|
nativeBuildInputs = [ bc dtc ];
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2";
|
|
sha256 = "0m8r08izci0lzzjn5c5g5manp2rc7yc5swww0lxr7bamjigqvimx";
|
|
};
|
|
|
|
configurePhase = ''
|
|
make ${defconfig}
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p ${installDir}
|
|
cp ${stdenv.lib.concatStringsSep " " filesToInstall} ${installDir}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
dontStrip = true;
|
|
|
|
crossAttrs = {
|
|
makeFlags = [
|
|
"ARCH=${stdenv.cross.platform.kernelArch}"
|
|
"CROSS_COMPILE=${stdenv.cross.config}-"
|
|
];
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://www.denx.de/wiki/U-Boot/";
|
|
description = "Boot loader for embedded systems";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.dezgeg ];
|
|
platforms = targetPlatforms;
|
|
} // extraMeta;
|
|
} // args);
|
|
|
|
in rec {
|
|
inherit buildUBoot;
|
|
|
|
ubootTools = buildUBoot rec {
|
|
installDir = "$out/bin";
|
|
buildFlags = "tools NO_SDL=1";
|
|
dontStrip = false;
|
|
targetPlatforms = stdenv.lib.platforms.linux;
|
|
filesToInstall = ["tools/dumpimage" "tools/mkenvimage" "tools/mkimage"];
|
|
};
|
|
|
|
ubootBananaPi = buildUBoot rec {
|
|
defconfig = "Bananapi_defconfig";
|
|
targetPlatforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
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"];
|
|
};
|
|
|
|
ubootPcduino3Nano = buildUBoot rec {
|
|
defconfig = "Linksprite_pcDuino3_Nano_defconfig";
|
|
targetPlatforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot-sunxi-with-spl.bin"];
|
|
};
|
|
|
|
ubootRaspberryPi = buildUBoot rec {
|
|
defconfig = "rpi_defconfig";
|
|
targetPlatforms = ["armv6l-linux"];
|
|
filesToInstall = ["u-boot.bin"];
|
|
};
|
|
|
|
# Intended only for QEMU's vexpress-a9 emulation target!
|
|
ubootVersatileExpressCA9 = buildUBoot rec {
|
|
defconfig = "vexpress_ca9x4_defconfig";
|
|
targetPlatforms = ["armv7l-linux"];
|
|
filesToInstall = ["u-boot"];
|
|
patches = [ ./vexpress-Use-config_distro_bootcmd.patch ];
|
|
};
|
|
}
|