1

I have compiled a small linux with framebuffer support & Qt, and i am now trying to run a simple Qt example. My development environment is a Ubuntu 12.04 Ubuntu x32 (in a VM). Qt 4.8 Version. SDL enabled.

I am running the os with the following command:

qemu-system-i386 -kernel $KERNEL_FILE -hda $ROOT_FS_FILE -boot c -m 128M  -append "root=/dev/sda rw console=ttyS0,38400n8"

If I use --nographic it boots OK, but without this option it shows the following message and then stops:

enter image description here

AlexandruC
  • 3,527
  • 6
  • 51
  • 80
  • 1
    I guess you haven't added an init script to start the Qt app automatically? And you have forgotten to set BR2_TARGET_GENERIC_GETTY_PORT to tty1 instead of ttyS0? – Arnout Nov 09 '13 at 20:26

1 Answers1

1

Please build the qemu_x86_defconfig configuration:

make qemu_x86_defconfig
make

and then follow the instructions in board/qemu/x86/readme.txt to run it.

Thomas Petazzoni
  • 5,636
  • 17
  • 25