Re: [U-Boot] [PATCH v2] cmd: pxe: Use internal FDT if retrieving from FDTDIR fails

2020-12-02 Thread Tom Rini
On Tue, Sep 03, 2019 at 10:52:24AM +0300, Anton Leontiev wrote: > From: Anton Leontiev > > As FDTDIR label doesn't specify exact file to be loaded, it should > not fail if no file exists in the directory. In this case try to boot > with internal FDT if it exists. > > Signed-off-by: Anton

Re: [U-Boot] [PATCH v2] cmd: pxe: Use internal FDT if retrieving from FDTDIR fails

2019-10-15 Thread Anton Leontiev
2019-09-03 10:52, Anton Leontiev : > From: Anton Leontiev > > As FDTDIR label doesn't specify exact file to be loaded, it should > not fail if no file exists in the directory. In this case try to boot > with internal FDT if it exists. > > Signed-off-by: Anton Leontiev Tom, could you take a look

Re: [U-Boot] [PATCH v2] cmd: pxe: Use internal FDT if retrieving from FDTDIR fails

2019-09-17 Thread Anton Leontiev
2019-09-03 19:18, Stephen Warren : > Is it possible/sensible to distinguish between "file not found" and > "error during retrieval"? "File not found" indicates the case you care > about, and continuing to use a built-in DT makes sense here. "Error > during retrieval" indicates that the file was

Re: [U-Boot] [PATCH v2] cmd: pxe: Use internal FDT if retrieving from FDTDIR fails

2019-09-03 Thread Stephen Warren
On 9/3/19 1:52 AM, Anton Leontiev wrote: From: Anton Leontiev As FDTDIR label doesn't specify exact file to be loaded, it should not fail if no file exists in the directory. In this case try to boot with internal FDT if it exists. Signed-off-by: Anton Leontiev --- cmd/pxe.c | 21

[U-Boot] [PATCH v2] cmd: pxe: Use internal FDT if retrieving from FDTDIR fails

2019-09-03 Thread Anton Leontiev
From: Anton Leontiev As FDTDIR label doesn't specify exact file to be loaded, it should not fail if no file exists in the directory. In this case try to boot with internal FDT if it exists. Signed-off-by: Anton Leontiev --- cmd/pxe.c | 21 ++--- 1 file changed, 14