diff options
Diffstat (limited to 'package/flashrom/Config.in')
-rw-r--r-- | package/flashrom/Config.in | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/package/flashrom/Config.in b/package/flashrom/Config.in index 956500f0a4..9420cc69df 100644 --- a/package/flashrom/Config.in +++ b/package/flashrom/Config.in @@ -1,11 +1,24 @@ 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. - Requires PCIUtils libraries. + flashrom is a utility for identifying, reading, writing, + verifying and erasing flash chips. It is designed to flash + BIOS/EFI/coreboot/firmware/optionROM images on mainboards, + network/graphics/storage controller cards, and various other + programmer devices. 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 |