[Mellanox] Fix the hw-mgmt intg tool case sensitivity for KConfig (#14709)
Fix the script to consider case sensitivity while writing the kconfig Signed-off-by: Vivek Reddy Karri <vkarri@nvidia.com>
This commit is contained in:
parent
6fc357604e
commit
1b63543e7f
@ -156,7 +156,7 @@ class KCFG:
|
||||
def get_writable_opts(opts):
|
||||
lines = []
|
||||
for opt in opts:
|
||||
lines.append("{}={}".format(opt[0].upper(), opt[1]))
|
||||
lines.append("{}={}".format(opt[0], opt[1]))
|
||||
return lines
|
||||
|
||||
|
||||
|
@ -48,7 +48,7 @@ CONFIG_DW_DMAC_PCI=y
|
||||
CONFIG_I2C_I801=m
|
||||
CONFIG_PINCTRL=y
|
||||
CONFIG_PINCTRL_INTEL=m
|
||||
CONFIG_I2C_MUX_PCA954X=m
|
||||
CONFIG_I2C_MUX_PCA954x=m
|
||||
CONFIG_SPI_PXA2XX=m
|
||||
"""
|
||||
|
||||
@ -68,7 +68,7 @@ CONFIG_DW_DMAC_PCI=y
|
||||
CONFIG_I2C_I801=m
|
||||
CONFIG_PINCTRL=y
|
||||
CONFIG_PINCTRL_INTEL=m
|
||||
CONFIG_I2C_MUX_PCA954X=m
|
||||
CONFIG_I2C_MUX_PCA954x=m
|
||||
CONFIG_SPI_PXA2XX=m
|
||||
###-> mellanox-end
|
||||
|
||||
|
Reference in New Issue
Block a user