#!/bin/bash

path=/sys/class/boardinfo/pg_map

if [ -f "$path" ]
then
    cat $path
fi
