diff options
author | Angel Pons <th3fanbus@gmail.com> | 2020-06-19 23:23:53 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-07-05 17:04:18 +0000 |
commit | aff9f54e6bc50e587ec07ac0ec2b3b8e1b7136a8 (patch) | |
tree | e5e2be74ced6d779887f44fcba3003dcc7e878cc /src/arch/x86 | |
parent | 06a70e0a7c7f8464571ba4ec09c26233877fa8ae (diff) |
arch/x86/Makefile.inc: Drop unused reset.c rule
No x86 mainboard has a reset.c file.
Change-Id: I167629c7addf485944926d57cf0228606c0f32e5
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/42582
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/Makefile.inc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/arch/x86/Makefile.inc b/src/arch/x86/Makefile.inc index 1a1aa408b1..b5352e7ab5 100644 --- a/src/arch/x86/Makefile.inc +++ b/src/arch/x86/Makefile.inc @@ -288,9 +288,6 @@ endif ifeq ($(CONFIG_GENERATE_PIRQ_TABLE),y) ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/irq_tables.c endif -ifneq ($(wildcard src/mainboard/$(MAINBOARDDIR)/reset.c),) -ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/reset.c -endif ramstage-libs ?= |