xref: /openbmc/openpower-debug-collector/dump/tools/bmcdump/plugins/vpd_data (revision a24ae1772284558976e2cdf4fe9f314ca5ec72e1)
1*24226c4fSGopichand Paturi#!/usr/bin/env bash
2*24226c4fSGopichand Paturi#
3*24226c4fSGopichand Paturi# config: 2 50
4*24226c4fSGopichand Paturi# @brief: Collect VPD persistent data
5*24226c4fSGopichand Paturi#
6*24226c4fSGopichand Paturi
7*24226c4fSGopichand Paturi. $DREPORT_INCLUDE/functions
8*24226c4fSGopichand Paturi
9*24226c4fSGopichand Paturifile_name="/var/lib/vpd"
10*24226c4fSGopichand Paturidesc="VPD persistent data"
11*24226c4fSGopichand Paturi
12*24226c4fSGopichand Paturiif [ -d "$file_name" ]; then
13*24226c4fSGopichand Paturi    add_copy_file "$file_name" "$desc"
14*24226c4fSGopichand Paturielse
15*24226c4fSGopichand Paturi    log_info "No $desc data"
16*24226c4fSGopichand Paturifi
17