From f6a449df7a365904fa505b02a20499bc5d5aba8b Mon Sep 17 00:00:00 2001 From: Wiktor Mowinski Date: Fri, 13 Feb 2026 14:54:05 +0100 Subject: [PATCH 1/3] README.md: add info about fuse Signed-off-by: Wiktor Mowinski --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index c6b72c7..db62c58 100644 --- a/README.md +++ b/README.md @@ -184,6 +184,16 @@ CpuThrottlingThreshold 0-255 (Actual supported values may vary) ./dcu mac coreboot.rom --set "00:11:22:33:44:55" ``` +Changing logo on a fused platform requires adding more arguments to flashrom commands: +- read only bios region +``` + flashrom -p internal --ifd -i bios -r +``` +- write only bios region + add noverify +``` + flashrom -p internal --ifd -i bios -w --noverify-all +``` + ## Error codes * 0 - no error From 8ab197839314fe2072d6c6106e0edb8a79a15fbf Mon Sep 17 00:00:00 2001 From: Wiktor Mowinski Date: Mon, 16 Feb 2026 12:16:33 +0100 Subject: [PATCH 2/3] .github/workflows/tests.yml Signed-off-by: Wiktor Mowinski --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e734409..88f201f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,13 +13,13 @@ jobs: steps: - uses: actions/checkout@v4 - name: build - uses: addnab/docker-run-action@v3 + uses: addnab/docker-run-action@v4 with: image: dannyben/bashly options: --rm -v ${{ github.workspace }}:/app run: bashly generate - name: tests - uses: addnab/docker-run-action@v3 + uses: addnab/docker-run-action@v4 with: image: ghcr.io/dasharo/dasharo-sdk:v1.5.0 options: --rm -v ${{ github.workspace }}:/dcu From 9393dfb36bd82af8fc9ab1bec3a7d4306f1d7064 Mon Sep 17 00:00:00 2001 From: Wiktor Mowinski Date: Mon, 16 Feb 2026 13:23:59 +0100 Subject: [PATCH 3/3] .github/workflows/tests.yml: revert change Signed-off-by: Wiktor Mowinski --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 88f201f..e734409 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,13 +13,13 @@ jobs: steps: - uses: actions/checkout@v4 - name: build - uses: addnab/docker-run-action@v4 + uses: addnab/docker-run-action@v3 with: image: dannyben/bashly options: --rm -v ${{ github.workspace }}:/app run: bashly generate - name: tests - uses: addnab/docker-run-action@v4 + uses: addnab/docker-run-action@v3 with: image: ghcr.io/dasharo/dasharo-sdk:v1.5.0 options: --rm -v ${{ github.workspace }}:/dcu