rpiboot: Refactor and update to 20240926-102326 (#350985)

This commit is contained in:
Florian Klink
2024-10-24 23:57:07 +02:00
committed by GitHub
2 changed files with 25 additions and 10 deletions
@@ -1,14 +1,20 @@
{ lib, stdenv, fetchFromGitHub, libusb1, pkg-config }:
{
lib,
stdenv,
fetchFromGitHub,
libusb1,
pkg-config,
}:
stdenv.mkDerivation rec {
pname = "rpiboot";
version = "20221215-105525";
version = "20240926-102326";
src = fetchFromGitHub {
owner = "raspberrypi";
repo = "usbboot";
rev = version;
hash = "sha256-Y77IrDblXmnpZleJ3zTyiGDYLZ7gNxASXpqUzwS1NCU=";
hash = "sha256-9m7PAw1WNQlfqOr5hDXrCsZlZLBmvoGUT58NN2cVolw=";
};
buildInputs = [ libusb1 ];
@@ -22,16 +28,27 @@ stdenv.mkDerivation rec {
mkdir -p $out/bin
mkdir -p $out/share/rpiboot
cp rpiboot $out/bin
cp -r msd $out/share/rpiboot
cp -r msd firmware eeprom-erase mass-storage-gadget* recovery* secure-boot* rpi-imager-embedded $out/share/rpiboot
'';
meta = with lib; {
meta = {
homepage = "https://github.com/raspberrypi/usbboot";
changelog = "https://github.com/raspberrypi/usbboot/blob/${version}/debian/changelog";
description = "Utility to boot a Raspberry Pi CM/CM3/CM4/Zero over USB";
mainProgram = "rpiboot";
license = licenses.asl20;
maintainers = with maintainers; [ cartr flokli ];
platforms = [ "aarch64-linux" "aarch64-darwin" "armv7l-linux" "armv6l-linux" "x86_64-linux" "x86_64-darwin" ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
cartr
flokli
stv0g
];
platforms = [
"aarch64-linux"
"aarch64-darwin"
"armv7l-linux"
"armv6l-linux"
"x86_64-linux"
"x86_64-darwin"
];
};
}
-2
View File
@@ -11875,8 +11875,6 @@ with pkgs;
rpPPPoE = callPackage ../tools/networking/rp-pppoe { };
rpiboot = callPackage ../development/misc/rpiboot { };
rpm = callPackage ../tools/package-management/rpm {
python = python3;
lua = lua5_4;