Browse Source

x230: flashrom_rpi_bottom_unlock.sh: improve status output

pull/35/head
Martin Kepplinger 6 years ago
parent
commit
c129882d20
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      x230/flashrom_rpi_bottom_unlock.sh

+ 3
- 3
x230/flashrom_rpi_bottom_unlock.sh View File

@ -79,7 +79,7 @@ if [ ! -e ${IFDTOOL_PATH} ] ; then
fi fi
if [ ! "$me_clean" -gt 0 ] ; then if [ ! "$me_clean" -gt 0 ] ; then
echo "Intel ME will NOT be cleaned. Use -m if it should be."
echo -e "Intel ME will ${RED}not${NC} be cleaned. Use -m if it should be."
else else
echo -e "Intel ME will be ${GREEN}cleaned${NC}." echo -e "Intel ME will be ${GREEN}cleaned${NC}."
fi fi
@ -87,7 +87,7 @@ fi
if [ ! "$lock" -gt 0 ] ; then if [ ! "$lock" -gt 0 ] ; then
echo -e "The flash ROM will be ${GREEN}unlocked${NC}." echo -e "The flash ROM will be ${GREEN}unlocked${NC}."
else else
echo "The flash ROM will be LOCKED!"
echo -e "The flash ROM will be ${RED}locked${NC}."
fi fi
if [ "$me_clean" -gt 0 ] ; then if [ "$me_clean" -gt 0 ] ; then
@ -97,7 +97,7 @@ if [ "$me_clean" -gt 0 ] ; then
fi fi
fi fi
echo "Start reading 2 times. Please be patient."
echo "Start reading 2 times. Please be patient..."
TEMP_DIR=`mktemp -d` TEMP_DIR=`mktemp -d`
if [[ ! "$TEMP_DIR" || ! -d "$TEMP_DIR" ]]; then if [[ ! "$TEMP_DIR" || ! -d "$TEMP_DIR" ]]; then
echo -e "${RED}Error:${NC} Could not create temp dir" echo -e "${RED}Error:${NC} Could not create temp dir"


Loading…
Cancel
Save