Skip to content
Snippets Groups Projects
Commit f96d0b81 authored by Sjoerd Simons's avatar Sjoerd Simons Committed by Simon Glass
Browse files

config: Add default client arch defines for intel architectures


Define default PXE client architecture identifiers for IA32 (0x0 aka
Intel x86PC) and Intel x86-64 (0x9 aka EFI x86-64).

This prepares for usage for config_distro_defaults in the sandbox
architecture

Signed-off-by: default avatarSjoerd Simons <sjoerd.simons@collabora.co.uk>
parent 4a0bd102
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,10 @@ ...@@ -29,6 +29,10 @@
#else #else
#define CONFIG_BOOTP_VCI_STRING "U-boot.arm" #define CONFIG_BOOTP_VCI_STRING "U-boot.arm"
#endif #endif
#elif defined(__i386__)
#define CONFIG_BOOTP_PXE_CLIENTARCH 0x0
#elif defined(__x86_64__)
#define CONFIG_BOOTP_PXE_CLIENTARCH 0x9
#endif #endif
#define CONFIG_OF_LIBFDT #define CONFIG_OF_LIBFDT
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment