blob: 3eb698b3f82dbce8d53939db3657d8b05050f1ca (
plain)
1
2
3
4
5
6
7
8
|
// SPDX-License-Identifier: GPL-2.0+
/* Copyright (C) 2024 Linaro Ltd. */
#include <command.h>
#include <net.h>
U_BOOT_CMD(dns, 3, 1, do_dns, "lookup the IP of a hostname",
"hostname [envvar]");
|