Hi,
i have a 24bit RGB Display with a I2C capacitive touch controller.
My goal ist a runnung QT/QML-Application on the BeageBone Black.
I follow this guide to setup the sdk:
http://processors.wiki.ti.com/index.php/Processor_SDK_Linux_Getting_Started_Guide
Then I build the kernel, the modules, and the dtb
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- distclean
Then i follow this guide to remove the DRM driver and activate the fbdev driver
https://e2e.ti.com/support/arm/sitara_arm/f/791/p/442424/1607810#1607810
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- tisdk_am335x-evm_defconfig
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- menuconfig
make -j5 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- zImage
make -j5 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- modules
sudo make ARCH=arm INSTALL_MOD_PATH=/media/buha/rootfs modules_install
Then copy the dtb and the zImage to the rootFS.
But if I start the BeagleBone Black this is in the log:
...
Error opening /dev/fb0: No such file or directory
...
I think the fbdev driver ist not correct included...
Is there somebody who can help me?