update buildroot to 2017.02.11

This commit is contained in:
jbnadal
2018-05-22 15:35:47 +02:00
parent 4bf1f5e091
commit a3c10bd762
9257 changed files with 433426 additions and 1701 deletions

View File

@@ -0,0 +1,28 @@
Fixed Makefile install sections to not reload udev rules. In a
cross-compiler environment, it is not wanted to reload the host udev rules.
Signed-off-by: J.C. Woltz <jwoltz@gmail.com>
Signed-off-by: Patrick Ziegler <patrick.ziegler@fh-kl.de>
--- a/Makefile 2013-06-10 22:32:53.000000000 +0200
+++ b/Makefile 2013-06-11 10:38:03.181161401 +0200
@@ -13,9 +13,9 @@
clean:
$(RM) 40-usb_modeswitch.rules
-install: all files-install db-install rules-reload
+install: all files-install db-install
-install-packed: files-install db-install-packed rules-reload
+install-packed: files-install db-install-packed
files-install:
install -d $(PREFIX)/share/usb_modeswitch
@@ -54,7 +54,7 @@
fi \
fi
-uninstall: files-uninstall rules-reload
+uninstall: files-uninstall
files-uninstall:
$(RM) $(RULESDIR)/40-usb_modeswitch.rules

View File

@@ -0,0 +1,13 @@
config BR2_PACKAGE_USB_MODESWITCH_DATA
bool "usb_modeswitch_data"
select BR2_PACKAGE_USB_MODESWITCH
depends on BR2_TOOLCHAIN_HAS_THREADS # usb_modeswitch -> libusb
help
USB mode switch data
Contains udev rules and events to allow usb_modeswitch to
function automatically
http://www.draisberghof.de/usb_modeswitch/
comment "usb_modeswitch_data needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 d679a44a48b1d1f243fea6b4d2bd54e0e08010ff579dd81eaf698954c0c6dfa7 usb-modeswitch-data-20160112.tar.bz2

View File

@@ -0,0 +1,20 @@
################################################################################
#
# usb_modeswitch_data
#
################################################################################
USB_MODESWITCH_DATA_VERSION = 20160112
USB_MODESWITCH_DATA_SOURCE = usb-modeswitch-data-$(USB_MODESWITCH_DATA_VERSION).tar.bz2
USB_MODESWITCH_DATA_SITE = http://www.draisberghof.de/usb_modeswitch
USB_MODESWITCH_DATA_DEPENDENCIES = usb_modeswitch
USB_MODESWITCH_DATA_LICENSE = GPLv2+
USB_MODESWITCH_DATA_LICENSE_FILES = COPYING
# Nothing to build, it is a pure data package
define USB_MODESWITCH_DATA_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
endef
$(eval $(generic-package))