diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-05 05:41:21 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-05 05:41:21 +0100 |
commit | 153dd76a82e98a7260424cf37d5a139fff39d2ab (patch) | |
tree | 7a7d5071fbe3b3f47f016c6e2e601d656488c3fb | |
parent | 428c46ca2b1fee04625d37bec65c30f0baf87530 (diff) |
inject.sh: tidy up the deguard command
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | include/inject.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/inject.sh b/include/inject.sh index e2987aad..0e81c63f 100644 --- a/include/inject.sh +++ b/include/inject.sh @@ -189,10 +189,9 @@ apply_me11_deguard_mod() { ( x_ cd src/deguard/ - x_ ./finalimage.py --delta "data/delta/$ME11delta" \ - --version "$ME11version" \ - --pch "$ME11pch" --sku "$ME11sku" --fake-fpfs data/fpfs/zero \ - --input "$_metmp" --output "$_me" + x_ ./finalimage.py --delta "data/delta/$ME11delta" --version \ + "$ME11version" --pch "$ME11pch" --sku "$ME11sku" --fake-fpfs \ + data/fpfs/zero --input "$_metmp" --output "$_me" ) || err "Error running deguard for $_me - $dontflash" } |