From b1db92629afd1f1880d0a5d96185d483f709ee89 Mon Sep 17 00:00:00 2001 From: Leah Rowe <leah@libreboot.org> Date: Wed, 25 Oct 2023 13:17:07 +0100 Subject: [PATCH] don't put line break on commands in release errata lots of people won't know the back slash means a second line, so they won't copy and paste the command correctly Signed-off-by: Leah Rowe <leah@libreboot.org> --- site/docs/install/index.md | 6 ++---- site/news/libreboot20231021.md | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/site/docs/install/index.md b/site/docs/install/index.md index 774215e..97f8f95 100644 --- a/site/docs/install/index.md +++ b/site/docs/install/index.md @@ -365,13 +365,11 @@ bootblock copied in release ROMs, so the bucts trick below will actually cause a brick. This is fixed in lbmk as of 25 October 2023 onward, but you should do this on 20231021 release ROMs before following the instructions below:** - dd if=libreboot.rom of=bootblock.bin bs=1 \ - skip=$(($(stat -c %s libreboot.rom) - 0x10000)) count=64k + dd if=libreboot.rom of=bootblock.bin bs=1 skip=$(($(stat -c %s libreboot.rom) - 0x10000)) count=64k And then do this: - dd if=bootblock.bin of=libreboot.rom bs=1 \ - seek=$(($(stat -c %s libreboot.rom) - 0x20000)) count=64k conv=notrunc + dd if=bootblock.bin of=libreboot.rom bs=1 seek=$(($(stat -c %s libreboot.rom) - 0x20000)) count=64k conv=notrunc **NOTE: This section partially relates to `utils` release archive in Libreboot 20160907, which contains static compiled binaries for things like diff --git a/site/news/libreboot20231021.md b/site/news/libreboot20231021.md index 42e7dcb..d2bb569 100644 --- a/site/news/libreboot20231021.md +++ b/site/news/libreboot20231021.md @@ -1145,13 +1145,11 @@ been fixed with the following patch: If you're flashing the X60/T60 ROMs from LenovoBIOS (internal flashing), please do this on the ROM image first (ROM image named `libreboot.rom` in this example): - dd if=libreboot.rom of=bootblock.bin bs=1 \ - skip=$(($(stat -c %s libreboot.rom) - 0x10000)) count=64k + dd if=libreboot.rom of=bootblock.bin bs=1 skip=$(($(stat -c %s libreboot.rom) - 0x10000)) count=64k And then do this: - dd if=bootblock.bin of=libreboot.rom bs=1 \ - seek=$(($(stat -c %s libreboot.rom) - 0x20000)) count=64k conv=notrunc + dd if=bootblock.bin of=libreboot.rom bs=1 seek=$(($(stat -c %s libreboot.rom) - 0x20000)) count=64k conv=notrunc If you're using SeaBIOS and have a PIKE2008 module installed, on KCMA-D8 or KGPE-D16, please do this: -- GitLab