From a2647963cf1d6ed8fcec9c574b50d17bfa3f78fe Mon Sep 17 00:00:00 2001 From: Martin Kepplinger Date: Tue, 14 May 2019 09:36:01 +0200 Subject: [PATCH] x230: before_first_install: fix typo and refer to the flash scripts --- x230/x230_before_first_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x230/x230_before_first_install.sh b/x230/x230_before_first_install.sh index af36679..39d772e 100755 --- a/x230/x230_before_first_install.sh +++ b/x230/x230_before_first_install.sh @@ -46,7 +46,7 @@ force_x230_and_root BIOS_VENDOR=$(dmidecode -t bios | grep Vendor | cut -d':' -f2) if [[ $BIOS_VENDOR = *"coreboot"* ]] ; then - echo "coreboot already intalled. This script is useless then." + echo "coreboot already installed. Ready to use x230_skulls.sh" exit 0 fi @@ -55,7 +55,7 @@ bios_major=$(echo "$BIOS_VERSION" | cut -d. -f1) bios_minor=$(echo "$BIOS_VERSION" | cut -d. -f2) if [ "${bios_minor}" -ge "60" ] ; then - echo "installed BIOS version is ${bios_major}.${bios_minor}." + echo "Ready to use external_install_bottom.sh and external_install_top.sh" else echo -e "The installed original BIOS is very old and doesn't include the latest Embedded Controller Firmware." echo -e "${RED}Please upgrade${NC} before installing coreboot."