diff options
| author | Pali Rohár <[email protected]> | 2022-05-30 10:42:35 +0200 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2022-07-21 10:14:04 +0200 |
| commit | 56e3d6ef5dde71065ecdcc6e008372999d09c7d0 (patch) | |
| tree | acdf1c94048cc9b001bb4d263ff28164b4640c30 /cmd | |
| parent | 35ed176af24484dbea064266be75aefdc88d79ec (diff) | |
tlv_eeprom: Add missing CRC32 dependency
tlv_eeprom uses crc32() function, so add dependency into Kconfig.
Signed-off-by: Pali Rohár <[email protected]>
Reviewed-by: Baruch Siach <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index d5f842136cf..b3820f1e043 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -184,6 +184,7 @@ config CMD_REGINFO config CMD_TLV_EEPROM bool "tlv_eeprom" depends on I2C_EEPROM + select CRC32 help Display and program the system EEPROM data block in ONIE Tlvinfo format. TLV stands for Type-Length-Value. @@ -192,6 +193,7 @@ config SPL_CMD_TLV_EEPROM bool "tlv_eeprom for SPL" depends on SPL_I2C_EEPROM select SPL_DRIVERS_MISC + select SPL_CRC32 help Read system EEPROM data block in ONIE Tlvinfo format from SPL. |
