diff options
author | Philipp Hug <philipp@hug.cx> | 2018-12-31 14:13:47 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-01-26 13:40:51 +0000 |
commit | 2ef569a4050c3b0c3c93b3ffb6b4d804b3a7cddf (patch) | |
tree | e0f58a47dc23a7ec5e1549148c3b10ea95e2171a /src/mainboard/emulation/qemu-riscv/Makefile.inc | |
parent | 175778f059b21f1bce06e1405647e292b3e8e6d6 (diff) | |
download | coreboot-2ef569a4050c3b0c3c93b3ffb6b4d804b3a7cddf.tar.xz |
mb/qemu-riscv: update to match current qemu version
Boots again to payload not found on qemu.
Change-Id: Ie107eb882cbaac5a5a06c1ff990e7b9364377640
Signed-off-by: Philipp Hug <philipp@hug.cx>
Reviewed-on: https://review.coreboot.org/c/30554
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/emulation/qemu-riscv/Makefile.inc')
-rw-r--r-- | src/mainboard/emulation/qemu-riscv/Makefile.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mainboard/emulation/qemu-riscv/Makefile.inc b/src/mainboard/emulation/qemu-riscv/Makefile.inc index 1d882acc63..eb99544c35 100644 --- a/src/mainboard/emulation/qemu-riscv/Makefile.inc +++ b/src/mainboard/emulation/qemu-riscv/Makefile.inc @@ -14,7 +14,7 @@ bootblock-y += uart.c bootblock-y += rom_media.c -bootblock-y += mtime.c +bootblock-y += clint.c romstage-y += romstage.c romstage-y += uart.c @@ -22,8 +22,10 @@ romstage-y += rom_media.c ramstage-y += uart.c ramstage-y += rom_media.c -ramstage-y += mtime.c +ramstage-y += clint.c bootblock-y += memlayout.ld romstage-y += memlayout.ld ramstage-y += memlayout.ld + +CPPFLAGS_common += -I$(src)/mainboard/$(MAINBOARDDIR)/include |