How can do "enable SPIDev module in the kernel configuration"at TX1 R28.2?
You have to change the kernel config file .config
to enable the flag CONFIG_SPI_SPIDEV
.
Something like this.
sed -i 's/# CONFIG_SPI_SPIDEV is not set/CONFIG_SPI_SPIDEV=y/' .config
Then you can build the kernel again.