Mike Banon has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/33885
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Disable SeaBIOS options not supported by hardware: scripts to apply the patches
These scripts will help you to securely and conveniently apply CB:33870 and CB:33871 to disable SeaBIOS options not supported by G505S and AM1I-A hardware. Save to ./coreboot/ then run ./get_cfgsb_patches.sh , ./check... and ./apply...
https://review.coreboot.org/c/coreboot/+/33870 src/mainboard/lenovo/g505s: Disable SeaBIOS options not supported by hardware
https://review.coreboot.org/c/coreboot/+/33871 src/mainboard/asus/am1i-a: Disable SeaBIOS options not supported by hardware
Signed-off-by: Mike Banon mikebdp2@gmail.com Change-Id: I64e50be0454b3a7e0a89a77e6846f8a7d9cf0a5e --- A apply_cfgsb_patches.sh A check_cfgsb_patches.sh A get_cfgsb_patches.sh A sha256sums_cfgsb_correct.txt 4 files changed, 43 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/33885/1
diff --git a/apply_cfgsb_patches.sh b/apply_cfgsb_patches.sh new file mode 100755 index 0000000..c1212bf --- /dev/null +++ b/apply_cfgsb_patches.sh @@ -0,0 +1,12 @@ +#!/bin/sh +### +### https://review.coreboot.org/c/coreboot/+/33870 +### src/mainboard/lenovo/g505s: Disable SeaBIOS options not supported by hardware +### +patch -p1 < "./053e2ea.diff" +### +### https://review.coreboot.org/c/coreboot/+/33871 +### src/mainboard/asus/am1i-a: Disable SeaBIOS options not supported by hardware +### +patch -p1 < "./0cd2b7a.diff" +### diff --git a/check_cfgsb_patches.sh b/check_cfgsb_patches.sh new file mode 100755 index 0000000..5e4c1ef --- /dev/null +++ b/check_cfgsb_patches.sh @@ -0,0 +1,13 @@ +#!/bin/sh +rm -f "./sha256sums_cfgsb_my.txt" +sha256sum "./053e2ea.diff" > "./sha256sums_cfgsb_my.txt" +sha256sum "./0cd2b7a.diff" >> "./sha256sums_cfgsb_my.txt" +if cmp -s "./sha256sums_cfgsb_my.txt" "./sha256sums_cfgsb_correct.txt" +then + echo "SHA256 checksums are correct, please run ./apply_cfgsb_patches.sh" + exit 0 +else + echo "! MISMATCH ! See ./sha256sums_cfgsb_my.txt and ./sha256sums_cfgsb_correct.txt" + exit 1 +fi +# diff --git a/get_cfgsb_patches.sh b/get_cfgsb_patches.sh new file mode 100755 index 0000000..0ce0113c --- /dev/null +++ b/get_cfgsb_patches.sh @@ -0,0 +1,16 @@ +#!/bin/sh +### +### https://review.coreboot.org/c/coreboot/+/33870 +### src/mainboard/lenovo/g505s: Disable SeaBIOS options not supported by hardware +### +rm -f "./053e2ea.diff" +wget "https://review.coreboot.org/changes/33870/revisions/1/patch?zip" +unzip "./patch?zip" && rm -f "./patch?zip" # && patch -p1 < "./053e2ea.diff" +### +### https://review.coreboot.org/c/coreboot/+/33871 +### src/mainboard/asus/am1i-a: Disable SeaBIOS options not supported by hardware +### +rm -f "./0cd2b7a.diff" +wget "https://review.coreboot.org/changes/33871/revisions/1/patch?zip" +unzip "./patch?zip" && rm -f "./patch?zip" # && patch -p1 < "./0cd2b7a.diff" +### diff --git a/sha256sums_cfgsb_correct.txt b/sha256sums_cfgsb_correct.txt new file mode 100644 index 0000000..5135520 --- /dev/null +++ b/sha256sums_cfgsb_correct.txt @@ -0,0 +1,2 @@ +ed3f92502e35897256e364e146ad7515414552c4e4e87031bfaae1f30ecdad1d ./053e2ea.diff +6c5fd1060ccf3b84687eb76594ed63a76472c573ea968d9efec40f4c3eccb53d ./0cd2b7a.diff
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/33885
to look at the new patch set (#3).
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Disable SeaBIOS options not supported by hardware: scripts to apply the patches
These scripts will help you to securely and conveniently apply CB:33871 to disable SeaBIOS options not supported by ASUS AM1I-A hardware. Save to ./coreboot/ then run ./get_cfgsb_patches.sh , ./check... and ./apply...
https://review.coreboot.org/c/coreboot/+/33871 src/mainboard/asus/am1i-a: Disable SeaBIOS options not supported by hardware
Signed-off-by: Mike Banon mikebdp2@gmail.com Change-Id: I64e50be0454b3a7e0a89a77e6846f8a7d9cf0a5e --- A apply_cfgsb_patches.sh A check_cfgsb_patches.sh A get_cfgsb_patches.sh A sha256sums_cfgsb_correct.txt 4 files changed, 29 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/33885/3
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/33885
to look at the new patch set (#6).
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Disable SeaBIOS options not supported by hardware: scripts to apply the patches
These scripts will help you to securely and conveniently apply CB:33871 to disable SeaBIOS options not supported by ASUS AM1I-A hardware. Save to ./coreboot/ then run ./get_cfgsb_patches.sh , ./check... and ./apply...
https://review.coreboot.org/c/coreboot/+/33871 src/mainboard/asus/am1i-a: Disable SeaBIOS options not supported by hardware
Signed-off-by: Mike Banon mikebdp2@gmail.com Change-Id: I64e50be0454b3a7e0a89a77e6846f8a7d9cf0a5e --- A apply_cfgsb_patches.sh A check_cfgsb_patches.sh A get_cfgsb_patches.sh A sha256sums_cfgsb_correct.txt 4 files changed, 29 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/33885/6
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/33885
to look at the new patch set (#8).
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Disable SeaBIOS options not supported by hardware: scripts to apply the patches
These scripts will help you to securely and conveniently apply CB:33871 to disable SeaBIOS options not supported by ASUS AM1I-A hardware. Save to ./coreboot/ then run ./get_cfgsb_patches.sh , ./check... and ./apply...
https://review.coreboot.org/c/coreboot/+/33871 src/mainboard/asus/am1i-a: Disable SeaBIOS options not supported by hardware
Signed-off-by: Mike Banon mikebdp2@gmail.com Change-Id: I64e50be0454b3a7e0a89a77e6846f8a7d9cf0a5e --- A apply_cfgsb_patches.sh A check_cfgsb_patches.sh A get_cfgsb_patches.sh A sha256sums_cfgsb_correct.txt 4 files changed, 45 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/33885/8
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/33885
to look at the new patch set (#9).
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Disable SeaBIOS options not supported by hardware: scripts to apply the patches
These scripts will help you to securely and conveniently apply CB:33871 to disable SeaBIOS options not supported by ASUS AM1I-A hardware. Save to ./coreboot/ then run ./get_cfgsb_patches.sh , ./check... and ./apply...
https://review.coreboot.org/c/coreboot/+/33871 mb/asus/am1i-a: Disable SeaBIOS options unsupported by hardware
https://review.coreboot.org/c/coreboot/+/39898 mb/asus/a88xm-e: Disable SeaBIOS options unsupported by hardware
Signed-off-by: Mike Banon mikebdp2@gmail.com Change-Id: I64e50be0454b3a7e0a89a77e6846f8a7d9cf0a5e --- A apply_cfgsb_patches.sh A check_cfgsb_patches.sh A get_cfgsb_patches.sh A sha256sums_cfgsb_correct.txt 4 files changed, 45 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/33885/9
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/33885
to look at the new patch set (#10).
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Disable SeaBIOS options not supported by hardware: scripts to apply the patches
These scripts will help you to securely and conveniently apply CB:33871 to disable SeaBIOS options not supported by ASUS AM1I-A and A88XM-E hardware. Save to ./coreboot/ then run ./get_cfgsb_patches.sh , ./check... and ./apply...
https://review.coreboot.org/c/coreboot/+/33871 mb/asus/am1i-a: Disable SeaBIOS options unsupported by hardware
https://review.coreboot.org/c/coreboot/+/39898 mb/asus/a88xm-e: Disable SeaBIOS options unsupported by hardware
Signed-off-by: Mike Banon mikebdp2@gmail.com Change-Id: I64e50be0454b3a7e0a89a77e6846f8a7d9cf0a5e --- A apply_cfgsb_patches.sh A check_cfgsb_patches.sh A get_cfgsb_patches.sh A sha256sums_cfgsb_correct.txt 4 files changed, 45 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/33885/10
Mike Banon has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/33885 )
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Abandoned
Mike Banon has restored this change. ( https://review.coreboot.org/c/coreboot/+/33885 )
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Restored
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/33885
to look at the new patch set (#11).
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Disable SeaBIOS options not supported by hardware: scripts to apply the patches
These scripts will help you to securely and conveniently apply CB:33871 to disable SeaBIOS options not supported by ASUS AM1I-A and A88XM-E hardware. Save to ./coreboot/ then run ./get_cfgsb_patches.sh , ./check... and ./apply...
https://review.coreboot.org/c/coreboot/+/33871 mb/asus/am1i-a: Disable SeaBIOS options unsupported by hardware
https://review.coreboot.org/c/coreboot/+/39898 mb/asus/a88xm-e: Disable SeaBIOS options unsupported by hardware
Signed-off-by: Mike Banon mikebdp2@gmail.com Change-Id: I64e50be0454b3a7e0a89a77e6846f8a7d9cf0a5e --- A 5f8f8c4.diff A 81da3da.diff A aa8fb0a.diff A apply_cfgsb_patches.sh A check_cfgsb_patches.sh A get_cfgsb_patches.sh A sha256sums_cfgsb_correct.txt A sha256sums_cfgsb_my.txt 8 files changed, 211 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/33885/11
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/33885 )
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Patch Set 11:
(2 comments)
https://review.coreboot.org/c/coreboot/+/33885/11/81da3da.diff File 81da3da.diff:
https://review.coreboot.org/c/coreboot/+/33885/11/81da3da.diff@21 PS11, Line 21: trailing whitespace
https://review.coreboot.org/c/coreboot/+/33885/11/aa8fb0a.diff File aa8fb0a.diff:
https://review.coreboot.org/c/coreboot/+/33885/11/aa8fb0a.diff@21 PS11, Line 21: trailing whitespace
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/33885
to look at the new patch set (#12).
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Disable SeaBIOS options not supported by hardware: scripts to apply the patches
These scripts will help you to securely and conveniently apply CB:33871 to disable SeaBIOS options not supported by ASUS AM1I-A and A88XM-E hardware. Save to ./coreboot/ then run ./get_cfgsb_patches.sh , ./check... and ./apply...
https://review.coreboot.org/c/coreboot/+/33871 mb/asus/am1i-a: Disable SeaBIOS options unsupported by hardware
https://review.coreboot.org/c/coreboot/+/39898 mb/asus/a88xm-e: Disable SeaBIOS options unsupported by hardware
Signed-off-by: Mike Banon mikebdp2@gmail.com Change-Id: I64e50be0454b3a7e0a89a77e6846f8a7d9cf0a5e --- A apply_cfgsb_patches.sh A check_cfgsb_patches.sh A get_cfgsb_patches.sh A sha256sums_cfgsb_correct.txt 4 files changed, 45 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/33885/12
Mike Banon has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/33885 )
Change subject: Disable SeaBIOS options not supported by hardware: scripts to apply the patches ......................................................................
Abandoned