diff options
author | Luis Araneda <luaraneda@gmail.com> | 2018-07-19 03:10:16 -0400 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2018-07-19 10:49:56 +0200 |
commit | 3907eef1a385e52d99d9888de078cd652548a668 (patch) | |
tree | f3e3f86320fd86aec650a419ea6d0bd733d0193a /common | |
parent | a133b3ac3257e471f521991e472c8f8c15d2c5a9 (diff) | |
download | u-boot-3907eef1a385e52d99d9888de078cd652548a668.zip u-boot-3907eef1a385e52d99d9888de078cd652548a668.tar.gz u-boot-3907eef1a385e52d99d9888de078cd652548a668.tar.bz2 |
spl: fit: display a message when an FPGA image is loaded
A message should be displayed if an image is loaded
to an FPGA, because the hardware might have changed,
and the user should be informed
Signed-off-by: Luis Araneda <luaraneda@gmail.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/spl_fit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c index 5b51a28..9eabb1c 100644 --- a/common/spl/spl_fit.c +++ b/common/spl/spl_fit.c @@ -412,6 +412,7 @@ int spl_load_simple_fit(struct spl_image_info *spl_image, printf("%s: Cannot load the FPGA: %i\n", __func__, ret); return ret; } + puts("FPGA image loaded from FIT\n"); node = -1; } #endif |