initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
config BR2_PACKAGE_DFU_UTIL
|
||||
bool "dfu-util"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
|
||||
select BR2_PACKAGE_LIBUSB
|
||||
help
|
||||
Dfu-util is the host side implementation of the DFU 1.0 and
|
||||
DFU 1.1 specification of the USB forum.
|
||||
DFU is intended to download and upload firmware to devices
|
||||
connected over USB.
|
||||
|
||||
http://dfu-util.sourceforge.net/
|
||||
|
||||
comment "dfu-util needs a toolchain w/ threads, gcc >= 4.9"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
||||
@@ -0,0 +1,13 @@
|
||||
config BR2_PACKAGE_HOST_DFU_UTIL
|
||||
bool "host dfu-util"
|
||||
depends on BR2_HOST_GCC_AT_LEAST_4_9 # host-libusb
|
||||
help
|
||||
Dfu-util is the host side implementation of the DFU 1.0 and
|
||||
DFU 1.1 specification of the USB forum.
|
||||
DFU is intended to download and upload firmware to devices
|
||||
connected over USB.
|
||||
|
||||
http://dfu-util.sourceforge.net/
|
||||
|
||||
comment "host dfu-util needs a toolchain w/ host gcc >= 4.9"
|
||||
depends on !BR2_HOST_GCC_AT_LEAST_4_9
|
||||
@@ -0,0 +1,6 @@
|
||||
# From http://dfu-util.sourceforge.net/releases/dfu-util-0.11.tar.gz.md5
|
||||
md5 31c983543a1fe8f03260ca4d56ad4f43 dfu-util-0.11.tar.gz
|
||||
|
||||
# Locally computed
|
||||
sha256 b4b53ba21a82ef7e3d4c47df2952adf5fa494f499b6b0b57c58c5d04ae8ff19e dfu-util-0.11.tar.gz
|
||||
sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
|
||||
@@ -0,0 +1,16 @@
|
||||
################################################################################
|
||||
#
|
||||
# dfu-util
|
||||
#
|
||||
################################################################################
|
||||
|
||||
DFU_UTIL_VERSION = 0.11
|
||||
DFU_UTIL_SITE = http://dfu-util.sourceforge.net/releases
|
||||
DFU_UTIL_LICENSE = GPL-2.0+, LGPL-3.0
|
||||
DFU_UTIL_LICENSE_FILES = COPYING
|
||||
|
||||
DFU_UTIL_DEPENDENCIES = libusb
|
||||
HOST_DFU_UTIL_DEPENDENCIES = host-libusb
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user