Tool/software: Linux
we are about to have a custom board and we do not plan on having a serial EEPROM to keep the board name, MAC, etc. if i were to not include TI_I2C_BOARD_DETECT from arch/arm/mach-omap2/am33xx/Kconfig
and we based our custom board directory on the am437x board files in board/ti/am43xx
and removed the "do_board_detect" call from my board/ti/mycustomboard/board.c as well as:
board_is_idk
rtc_only_update_board_type
rtc_only_get_board_type
board_is_eposevm
board_is_evm_14_or_later
board_is_evm_12_or_later
board_is_gpevm
board_is_sk
set_board_info_env
get_device_type
as well as removing from board.h
board_ti_is references
as well as removing from mux.c
board_is_evm
board_is_sk
board_is_idk
board_is_eposevm
and of course making the necessary changes to the hardware specific to our board.
do i still need to make changes to board_detect.c in board/ti/common/board_detect.c in order for u-boot to be able to properly boot my hardware?