Jayanth Othayoth | ce910e9 | 2018-02-06 21:11:13 -0600 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # config: 2 50 |
| 4 | # @brief: Print variables from Alt flash U-Boot environment. |
| 5 | # |
| 6 | |
Marri Devender Rao | 89d648e | 2022-04-14 01:45:44 -0500 | [diff] [blame] | 7 | . "$DREPORT_INCLUDE"/functions |
Jayanth Othayoth | ce910e9 | 2018-02-06 21:11:13 -0600 | [diff] [blame] | 8 | |
| 9 | desc="Alt-Flash: U-Boot environment variables" |
| 10 | env_config="/etc/alt_fw_env.config" |
| 11 | |
| 12 | if [ ! -f $env_config ]; then |
Jayanth Othayoth | ce910e9 | 2018-02-06 21:11:13 -0600 | [diff] [blame] | 13 | exit |
| 14 | fi |
| 15 | |
| 16 | |
| 17 | file_name="alt-fw-printenv.log" |
| 18 | command="fw_printenv -c $env_config" |
| 19 | |
| 20 | add_cmd_output "$command" "$file_name" "$desc" |