Hi all,

I created a QtExtended build for an ARM device using the following configure,

configure-common:

Qt Code:
  1. # This device uses the mobile UI
  2. -ui-type mobile
  3.  
  4. # Turn on features.
  5. -ssl
  6. -dbus
  7. -rtti
  8. -no-sxe
  9. -no-v4l2
  10. -no-vpn
  11. -no-libamr
  12. -no-sxe-discovery
  13. -no-sxe-soft-kill
  14. -release
  15.  
  16. # FIXME Enable this once it actually works
  17. #-add-mediaengine gstreamer
  18. # Features that are controlled via modules.
  19.  
  20. -add-mediaengine cruxus
  21. -add-module cell
  22. -add-module connectivity
  23. -add-module devtools
  24. -add-module essentials
  25. -add-module inputmethods
  26. -add-module messaging
  27. -add-module pim
  28. -add-module telephony
  29. -add-module ui
  30. -add-module ipcomms
  31.  
  32. -remove-module media
  33. -remove-module drm
  34. -remove-module pkgmanagement
  35. -remove-module games
  36. -remove-module infrared
  37. -remove-module qtuitest
  38. -remove-module location
  39. -remove-module bluetooth
  40.  
  41. # Device config
  42. -add-displaysize 240x320
  43. -add-font dejavu_sans_condensed:10,12,13,16,28:50
  44. -add-font dejavu_sans_condensed:13,14,15,16,20,21,23,32,36:75
To copy to clipboard, switch view to plain text mode 

configure

Qt Code:
  1. # Device-specific configuration
  2. -xplatform linux-neo-g++
  3. -arch arm
  4. -prefix /opt/Qtopia
  5.  
  6. # For the touchscreen
  7. -extra-qt-embedded-config "-qt-mouse-tslib"
  8. -extra-qt-embedded-config "-webkit"
  9. -extra-qt-embedded-config "-qt-libjpeg"
  10. -extra-qt-embedded-config "-qt-libmng"
  11. -extra-qt-embedded-config "-qt-libpng"
  12. -extra-qt-embedded-config "-qt-zlib"
  13. -extra-qt-embedded-config "-qt-mouse-tslib"
  14. -extra-qt-embedded-config "-qt-sql-sqlite"
  15. -extra-qt-config -no-glib
  16.  
  17.  
  18. # Alsa or bust (no OSS accepted)
  19. -sound-system alsa
To copy to clipboard, switch view to plain text mode 

Build is successfully completed, except with the following message,
Could not find fonts directory - Is Qt Installed correctly.

Also when I put the image into the device, I am getting all things working.
But the icons have a different color instead of the original color shown in
the emulator. The icons color is not good (orange tinged kind off) for the
entire phone.

Am I missing something in the configure related to color depth or png file
usage or anything else?

Please help.

Thanks,
Ram.