mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
net: Use new numeric setenv functions
Use setenv_ulong(), setenv_hex() and setenv_addr() in net/ Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -528,15 +528,11 @@ restart:
|
||||
case NETLOOP_SUCCESS:
|
||||
net_cleanup_loop();
|
||||
if (NetBootFileXferSize > 0) {
|
||||
char buf[20];
|
||||
printf("Bytes transferred = %ld (%lx hex)\n",
|
||||
NetBootFileXferSize,
|
||||
NetBootFileXferSize);
|
||||
sprintf(buf, "%lX", NetBootFileXferSize);
|
||||
setenv("filesize", buf);
|
||||
|
||||
sprintf(buf, "%lX", (unsigned long)load_addr);
|
||||
setenv("fileaddr", buf);
|
||||
setenv_hex("filesize", NetBootFileXferSize);
|
||||
setenv_hex("fileaddr", load_addr);
|
||||
}
|
||||
if (protocol != NETCONS)
|
||||
eth_halt();
|
||||
|
Reference in New Issue
Block a user