Update to flashrom version 1.0 and cherry-pick an upstream fix for deprecated
libusb api usage.
Fixes the following error spotted by the buildbots:
ch341a_spi.c: In function 'ch341a_spi_init':
ch341a_spi.c:447:2: error: 'libusb_set_debug' is deprecated: [...]
libusb_set_debug(NULL, 3); // Enable information, warning and [...]
^~~~~~~~~~~~~~~~
In file included from ch341a_spi.c:25:0:
.../libusb-1.0/libusb.h:1300:18: note: declared here
void LIBUSB_CALL libusb_set_debug(libusb_context *ctx, int level);
^~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
Makefile:1030: recipe for target 'ch341a_spi.o' failed
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit cb6e98ba44
)
111 lines
2.8 KiB
Makefile
111 lines
2.8 KiB
Makefile
#
|
|
# Copyright (C) 2010-2017 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=flashrom
|
|
PKG_VERSION:=1.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://download.flashrom.org/releases
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_HASH:=3702fa215ba5fb5af8e54c852d239899cfa1389194c1e51cb2a170c4dc9dee64
|
|
PKG_MAINTAINER:=Álvaro Fernández Rojas <noltari@gmail.com>
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR)
|
|
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include flashrom.mk
|
|
|
|
TARGET_CFLAGS+= \
|
|
-std=gnu89
|
|
|
|
MAKE_FLAGS+= \
|
|
PREFIX="/usr"
|
|
|
|
define Package/flashrom/default
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=FlashROM Utility
|
|
URL:=http://www.flashrom.org/
|
|
endef
|
|
|
|
define Package/flashrom
|
|
$(Package/flashrom/default)
|
|
TITLE+= (full)
|
|
DEPENDS+= \
|
|
+(TARGET_x86||TARGET_x86_64):dmidecode \
|
|
+libftdi1 \
|
|
+libusb-1.0 \
|
|
+libusb-compat \
|
|
+pciutils
|
|
VARIANT:=full
|
|
DEFAULT_VARIANT:=1
|
|
endef
|
|
|
|
define Package/flashrom-pci
|
|
$(Package/flashrom/default)
|
|
TITLE+= (pci)
|
|
DEPENDS+= \
|
|
+(TARGET_x86||TARGET_x86_64):dmidecode \
|
|
+pciutils
|
|
VARIANT:=pci
|
|
endef
|
|
|
|
define Package/flashrom-spi
|
|
$(Package/flashrom/default)
|
|
TITLE+= (spi)
|
|
VARIANT:=spi
|
|
endef
|
|
|
|
define Package/flashrom-usb
|
|
$(Package/flashrom/default)
|
|
TITLE+= (usb)
|
|
DEPENDS+= \
|
|
+libftdi1 \
|
|
+libusb-1.0 \
|
|
+libusb-compat
|
|
VARIANT:=usb
|
|
endef
|
|
|
|
define Package/flashrom/default/description
|
|
flashrom is an utility for identifying, reading, writing, verifying
|
|
and erasing flash chips. It's often used to flash BIOS/EFI/coreboot
|
|
/firmware images.
|
|
endef
|
|
Package/flashrom/description = $(Package/flashrom/default/description)
|
|
Package/flashrom-pci/description = $(Package/flashrom/default/description)
|
|
Package/flashrom-spi/description = $(Package/flashrom/default/description)
|
|
Package/flashrom-usb/description = $(Package/flashrom/default/description)
|
|
|
|
define Package/flashrom/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/flashrom $(1)/usr/sbin/flashrom
|
|
endef
|
|
define Package/flashrom-pci/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/flashrom $(1)/usr/sbin/flashrom-pci
|
|
endef
|
|
define Package/flashrom-spi/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/flashrom $(1)/usr/sbin/flashrom-spi
|
|
endef
|
|
define Package/flashrom-usb/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/flashrom $(1)/usr/sbin/flashrom-usb
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,flashrom))
|
|
$(eval $(call BuildPackage,flashrom-pci))
|
|
$(eval $(call BuildPackage,flashrom-spi))
|
|
$(eval $(call BuildPackage,flashrom-usb))
|