I'm using Qt-Embedded 4.5.1 on Linux using the vesafb frame buffer on an intel platform under BusyBox.

When the system boots, my application starts on the console from a line in /etc/inittab as...
Qt Code:
  1. ::once:-/bin/sh -c "/path/app -qws"
To copy to clipboard, switch view to plain text mode 

I have the QWS_KEYBOARD set in /etc/profile as
Qt Code:
  1. export QWS_KEYBOARD="TTY:/dev/tty0"
To copy to clipboard, switch view to plain text mode 

The problem is that I can't switch to other virtual terminals using CTRL+ALT+F* while my application is running, or after my application exits. Any help would be appreciated.

-Mic