From 456380bb272d3a301c887eee513a3937cc1f48e1 Mon Sep 17 00:00:00 2001 From: "Jason M. Bills" Date: Tue, 22 Oct 2019 14:01:54 -0700 Subject: Update to internal 10-22-19 Signed-off-by: Jason M. Bills --- .../recipes-phosphor/fru/default-fru/checkFru.sh | 38 ---------------------- 1 file changed, 38 deletions(-) delete mode 100755 meta-openbmc-mods/meta-ast2500/recipes-phosphor/fru/default-fru/checkFru.sh (limited to 'meta-openbmc-mods/meta-ast2500/recipes-phosphor/fru/default-fru/checkFru.sh') diff --git a/meta-openbmc-mods/meta-ast2500/recipes-phosphor/fru/default-fru/checkFru.sh b/meta-openbmc-mods/meta-ast2500/recipes-phosphor/fru/default-fru/checkFru.sh deleted file mode 100755 index 4b7910198..000000000 --- a/meta-openbmc-mods/meta-ast2500/recipes-phosphor/fru/default-fru/checkFru.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -# this script checks the gpio id and loads the correct baseboard fru -fruFile="/etc/fru/baseboard.fru.bin" -idGpio=( 8 9 10 11 12 53) -result=0 -idx=0 - -if [ -f $fruFile ]; then - exit 0 -fi - -cd /etc/fru -for gpio in "${idGpio[@]}" -do - echo $gpio > /sys/class/gpio/export - typeset -i value=$(cat /sys/class/gpio/gpio$gpio/value) - value=$((value << idx)) - result=$((result | value)) - idx=$((idx+1)) -done - -# wp -if (($result == 62)); then - cat WilsonPoint.fru.bin > $fruFile -# wc -elif (($result == 45)); then - cat WilsonCity.fru.bin > $fruFile -# cyp -elif (($result == 60)); then - cat M50CYP2SB2U.fru.bin > $fruFile -# tnp -elif (($result == 12)); then - cat D50TNP1SB.fru.bin > $fruFile -# default to wft -else - cat S2600WFT.fru.bin > $fruFile -fi -- cgit v1.2.3