mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
32-bit mass-storage-gadget has been replaced with mass-storage-gadget64. Drop patch included upstream. Upstream diff: https://github.com/raspberrypi/usbboot/compare/20240926-102326...20250227-132106 Signed-off-by: Fiona Klute (WIWA) <fiona.klute@gmx.de> Signed-off-by: Julien Olivain <ju.o@free.fr>
24 lines
735 B
Makefile
24 lines
735 B
Makefile
################################################################################
|
|
#
|
|
# raspberrypi-usbboot
|
|
#
|
|
################################################################################
|
|
|
|
RASPBERRYPI_USBBOOT_VERSION = 20250227-132106
|
|
RASPBERRYPI_USBBOOT_SITE = https://github.com/raspberrypi/usbboot.git
|
|
RASPBERRYPI_USBBOOT_SITE_METHOD = git
|
|
RASPBERRYPI_USBBOOT_LICENSE = Apache-2.0
|
|
RASPBERRYPI_USBBOOT_LICENSE_FILES = LICENSE
|
|
|
|
HOST_RASPBERRYPI_USBBOOT_DEPENDENCIES = host-libusb
|
|
|
|
define HOST_RASPBERRYPI_USBBOOT_BUILD_CMDS
|
|
$(HOST_MAKE_ENV) $(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define HOST_RASPBERRYPI_USBBOOT_INSTALL_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/rpiboot $(HOST_DIR)/bin/rpiboot
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|