diff options
author | Marius Dinu <m95d+git@psihoexpert.ro> | 2025-06-11 13:02:12 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-26 11:57:23 -0600 |
commit | 661bafa182eae5cc666a0233d17e4d88aec679f8 (patch) | |
tree | 2ed951bbd91098f430f6c380cbde78aa1e7d45b6 | |
parent | 903eb123236ccbd8ef05d43507a2a910b785bd56 (diff) |
cmd: add "config" command dependency on gzip
gunzip is used in cmd/config.c
Signed-off-by: Marius Dinu <m95d+git@psihoexpert.ro>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
-rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index f21d27cb27f..057f091bf3b 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -153,6 +153,7 @@ config CMD_CONFIG bool "config" default SANDBOX select BUILD_BIN2C + select GZIP help Print ".config" contents. |