From ddce240d3498dbcfc2f07847a3c36e6601456bd0 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Sun, 25 May 2025 09:37:17 +0200 Subject: [PATCH] cpu/intel/haswell: Clean up Makefile Group entries by stage and sort groups by stage execution order. Change-Id: I6e2a53d6555700b48fd3aececdfdb8983554a75a Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/87826 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Patrick Rudolph --- src/cpu/intel/haswell/Makefile.mk | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/cpu/intel/haswell/Makefile.mk b/src/cpu/intel/haswell/Makefile.mk index 7323ed97f0..8b8e98600a 100644 --- a/src/cpu/intel/haswell/Makefile.mk +++ b/src/cpu/intel/haswell/Makefile.mk @@ -1,22 +1,21 @@ ## SPDX-License-Identifier: GPL-2.0-only -ramstage-y += haswell_init.c +bootblock-y += bootblock.c +bootblock-y += ../car/non-evict/cache_as_ram.S +bootblock-y += ../car/bootblock.c +bootblock-y += ../../x86/early_reset.S romstage-y += romstage.c romstage-y += ../car/romstage.c +postcar-y += ../car/non-evict/exit_car.S + ramstage-y += acpi.c +ramstage-y += haswell_init.c ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smmrelocate.c smm-y += finalize.c -bootblock-y += ../car/non-evict/cache_as_ram.S -bootblock-y += ../car/bootblock.c -bootblock-y += ../../x86/early_reset.S -bootblock-y += bootblock.c - -postcar-y += ../car/non-evict/exit_car.S - subdirs-y += ../microcode subdirs-y += ../turbo