commit | 85f137843669fd64228a3efda4d96cb9eb90aa69 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sat Dec 28 10:45:03 2019 -0700 |
committer | Tom Rini <trini@konsulko.com> | Fri Jan 17 14:02:35 2020 -0500 |
tree | 676aead549f3a82f2cf0260474eb48f43aeb1c61 | |
parent | 892265dff0bb29e5a9324452ae032c019cf2ecf8 [diff] [blame] |
common: Move the image globals into image.h These three globals relate to image handling. Move them to the image header file. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/cmd/net.c b/cmd/net.c index 6bce214..1b724cc 100644 --- a/cmd/net.c +++ b/cmd/net.c
@@ -10,6 +10,7 @@ #include <common.h> #include <command.h> #include <env.h> +#include <image.h> #include <net.h> static int netboot_common(enum proto_t, cmd_tbl_t *, int, char * const []);