mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
net: Fix build regression in cmd_pxe.c
Not all boards define an SOC. As a result, we can't depend on that.
This was introduced in 39f985536d
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
39f985536d
commit
58d9ff936f
1 changed files with 2 additions and 0 deletions
|
@ -27,7 +27,9 @@
|
|||
#define MAX_TFTP_PATH_LEN 127
|
||||
|
||||
const char *pxe_default_paths[] = {
|
||||
#ifdef CONFIG_SYS_SOC
|
||||
"default-" CONFIG_SYS_ARCH "-" CONFIG_SYS_SOC,
|
||||
#endif
|
||||
"default-" CONFIG_SYS_ARCH,
|
||||
"default",
|
||||
NULL
|
||||
|
|
Loading…
Add table
Reference in a new issue