]> git.baikalelectronics.ru Git - uboot.git/commit
cmd: net: add a 'net list' command to list network devs
authorTim Harvey <tharvey@gateworks.com>
Fri, 18 Jun 2021 22:26:21 +0000 (15:26 -0700)
committerRamon Fried <rfried.dev@gmail.com>
Tue, 6 Jul 2021 02:22:41 +0000 (05:22 +0300)
commit7a681577f4a6bd0228aec296f0c7ca5989dbddf7
treea9aa2c05b36f684f15a95a18e071964c5485a89e
parentbf7edf841126fa455142dcda6451689b898a3034
cmd: net: add a 'net list' command to list network devs

In a system with multiple network controllers it can be difficult
to know the names of the various devices available. This is especially
true for USB ether devices as they do not display device names upon
detection.

This is being added as a net sub-system in case other commands may
want to be added or moved here.

Note that this is only enabled for DM_ETH

Example:
U-Boot > net
net - NET sub-system

Usage:
net list - list available devices

U-Boot > net list
eth0 : ethernet@2188000 00:d0:12:98:f5:47 active
eth1 : e1000#0 00:d0:12:98:f5:48
eth2 : asix_eth 8c:ae:4c:f5:84:9d
eth3 : asix_eth 8c:ae:4c:f9:41:e3

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Reviewed-by: Stefan Roese <sr@denx.de>
Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
cmd/net.c