odroid-xu3-bootloader: init at 2015-12-04

This commit is contained in:
Nikolay Amiantov 2017-03-20 11:52:08 +03:00
parent a9d44b5c30
commit c1e279046b
2 changed files with 33 additions and 0 deletions

@ -0,0 +1,31 @@
{ stdenv, lib, fetchFromGitHub, coreutils, ubootOdroidXU3 }:
stdenv.mkDerivation {
name = "odroid-xu3-bootloader-2015-12-04";
src = fetchFromGitHub {
owner = "hardkernel";
repo = "u-boot";
rev = "bbdea1841c4fbf767dcaf9d7ae8d3a46af235c4d";
sha256 = "03rvyfj147xh83w8hlvbxix131l3nnvk8n517fdhv9nil1l8dd71";
};
buildCommand = ''
install -Dm644 -t $out/lib/sd_fuse-xu3 $src/sd_fuse/hardkernel/*.hardkernel
ln -sf ${ubootOdroidXU3}/u-boot.bin $out/lib/sd_fuse-xu3/u-boot.bin.hardkernel
install -Dm755 $src/sd_fuse/hardkernel/sd_fusing.sh $out/bin/sd_fuse-xu3
sed -i \
-e '1i#!${stdenv.shell}' \
-e '1iPATH=${lib.makeBinPath [ coreutils ]}:$PATH' \
-e "s,if=\./,if=$out/lib/sd_fuse-xu3/,g" \
$out/bin/sd_fuse-xu3
'';
meta = with stdenv.lib; {
platforms = platforms.linux;
license = licenses.unfreeRedistributableFirmware;
description = "Secure boot enabled boot loader for ODROID-XU{3,4}";
maintainers = with maintainers; [ abbradar ];
};
}

@ -11935,6 +11935,8 @@ with pkgs;
nss_ldap = callPackage ../os-specific/linux/nss_ldap { };
odroid-xu3-bootloader = callPackage ../tools/misc/odroid-xu3-bootloader { };
pagemon = callPackage ../os-specific/linux/pagemon { };
pam = callPackage ../os-specific/linux/pam { };