From: Michal Simek Date: Fri, 12 Apr 2019 09:36:37 +0000 (+0200) Subject: cmd: fru: Save fru decoding address to variables X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d6fc3864209053e5c6f87909c37eede5a581ab55;p=thirdparty%2Fu-boot.git cmd: fru: Save fru decoding address to variables Keep record of place where fru is. Signed-off-by: Michal Simek --- diff --git a/common/fru_ops.c b/common/fru_ops.c index 26cb888a96f..e3be6da9699 100644 --- a/common/fru_ops.c +++ b/common/fru_ops.c @@ -115,6 +115,8 @@ int fru_capture(unsigned long addr) fru_parse_board(addr); } + env_set_hex("fru_addr", addr); + return 0; }