Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
1.0 KiB
Nix
48 lines
1.0 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
rkbin,
|
|
qemu,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "rkboot";
|
|
|
|
src = rkbin.src;
|
|
|
|
postPatch = ''
|
|
substituteInPlace RKBOOT/*.ini --replace 'PATH=' 'PATH=rkboot/'
|
|
'';
|
|
|
|
buildPhase = ''
|
|
mkdir rkboot
|
|
for i in $(ls ./RKBOOT/*.ini)
|
|
do
|
|
# The proprietary, statically linked binaries to perform boot_merge are
|
|
# x86_64 only. Though we use box64 to emulate if building on aarch64-linux
|
|
${lib.optionalString stdenv.hostPlatform.isAarch64 "${qemu}/bin/qemu-x86_64"} ./tools/boot_merger "$i" || true
|
|
done
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
if [ -z "$(ls -A rkboot)" ]; then
|
|
echo "Error: The 'rkboot' directory is empty."
|
|
exit 1
|
|
else
|
|
mv rkboot $out/bin
|
|
fi
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Rockchip proprietary SPL bootloader blobs";
|
|
homepage = "https://github.com/rockchip-linux/rkbin";
|
|
license = licenses.unfreeRedistributable;
|
|
maintainers = with maintainers; [ matthewcroughan ];
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
];
|
|
};
|
|
}
|