The compilation work well, but after boot up I run "cat /proc/bus/input/devices" and doesn't show up the touch screen.
Maybe I did something wrong. This is what I did step by step:
- I changed kernel modules support in "arch/arm/configs/bcm2709_defconfig"
CONFIG_INPUT_EVDEV=y
CONFIG_INPUT_UINPUT=y
CONFIG_HIDRAW=y
CONFIG_HID_MULTITOUCH=m
- I changed (added a few lines of code from manufacturer guide) in next files:
/drivers/input/evdev.c
/drivers/input/mousedev.c
/drivers/input/joydev.c
- I run:
ARCH=arm scripts/kconfig/merge_config.sh arch/arm/configs/bcm2709_defconfig android/configs/android-base.cfg android/configs/android-recommended.cfg
ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- make zImage
- I downloaded rtandroid-7.0, and replaced zImage from boot folder with my compiled one (/kernel/rpi/arch/arm/boot/zImage) and then I installed to SD.
Thank you for your help!