5b01950f0c
This version adds support for new Intel SoC (e.g. BayTrail) and spi over usb devices such as pickit2 and ftdi usb-spi. [Thomas: - add missing Config.in comment about the thread dependency - remove 'Requires PCIUtils libraries' from the Config.in help text, since flashrom now requires more than PCIUtils library, and we typically don't document such dependencies in Config.in help texts.] Signed-off-by: Florent Valette <florent.valette@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
651 B
Makefile
23 lines
651 B
Makefile
################################################################################
|
|
#
|
|
# flashrom
|
|
#
|
|
################################################################################
|
|
|
|
FLASHROM_VERSION = 0.9.8
|
|
FLASHROM_SOURCE = flashrom-$(FLASHROM_VERSION).tar.bz2
|
|
FLASHROM_SITE = http://download.flashrom.org/releases
|
|
FLASHROM_DEPENDENCIES = pciutils libusb libusb-compat libftdi
|
|
FLASHROM_LICENSE = GPLv2+
|
|
FLASHROM_LICENSE_FILES = COPYING
|
|
|
|
define FLASHROM_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define FLASHROM_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/flashrom $(TARGET_DIR)/usr/sbin/flashrom
|
|
endef
|
|
|
|
$(eval $(generic-package))
|