diff options
| author | Heinrich Schuchardt <[email protected]> | 2024-04-04 01:00:41 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2024-04-08 13:04:48 +0200 |
| commit | a0a749787aa4cebd8a1b919ee04cc8f450796fcb (patch) | |
| tree | 8da39804fd0f8461a77883e8be03fff4aa55151c /include | |
| parent | 8f31929562f5305c0ce94f2f41eedeb231d8d215 (diff) | |
efi_loader: move HOST_ARCH to version_autogenerated.h
efi_default_filename.h requires HOST_ARCH to be defined. Up to now we
defined it via a CFLAGS. This does not scale. Add the symbol to
version_autogenerated.h instead.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Acked-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/host_arch.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/host_arch.h b/include/host_arch.h index 169d4945136..261194bd7c6 100644 --- a/include/host_arch.h +++ b/include/host_arch.h @@ -16,6 +16,8 @@ export HOST_ARCH_X86=0x0386 export HOST_ARCH_X86_64=0x8664 #endif +#include <version.h> + #define HOST_ARCH_AARCH64 0xaa64 #define HOST_ARCH_ARM 0x00a7 #define HOST_ARCH_RISCV32 0x5032 |
