diff options
author | Zheng Bao <fishbaozi@gmail.com> | 2023-03-22 12:50:36 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-03-24 14:04:31 +0000 |
commit | f080cd5463d5b12ad854b18be6114d8d79243218 (patch) | |
tree | 777f7f3288c25dadd533f65c0e6a3de567030380 /util/amdfwtool/Makefile.inc | |
parent | 94927888c7740a602f363c402da4b10282f0e616 (diff) |
amdfwtool: Move some funtions to other categorized source files
To reduce the size of amdfwtool.c which is already too big.
Change-Id: Ib80eeb42f59a3dda04402b2feaadc1d178ed989e
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73910
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'util/amdfwtool/Makefile.inc')
-rw-r--r-- | util/amdfwtool/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/amdfwtool/Makefile.inc b/util/amdfwtool/Makefile.inc index b9c3ced74d..7d96155736 100644 --- a/util/amdfwtool/Makefile.inc +++ b/util/amdfwtool/Makefile.inc @@ -1,6 +1,6 @@ # SPDX-License-Identifier: BSD-3-Clause -amdfwtoolobj = amdfwtool.o data_parse.o +amdfwtoolobj = amdfwtool.o data_parse.o signed_psp.o handle_file.o amdfwreadobj = amdfwread.o AMDFWTOOLCFLAGS=-O2 -Wall -Wextra -Wshadow -Werror |