mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-18 16:01:32 +01:00
Move each command in cmd/net-lwip.c into its own file
(cmd/lwip/${cmd}.c).
Suggested-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
10 lines
256 B
C
10 lines
256 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/* Copyright (C) 2024-2025 Linaro Ltd. */
|
|
|
|
#include <command.h>
|
|
#include <net.h>
|
|
|
|
U_BOOT_CMD(tftpboot, 3, 0, do_tftpb,
|
|
"boot image via network using TFTP protocol",
|
|
"[loadAddress] [[hostIPaddr:]bootfilename]");
|