• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révision56e3d6ef5dde71065ecdcc6e008372999d09c7d0 (tree)
l'heure2022-07-21 17:14:04
AuteurPali Rohár <pali@kern...>
CommiterStefan Roese

Message de Log

tlv_eeprom: Add missing CRC32 dependency

tlv_eeprom uses crc32() function, so add dependency into Kconfig.

Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Baruch Siach <baruch@tkos.co.il>
Reviewed-by: Stefan Roese <sr@denx.de>

Change Summary

Modification

--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -184,6 +184,7 @@ config CMD_REGINFO
184184 config CMD_TLV_EEPROM
185185 bool "tlv_eeprom"
186186 depends on I2C_EEPROM
187+ select CRC32
187188 help
188189 Display and program the system EEPROM data block in ONIE Tlvinfo
189190 format. TLV stands for Type-Length-Value.
@@ -192,6 +193,7 @@ config SPL_CMD_TLV_EEPROM
192193 bool "tlv_eeprom for SPL"
193194 depends on SPL_I2C_EEPROM
194195 select SPL_DRIVERS_MISC
196+ select SPL_CRC32
195197 help
196198 Read system EEPROM data block in ONIE Tlvinfo format from SPL.
197199