util/nvmutil: fix mistake in command

accidentally specified invert, for the brick
and setchecksum commands. oops!

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-03-08 02:18:34 +00:00
parent 4cdf22cf8f
commit bf30cdd021
+2 -2
View File
@@ -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 },
};
/*