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>
21 lines
575 B
Plaintext
21 lines
575 B
Plaintext
config BR2_PACKAGE_FLASHROM
|
|
bool "flashrom"
|
|
select BR2_PACKAGE_PCIUTILS
|
|
select BR2_PACKAGE_LIBUSB
|
|
select BR2_PACKAGE_LIBUSB_COMPAT
|
|
select BR2_PACKAGE_LIBFTDI
|
|
# dmidecode is only a runtime dependency
|
|
select BR2_PACKAGE_DMIDECODE
|
|
depends on BR2_i386 || BR2_x86_64
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
|
|
depends on BR2_ARCH_HAS_ATOMICS # libftdi
|
|
help
|
|
BIOS-updating utility.
|
|
|
|
http://flashrom.org/
|
|
|
|
comment "flashrom needs a toolchain w/ threads"
|
|
depends on BR2_i386 || BR2_x86_64
|
|
depends on BR2_ARCH_HAS_ATOMICS
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|