diff options
author | Nico Huber <nico.h@gmx.de> | 2021-06-27 00:07:13 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2021-07-12 11:01:31 +0000 |
commit | e0d889a0f0cf71c51eb49501d799f3f8df3e623e (patch) | |
tree | 9e853e4f4ac0682ef8e343e9e0066fb2f57a9b25 /Makefile | |
parent | 81f5f1cd301870b845019a2c4903a2b68a598dc1 (diff) | |
download | flashrom-e0d889a0f0cf71c51eb49501d799f3f8df3e623e.tar.gz flashrom-e0d889a0f0cf71c51eb49501d799f3f8df3e623e.tar.bz2 flashrom-e0d889a0f0cf71c51eb49501d799f3f8df3e623e.zip |
Makefile: Move NI845X_SPI default to the other defaults
Change-Id: I0317eb1190eae366a142d9410bee4110edc06e3d
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/55870
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -227,9 +227,6 @@ FLASHROM_CFLAGS += -Dffs=__builtin_ffs # for MinGW. See http://sourceforge.net/p/mingw-w64/wiki2/printf%20and%20scanf%20family/ */ FLASHROM_CFLAGS += -D__USE_MINGW_ANSI_STDIO=1 -# National Instruments USB-845x is Windows only for now -CONFIG_NI845X_SPI ?= no - # For now we disable all PCI-based programmers on Windows/MinGW (no libpci). ifeq ($(CONFIG_INTERNAL), yes) UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes @@ -772,6 +769,9 @@ CONFIG_DIGILENT_SPI ?= yes # Disable J-Link for now. CONFIG_JLINK_SPI ?= no +# National Instruments USB-845x is Windows only and needs a proprietary library. +CONFIG_NI845X_SPI ?= no + # Disable wiki printing by default. It is only useful if you have wiki access. CONFIG_PRINT_WIKI ?= no |