I am trying to automatically run a custom python application after OS boot with a Buildroot 2023.05 Linux image running on a Beaglebone Black(BBB) Rev C. I can already interact with the system through Serial using the screen command as follows:
sudo screen /dev/ttyUSB0 115200
What I want to do now is to display the console output on the monitor and accept input from the keyboard connected to the BBB as the whole system will finally be integrated into a standalone unit and used similar to a common PC. I have edited my uEnv.txt file to:
bootpart=0:1
devtype=mmc
bootdir=
bootfile=zImage
bootpartition=mmcblk0p2
console=ttyS0,115200n8
loadaddr=0x82000000
fdtaddr=0x88000000
set_mmc1=if test $board_name = A33515BB; then setenv bootpartition mmcblk1p2; fi
set_bootargs=setenv bootargs console=${console} root=/dev/${bootpartition} rw rootfstype=ext4 rootwait video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24
uenvcmd=run set_mmc1; run set_bootargs;run loadimage;run loadfdt;printenv bootargs;bootz ${loadaddr} - ${ is fdtaddr}
But this does not change anything. The output to the monitor is still a white blinking horizontal cursor(underscore type) on a black screen. I am very new to this(~4 days using Buildroot) so I am grateful for any guidance. Please ask for any other information if required.