Skip to content
Commit a907dce8 authored by Igor Opaniuk's avatar Igor Opaniuk Committed by Heiko Schocher
Browse files

board: freescale: drop CONFIG_DM_I2C undefs



Drop CONFIG_DM_I2C undefs from board header files, and make them
disabled on these boards in defconfigs instead.

Disabling on Kconfig symbol was done automatically with this script:

cd configs
files=(*ls1046a*)
files2=(*T104*RDB*)
files3=(ls1021atwr_*)
files4=("imx8mp_evk_defconfig phycore-imx8mp_defconfig")
combine=("${files[@]}" "${files2[@]}" "${files3[@]}" "${files4[@]}")
cd ..

for item in ${combine[*]}
do
   echo "Adjusting  $item"
   echo "# CONFIG_SPL_DM_I2C is not set" >> configs/$item
   make $item && make savedefconfig && cp defconfig configs/$item
done

Signed-off-by: default avatarIgor Opaniuk <igor.opaniuk@foundries.io>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
parent d1f3abe1
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment