diff options
| author | Harsha Vardhan V M <[email protected]> | 2025-03-19 14:17:12 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-04-04 12:25:02 -0600 |
| commit | 578e7882bfb79848ff91cd65a5ebf4e795d26bb5 (patch) | |
| tree | db7b4bfee151c9beb8692fc46ce5aadcd09936f6 /cmd/Kconfig | |
| parent | 833c05ea272a086b5428166552ceb021b50c4cda (diff) | |
cmd: fuse: Add fuse writebuff sub-system command
Add CMD_FUSE_WRITEBUFF config option to add and enable fuse writebuff
sub-system command. Add fuse_writebuff function to be invoked on
writebuff command.
Signed-off-by: Harsha Vardhan V M <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd/Kconfig')
| -rw-r--r-- | cmd/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index cd391d422ae..81c59becc2d 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1236,6 +1236,14 @@ config CMD_FUSE which control the behaviour of the device. The command uses the fuse_...() API. +config CMD_FUSE_WRITEBUFF + bool "Support for the fuse writebuff" + depends on CMD_FUSE + help + This allows programming fuses, which control the behaviour of + the device, using a structured buffer in memory. The command + uses the fuse_writebuff() API. + config CMD_GPIO bool "gpio" help |
