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>master
parent
297f57056d
commit
b1db92629a
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue