I have a pocketbeagle board and I was trying to build an os image for it using buildroot. so I downloaded the latest buildroot, there was no defconfig file for pocketbeagle. so decided to use beaglebone_defconfig. The build was successful but when I try to boot the pocketbeagle with this image it is continuously printing this message on the uart console:
Could not initialize timer (err -19)
Could not initialize timer (err -19)
Could not initialize timer (err -19)
Could not initialize timer (err -19)
Could not initialize timer (err -19)
Could not initialize timer (err -19)
I think this message is coming from uboot.
This is the steps I used to build the image:
cd buildroot-2021.02.10
make beaglebone_defconfig
make
do I need to apply some patch? or is it because of some other issue? also tried with the buildroot available in beagleboard github repo.