mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
PXE: if a board has set its own value for CONFIG_BOOTP_VCI_STRING do not set the default one. Use the board set value instead
Signed-off-by: Dennis Gilmore <dennis@ausil.us>
This commit is contained in:
parent
32b4a8a2a5
commit
2100f22fcb
1 changed files with 6 additions and 0 deletions
|
@ -23,12 +23,18 @@
|
|||
#if defined(__arm__) || defined(__aarch64__)
|
||||
#define CONFIG_BOOTP_PXE_CLIENTARCH 0x100
|
||||
#if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__)
|
||||
#if !defined(CONFIG_BOOTP_VCI_STRING)
|
||||
#define CONFIG_BOOTP_VCI_STRING "U-boot.armv7"
|
||||
#endif
|
||||
#elif defined(__aarch64__)
|
||||
#if !defined(CONFIG_BOOTP_VCI_STRING)
|
||||
#define CONFIG_BOOTP_VCI_STRING "U-boot.armv8"
|
||||
#endif
|
||||
#else
|
||||
#if !defined(CONFIG_BOOTP_VCI_STRING)
|
||||
#define CONFIG_BOOTP_VCI_STRING "U-boot.arm"
|
||||
#endif
|
||||
#endif
|
||||
#elif defined(__i386__)
|
||||
#define CONFIG_BOOTP_PXE_CLIENTARCH 0x0
|
||||
#elif defined(__x86_64__)
|
||||
|
|
Loading…
Reference in a new issue