diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-08 02:18:34 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-08 02:18:34 +0000 |
| commit | bf30cdd021d645ca58b61354c219db4dcc6654e9 (patch) | |
| tree | 9ef3af5e31fddec20a9228c63f6cf68f0de80ba6 /util/nvmutil | |
| parent | 4cdf22cf8f57d767cc229a0a644683f3da4f85fa (diff) | |
util/nvmutil: fix mistake in command
accidentally specified invert, for the brick
and setchecksum commands. oops!
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/nvmutil')
| -rw-r--r-- | util/nvmutil/nvmutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c index 63223b68..c6065d79 100644 --- a/util/nvmutil/nvmutil.c +++ b/util/nvmutil/nvmutil.c @@ -186,9 +186,9 @@ static const struct commands command[] = { { CMD_SETMAC, "setmac", cmd_setmac, ARGC_3, NO_INVERT }, { CMD_SWAP, "swap", cmd_swap, ARGC_3, PART_INVERT }, { CMD_COPY, "copy", cmd_copy, ARGC_4, PART_INVERT }, - { CMD_BRICK, "brick", cmd_brick, ARGC_4, PART_INVERT }, + { CMD_BRICK, "brick", cmd_brick, ARGC_4, NO_INVERT }, { CMD_SETCHECKSUM, "setchecksum", cmd_setchecksum, - ARGC_4, PART_INVERT }, + ARGC_4, NO_INVERT }, }; /* |
