diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2024-08-21 13:47:09 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2024-08-27 09:06:58 +0000 |
commit | 1dfe9dc46063c751e0bf3a4637e144c0da4d5502 (patch) | |
tree | c9de2c0c3cf3f6e80fbae665c4a03189cec15a58 /payloads/coreinfo | |
parent | b1cf21378d843bd97a8061569c2b9fc837b7bb84 (diff) |
libpayload: Set reasonable arch defaults
This makes it easy to switch between x86_32 and x86_64 in payloads.
Change-Id: I3ac5f24d83dc80db924e92b53403c477e6256c44
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84014
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'payloads/coreinfo')
-rw-r--r-- | payloads/coreinfo/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/payloads/coreinfo/Makefile b/payloads/coreinfo/Makefile index 9655e24cc3..c8bf8f09fc 100644 --- a/payloads/coreinfo/Makefile +++ b/payloads/coreinfo/Makefile @@ -19,8 +19,6 @@ OBJECTS = cpuinfo_module.o cpuid.S.o pci_module.o coreboot_module.o \ OBJS = $(patsubst %,$(obj)/%,$(OBJECTS)) TARGET = $(obj)/coreinfo.elf -ARCH := x86_32 - all: real-all include ../libpayload/Makefile.payload |