xref: /openbmc/phosphor-debug-collector/tools/dreport.d/plugins.d/altfwprintenv (revision 89d648e7974663d869fe00f476183c39e8d5a04d)
1ce910e96SJayanth Othayoth#!/bin/bash
2ce910e96SJayanth Othayoth#
3ce910e96SJayanth Othayoth# config: 2 50
4ce910e96SJayanth Othayoth# @brief: Print variables from Alt flash U-Boot environment.
5ce910e96SJayanth Othayoth#
6ce910e96SJayanth Othayoth
7*89d648e7SMarri Devender Rao. "$DREPORT_INCLUDE"/functions
8ce910e96SJayanth Othayoth
9ce910e96SJayanth Othayothdesc="Alt-Flash: U-Boot environment variables"
10ce910e96SJayanth Othayothenv_config="/etc/alt_fw_env.config"
11ce910e96SJayanth Othayoth
12ce910e96SJayanth Othayothif [ ! -f $env_config ]; then
13ce910e96SJayanth Othayoth    exit
14ce910e96SJayanth Othayothfi
15ce910e96SJayanth Othayoth
16ce910e96SJayanth Othayoth
17ce910e96SJayanth Othayothfile_name="alt-fw-printenv.log"
18ce910e96SJayanth Othayothcommand="fw_printenv -c $env_config"
19ce910e96SJayanth Othayoth
20ce910e96SJayanth Othayothadd_cmd_output "$command" "$file_name" "$desc"
21