]> git.sur5r.net Git - u-boot/commit
net: Prefer command line arguments
authorAlexander Graf <agraf@suse.de>
Fri, 15 Jun 2018 08:29:27 +0000 (10:29 +0200)
committerJoe Hershberger <joe.hershberger@ni.com>
Mon, 2 Jul 2018 19:14:20 +0000 (14:14 -0500)
commit449312c1c0c686ad28c51e6429d8bbdd13812b10
tree785178cef0d557e6220d5de543c37add091c37c4
parentd8970dae276377a0beff1c3e9d8b6f805ecf5cd5
net: Prefer command line arguments

We can call commands like dhcp and bootp without arguments or with
explicit command line arguments that really should tell the code where
to look for files instead.

Unfortunately, the current code simply overwrites command line arguments
in the dhcp case with dhcp values.

This patch allows the code to preserve the command line values if they
were set on the command line. That way the semantics are slightly more
intuitive.

The reason this patch does that by introducing a new variable is that we
can not rely on net_boot_file_name[0] being unset, as today it's
completely legal to call "dhcp" and afterwards run "tftp" and expect the
latter to repeat the same query as before. I would prefer not to break
that behavior in case anyone relies on it.

Signed-off-by: Alexander Graf <agraf@suse.de>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
cmd/net.c
include/net.h
net/bootp.c
net/net.c