Maximilian Brune has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/87290?usp=email )
Change subject: mb/emulation/qemu-q35/Makefile.mk: Use all-y for memmap.c ......................................................................
mb/emulation/qemu-q35/Makefile.mk: Use all-y for memmap.c
Signed-off-by: Maximilian Brune maximilian.brune@9elements.com Change-Id: I14cd19c6c0f458a8d9a4034bb6faff0b42577f54 --- M src/mainboard/emulation/qemu-q35/Makefile.mk 1 file changed, 1 insertion(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/90/87290/1
diff --git a/src/mainboard/emulation/qemu-q35/Makefile.mk b/src/mainboard/emulation/qemu-q35/Makefile.mk index fc85e64..f0612ce 100644 --- a/src/mainboard/emulation/qemu-q35/Makefile.mk +++ b/src/mainboard/emulation/qemu-q35/Makefile.mk @@ -1,22 +1,19 @@ ## SPDX-License-Identifier: GPL-2.0-only
bootblock-y += bootblock.c -bootblock-y += memmap.c
romstage-y += ../qemu-i440fx/memmap.c -romstage-y += memmap.c
postcar-y += ../qemu-i440fx/memmap.c postcar-y += ../qemu-i440fx/exit_car.S -postcar-y += memmap.c
ramstage-y += ../qemu-i440fx/memmap.c ramstage-y += ../qemu-i440fx/northbridge.c ramstage-y += ../qemu-i440fx/rom_media.c -ramstage-y += memmap.c ramstage-y += cpu.c
all-y += ../qemu-i440fx/bootmode.c +all-y += memmap.c
ramstage-$(CONFIG_CHROMEOS) += chromeos.c