diff options
author | Edward O'Callaghan <quasisec@google.com> | 2023-01-12 13:51:24 +1100 |
---|---|---|
committer | Edward O'Callaghan <quasisec@chromium.org> | 2023-02-15 06:28:41 +0000 |
commit | 7c3fa6d5cd94dd90eeff2b55a510e26d18393674 (patch) | |
tree | d0b995659e9b35257c4783fc4552aa0d74c948c1 /Makefile | |
parent | 3a1a0684b999a68e265266651983cb0429faf288 (diff) | |
download | flashrom-7c3fa6d5cd94dd90eeff2b55a510e26d18393674.tar.gz flashrom-7c3fa6d5cd94dd90eeff2b55a510e26d18393674.tar.bz2 flashrom-7c3fa6d5cd94dd90eeff2b55a510e26d18393674.zip |
internal: Move parallel logic into internal_par implementation
The parallel internal programmer is its own implementation. Move
it and call into it from the top-level internal.c programmer
implementation.
Change-Id: Idabeceb59a36680f5fbb45d3ee4bd5dbf837373b
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/71834
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Reviewed-by: Thomas Heijligen <src@posteo.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -584,14 +584,14 @@ ifeq ($(ARCH), x86) ifeq ($(CONFIG_INTERNAL) $(CONFIG_INTERNAL_X86), yes yes) FEATURE_FLAGS += -D'CONFIG_INTERNAL=1' PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o \ - internal.o it87spi.o sb600spi.o superio.o amd_imc.o wbsio_spi.o mcp6x_spi.o \ + internal.o internal_par.o it87spi.o sb600spi.o superio.o amd_imc.o wbsio_spi.o mcp6x_spi.o \ ichspi.o dmi.o known_boards.o ACTIVE_PROGRAMMERS += internal endif else ifeq ($(CONFIG_INTERNAL), yes) FEATURE_FLAGS += -D'CONFIG_INTERNAL=1' -PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o internal.o known_boards.o +PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o internal.o internal_par.o known_boards.o ACTIVE_PROGRAMMERS += internal endif endif |