Skip to content
Snippets Groups Projects
Commit b1db9262 authored by Leah Rowe's avatar Leah Rowe
Browse files

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: default avatarLeah Rowe <leah@libreboot.org>
parent 297f5705
Branches
Tags
No related merge requests found
...@@ -365,13 +365,11 @@ bootblock copied in release ROMs, so the bucts trick below will actually cause ...@@ -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 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:** do this on 20231021 release ROMs before following the instructions below:**
dd if=libreboot.rom of=bootblock.bin bs=1 \ dd if=libreboot.rom of=bootblock.bin bs=1 skip=$(($(stat -c %s libreboot.rom) - 0x10000)) count=64k
skip=$(($(stat -c %s libreboot.rom) - 0x10000)) count=64k
And then do this: And then do this:
dd if=bootblock.bin of=libreboot.rom bs=1 \ dd if=bootblock.bin of=libreboot.rom bs=1 seek=$(($(stat -c %s libreboot.rom) - 0x20000)) count=64k conv=notrunc
seek=$(($(stat -c %s libreboot.rom) - 0x20000)) count=64k conv=notrunc
**NOTE: This section partially relates to `utils` release archive in **NOTE: This section partially relates to `utils` release archive in
Libreboot 20160907, which contains static compiled binaries for things like Libreboot 20160907, which contains static compiled binaries for things like
......
...@@ -1145,13 +1145,11 @@ been fixed with the following patch: ...@@ -1145,13 +1145,11 @@ been fixed with the following patch:
If you're flashing the X60/T60 ROMs from LenovoBIOS (internal flashing), please 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): do this on the ROM image first (ROM image named `libreboot.rom` in this example):
dd if=libreboot.rom of=bootblock.bin bs=1 \ dd if=libreboot.rom of=bootblock.bin bs=1 skip=$(($(stat -c %s libreboot.rom) - 0x10000)) count=64k
skip=$(($(stat -c %s libreboot.rom) - 0x10000)) count=64k
And then do this: And then do this:
dd if=bootblock.bin of=libreboot.rom bs=1 \ dd if=bootblock.bin of=libreboot.rom bs=1 seek=$(($(stat -c %s libreboot.rom) - 0x20000)) count=64k conv=notrunc
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 If you're using SeaBIOS and have a PIKE2008 module installed, on KCMA-D8
or KGPE-D16, please do this: or KGPE-D16, please do this:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment