From 1f2ce9a1aa1dceb8e707d75832c4f501457679da Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Tue, 6 Aug 2019 15:15:43 +0100 Subject: [PATCH] Clarify output message to look less scary --- docs/firmware_download.txt | 2 +- scripts/fix_mbr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/firmware_download.txt b/docs/firmware_download.txt index 2dab472..ae59ed1 100644 --- a/docs/firmware_download.txt +++ b/docs/firmware_download.txt @@ -7,7 +7,7 @@ latest versions. These pages provide the the description, checksum and binaries for the bootable BIOS update CD images for both the current and historical releases. -e220 https://support.lenovo.com/hk/en/downloads/DS031908 +e330 https://support.lenovo.com/hk/en/downloads/DS031908 l430 https://support.lenovo.com/hk/en/downloads/DS018887 p51 https://support.lenovo.com/hk/en/downloads/DS121297 t430 https://pcsupport.lenovo.com/gb/en/downloads/DS029252 diff --git a/scripts/fix_mbr b/scripts/fix_mbr index f6fe9bd..99ac914 100755 --- a/scripts/fix_mbr +++ b/scripts/fix_mbr @@ -221,7 +221,7 @@ sub fixup_boot { if (ord(substr($buf,0,1)) == 0) { # No normal x86 boot instruction starts with a zero. - warn("Found corrupted bootcode in ISO from Lenovo - attempting fix\n"); + warn("INFO: Original Lenovo ISO contains a zero in MBR bootcode - attempting fix\n"); substr($buf,0,1) = chr(0xfa); }