1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tools/radvd: fix help text

radvd can be started on any interface, not just tap devices.
The help text is confusing.
This commit is contained in:
Benjamin Valentin 2021-11-23 20:02:47 +01:00
parent 3bb5588b28
commit 851906763b

View File

@ -30,7 +30,7 @@ start_radvd() {
usage() {
echo "usage: $0 [options]" >&2
echo "Options:" >&2
echo " -c <tap-device> <prefix>: Start radvd on <tap-device>, advertising <prefix>" >&2
echo " -c <interface> <prefix>: Start radvd on <interface>, advertising <prefix>" >&2
echo " -d, --delete: Stop radvd" >&2
}