diff options
| author | Jerome Forissier <[email protected]> | 2025-06-25 15:19:11 +0200 |
|---|---|---|
| committer | Jerome Forissier <[email protected]> | 2025-07-08 11:07:37 +0200 |
| commit | d63c4434bfa2727b1ecb8162ba49e8a7e69e24b2 (patch) | |
| tree | e23154fa367adeb47946bfa0550cf506927d4598 | |
| parent | 1c55e0370b2fbde433daa3035ca0976858effd6d (diff) | |
lwip: move net/lwip/ping.c to cmd/lwip
Prepare to split the ping command from cmd/net-lwip.c by moving the
implementation from net/lwip/dns.c to cmd/lwip.
Signed-off-by: Jerome Forissier <[email protected]>
| -rw-r--r-- | cmd/lwip/Makefile | 1 | ||||
| -rw-r--r-- | cmd/lwip/ping.c (renamed from net/lwip/ping.c) | 0 | ||||
| -rw-r--r-- | net/lwip/Makefile | 1 |
3 files changed, 1 insertions, 1 deletions
diff --git a/cmd/lwip/Makefile b/cmd/lwip/Makefile index 6c4ab58d06b..da79b64b5c2 100644 --- a/cmd/lwip/Makefile +++ b/cmd/lwip/Makefile @@ -1 +1,2 @@ obj-$(CONFIG_CMD_DNS) += dns.o +obj-$(CONFIG_CMD_PING) += ping.o diff --git a/net/lwip/ping.c b/cmd/lwip/ping.c index 1390b914f7d..1390b914f7d 100644 --- a/net/lwip/ping.c +++ b/cmd/lwip/ping.c diff --git a/net/lwip/Makefile b/net/lwip/Makefile index 255c7d018b0..97299d9b542 100644 --- a/net/lwip/Makefile +++ b/net/lwip/Makefile @@ -2,7 +2,6 @@ ccflags-y += -I$(srctree)/lib/lwip/lwip/src/include -I$(srctree)/lib/lwip/u-boot obj-$(CONFIG_$(PHASE_)DM_ETH) += net-lwip.o obj-$(CONFIG_CMD_DHCP) += dhcp.o -obj-$(CONFIG_CMD_PING) += ping.o obj-$(CONFIG_CMD_TFTPBOOT) += tftp.o obj-$(CONFIG_WGET) += wget.o |
