<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.gumstix.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Glebovitz</id>
		<title>Gumstix User Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.gumstix.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Glebovitz"/>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php/Special:Contributions/Glebovitz"/>
		<updated>2026-04-13T00:39:15Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.25.3</generator>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=463</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=463"/>
				<updated>2008-04-16T21:35:52Z</updated>
		
		<summary type="html">&lt;p&gt;Glebovitz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We need to find the compiler (symlinks &amp;amp; path)&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/cross/bin ; for f in arm-angstrom-linux-gnueabi-*; do n=$(echo $f|cut -b 28-); ln -s $f arm-linux-$n; done&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
Download and unpack qt-embedded. As of release candidate 1, the name has changed from qtopia to qt-embedded. The commands to get and unpack the qt-embedded release candidate for the gumstix are:&lt;br /&gt;
&lt;br /&gt;
   $ wget ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz&lt;br /&gt;
   $ tar xzvf qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz ; cd qt-embedded-linux-opensource-src-4.4.0-rc1&lt;br /&gt;
&lt;br /&gt;
I chose to install qt-embedded in the directory qt-4.4.0 under /usr/lib. If you would like to install it somewhere else, provide that location in the -prefix option.&lt;br /&gt;
&lt;br /&gt;
Configure, make and make install. If you want to use the touchscreen for mouse input, it is best to include the tslib mouse driver configuration for qt-embedded. The correct configuration is:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /usr/lib/qt-4.4.0 -prefix-install -qt-mouse-tslib&lt;br /&gt;
  $ make&lt;br /&gt;
  $ sudo make install INSTALL_ROOT=/tmp/qt-embedded&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix (~40 MB)&lt;br /&gt;
&lt;br /&gt;
  $ cd /tmp/qt-embedded/usr/lib&lt;br /&gt;
  $ tar zcf ~/qt-4.4.0.tar qt-4.4.0/{lib,plugins,translations}&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar zxf qt-4.4.0.tar -C /media/cf ; ln -s /media/cf/qt-4,4,0/ /usr/lib/qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
qt-embedded needs libstdc++, move it to your gumstix's /lib or somewhere it can be found&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/&lt;br /&gt;
  $ tar zcf ~/libstdc++.tar libstdc++.so*&lt;br /&gt;
&lt;br /&gt;
  libstdc++.so&lt;br /&gt;
  libstdc++.so.6&lt;br /&gt;
  libstdc++.so.6.0.8&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar zxf libstdc++.tar -C /lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Set variables for qtopia &amp;amp; calibrate touchscreen. If you are using the tslib then you should calibrate the touch screen using ts_calibrate instead of the mousecalibration example. The environment variable QWS_MOUSE_PROTO should be set to tslib:/dev/input/touchscreen0&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='tslib:/dev/input/touchscreen0'&lt;br /&gt;
  $ ts_calibrate&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Glebovitz</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=462</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=462"/>
				<updated>2008-04-16T21:34:57Z</updated>
		
		<summary type="html">&lt;p&gt;Glebovitz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We need to find the compiler (symlinks &amp;amp; path)&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/cross/bin ; for f in arm-angstrom-linux-gnueabi-*; do n=$(echo $f|cut -b 28-); ln -s $f arm-linux-$n; done&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
Download and unpack qt-embedded. As of release candidate 1, the name has changed from qtopia to qt-embedded. The commands to get and unpack the qt-embedded release candidate for the gumstix are:&lt;br /&gt;
&lt;br /&gt;
   $ wget ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz&lt;br /&gt;
   $ tar xzvf qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz ; cd qt-embedded-linux-opensource-src-4.4.0-rc1&lt;br /&gt;
&lt;br /&gt;
I chose to install qt-embedded in the directory qt-4.4.0 under /usr/lib. If you would like to install it somewhere else, provide that location in the -prefix option.&lt;br /&gt;
&lt;br /&gt;
Configure, make and make install. If you want to use the touchscreen for mouse input, it is best to include the tslib mouse driver configuration for qt-embedded. The correct configuration is:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /usr/lib/qt-4.4.0 -prefix-install -qt-mouse-tslib&lt;br /&gt;
  $ make&lt;br /&gt;
  $ sudo make install INSTALL_ROOT=/tmp/qt-embedded&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix (~40 MB)&lt;br /&gt;
&lt;br /&gt;
  $ cd /tmp/qt-embedded/usr/lib&lt;br /&gt;
  $ tar zcf ~/qt-4.4.0.tar qt-4.4.0/{lib,plugins,translations}&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf qt-4.4.0.tar -C /media/cf ; ln -s /media/cf/qt-4,4,0/ /usr/lib/qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
qt-embedded needs libstdc++, move it to your gumstix's /lib or somewhere it can be found&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/&lt;br /&gt;
  $ tar cfv ~/libstdc++.tar libstdc++.so*&lt;br /&gt;
&lt;br /&gt;
  libstdc++.so&lt;br /&gt;
  libstdc++.so.6&lt;br /&gt;
  libstdc++.so.6.0.8&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf libstdc++.tar -C /lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Set variables for qtopia &amp;amp; calibrate touchscreen. If you are using the tslib then you should calibrate the touch screen using ts_calibrate instead of the mousecalibration example. The environment variable QWS_MOUSE_PROTO should be set to tslib:/dev/input/touchscreen0&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='tslib:/dev/input/touchscreen0'&lt;br /&gt;
  $ ts_calibrate&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Glebovitz</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=461</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=461"/>
				<updated>2008-04-16T21:33:59Z</updated>
		
		<summary type="html">&lt;p&gt;Glebovitz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We need to find the compiler (symlinks &amp;amp; path)&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/cross/bin ; for f in arm-angstrom-linux-gnueabi-*; do n=$(echo $f|cut -b 28-); ln -s $f arm-linux-$n; done&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
Download and unpack qt-embedded. As of release candidate 1, the name has changed from qtopia to qt-embedded. The commands to get and unpack the qt-embedded release candidate for the gumstix are:&lt;br /&gt;
&lt;br /&gt;
   $ wget ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz&lt;br /&gt;
   $ tar xzvf qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz ; cd qt-embedded-linux-opensource-src-4.4.0-rc1&lt;br /&gt;
&lt;br /&gt;
I chose to install qt-embedded in the directory qt-4.4.0 under /usr/lib. If you would like to install it somewhere else, provide that location in the -prefix option.&lt;br /&gt;
&lt;br /&gt;
Configure, make and make install. If you want to use the touchscreen for mouse input, it is best to include the tslib mouse driver configuration for qt-embedded. The correct configuration is:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /usr/lib/qt-4.4.0 -prefix-install -qt-mouse-tslib&lt;br /&gt;
  $ make&lt;br /&gt;
  $ sudo make install INSTALL_ROOT=/tmp/qt-embedded&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix (~40 MB including examples &amp;amp; demos)&lt;br /&gt;
&lt;br /&gt;
  $ cd /tmp/qt-embedded/usr/lib&lt;br /&gt;
  $ tar zcf ~/qt-4.4.0.tar qt-4.4.0/{lib,plugins,translations}&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf qt-4.4.0.tar -C /media/cf ; ln -s /media/cf/qt-4,4,0/ /usr/lib/qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
qt-embedded needs libstdc++, move it to your gumstix's /lib or somewhere it can be found&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/&lt;br /&gt;
  $ tar cfv ~/libstdc++.tar libstdc++.so*&lt;br /&gt;
&lt;br /&gt;
  libstdc++.so&lt;br /&gt;
  libstdc++.so.6&lt;br /&gt;
  libstdc++.so.6.0.8&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf libstdc++.tar -C /lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Set variables for qtopia &amp;amp; calibrate touchscreen. If you are using the tslib then you should calibrate the touch screen using ts_calibrate instead of the mousecalibration example. The environment variable QWS_MOUSE_PROTO should be set to tslib:/dev/input/touchscreen0&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='tslib:/dev/input/touchscreen0'&lt;br /&gt;
  $ ts_calibrate&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Glebovitz</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=460</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=460"/>
				<updated>2008-04-16T21:13:36Z</updated>
		
		<summary type="html">&lt;p&gt;Glebovitz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We need to find the compiler (symlinks &amp;amp; path)&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/cross/bin ; for f in arm-angstrom-linux-gnueabi-*; do n=$(echo $f|cut -b 28-); ln -s $f arm-linux-$n; done&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
Download and unpack qt-embedded. As of release candidate 1, the name has changed from qtopia to qt-embedded. The commands to get and unpack the qt-embedded release candidate for the gumstix are:&lt;br /&gt;
&lt;br /&gt;
   $ wget ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz&lt;br /&gt;
   $ tar xzvf qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz ; cd qt-embedded-linux-opensource-src-4.4.0-rc1&lt;br /&gt;
&lt;br /&gt;
I chose to install qt-embedded in the directory qt-4.4.0 under /usr/lib. If you would like to install it somewhere else, provide that location in the -prefix option.&lt;br /&gt;
&lt;br /&gt;
Configure, make and make install. If you want to use the touchscreen for mouse input, it is best to include the tslib mouse driver configuration for qt-embedded. The correct configuration is:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /usr/lib/qt-4.4.0 -prefix-install -qt-mouse-tslib; make ; sudo make install&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix (~83 MB including examples &amp;amp; demos)&lt;br /&gt;
&lt;br /&gt;
  $ cd /usr/lib&lt;br /&gt;
  $ tar cvf ~/qt-4.4.0.tar --exclude=doc qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf qt-4.4.0.tar -C /media/cf ; ln -s /media/cf/qt-4,4,0/ /usr/lib/qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
qt-embedded needs libstdc++, move it to your gumstix's /lib or somewhere it can be found&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/&lt;br /&gt;
  $ tar cfv ~/libstdc++.tar libstdc++.so*&lt;br /&gt;
&lt;br /&gt;
  libstdc++.so&lt;br /&gt;
  libstdc++.so.6&lt;br /&gt;
  libstdc++.so.6.0.8&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf libstdc++.tar -C /lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Set variables for qtopia &amp;amp; calibrate touchscreen. If you are using the tslib then you should calibrate the touch screen using ts_calibrate instead of the mousecalibration example. The environment variable QWS_MOUSE_PROTO should be set to tslib:/dev/input/touchscreen0&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='tslib:/dev/input/touchscreen0'&lt;br /&gt;
  $ ts_calibrate&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Glebovitz</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=459</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=459"/>
				<updated>2008-04-16T21:13:22Z</updated>
		
		<summary type="html">&lt;p&gt;Glebovitz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We need to find the compiler (symlinks &amp;amp; path)&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/cross/bin ; for f in arm-angstrom-linux-gnueabi-*; do n=$(echo $f|cut -b 28-); ln -s $f arm-linux-$n; done&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
Download and unpack qt-embedded. As of release candidate 1, the name has changed from qtopia to qt-embedded. The commands to get and unpack the qt-embedded release candidate for the gumstix are:&lt;br /&gt;
&lt;br /&gt;
   $ wget ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz&lt;br /&gt;
   $ tar xzvf qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz ; cd qt-embedded-linux-opensource-src-4.4.0-rc1&lt;br /&gt;
&lt;br /&gt;
I chose to install qt-embedded in the directory qt-4.4.0 under /usr/lib. If you would like to install it somewhere else, provide that location in the -prefix option.&lt;br /&gt;
&lt;br /&gt;
Configure, make and make install. If you want to use the touchscreen for mouse input, it is best to include the tslib mouse driver configuration for qt-embedded. The correct configuration is:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /usr/lib/qt-4.4.0 -preix-install -qt-mouse-tslib; make ; sudo make install&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix (~83 MB including examples &amp;amp; demos)&lt;br /&gt;
&lt;br /&gt;
  $ cd /usr/lib&lt;br /&gt;
  $ tar cvf ~/qt-4.4.0.tar --exclude=doc qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf qt-4.4.0.tar -C /media/cf ; ln -s /media/cf/qt-4,4,0/ /usr/lib/qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
qt-embedded needs libstdc++, move it to your gumstix's /lib or somewhere it can be found&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/&lt;br /&gt;
  $ tar cfv ~/libstdc++.tar libstdc++.so*&lt;br /&gt;
&lt;br /&gt;
  libstdc++.so&lt;br /&gt;
  libstdc++.so.6&lt;br /&gt;
  libstdc++.so.6.0.8&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf libstdc++.tar -C /lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Set variables for qtopia &amp;amp; calibrate touchscreen. If you are using the tslib then you should calibrate the touch screen using ts_calibrate instead of the mousecalibration example. The environment variable QWS_MOUSE_PROTO should be set to tslib:/dev/input/touchscreen0&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='tslib:/dev/input/touchscreen0'&lt;br /&gt;
  $ ts_calibrate&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Glebovitz</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=458</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=458"/>
				<updated>2008-04-15T20:22:56Z</updated>
		
		<summary type="html">&lt;p&gt;Glebovitz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We need to find the compiler (symlinks &amp;amp; path)&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/cross/bin ; for f in arm-angstrom-linux-gnueabi-*; do n=$(echo $f|cut -b 28-); ln -s $f arm-linux-$n; done&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
Download and unpack qt-embedded. As of release candidate 1, the name has changed from qtopia to qt-embedded. The commands to get and unpack the qt-embedded release candidate for the gumstix are:&lt;br /&gt;
&lt;br /&gt;
   $ wget ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz&lt;br /&gt;
   $ tar xzvf qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz ; cd qt-embedded-linux-opensource-src-4.4.0-rc1&lt;br /&gt;
&lt;br /&gt;
I chose to install qt-embedded in the directory qt-4.4.0 under /usr/lib. If you would like to install it somewhere else, provide that location in the -prefix option.&lt;br /&gt;
&lt;br /&gt;
Configure, make and make install. If you want to use the touchscreen for mouse input, it is best to include the tslib mouse driver configuration for qt-embedded. The correct configuration is:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /usr/lib/qt-4.4.0 -qt-mouse-tslib; make ; make install&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix (~83 MB including examples &amp;amp; demos)&lt;br /&gt;
&lt;br /&gt;
  $ cd /usr/lib&lt;br /&gt;
  $ tar cvf ~/qt-4.4.0.tar --exclude=doc qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf qt-4.4.0.tar -C /media/cf ; ln -s /media/cf/qt-4,4,0/ /usr/lib/qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
qt-embedded needs libstdc++, move it to your gumstix's /lib or somewhere it can be found&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/&lt;br /&gt;
  $ tar cfv ~/libstdc++.tar libstdc++.so*&lt;br /&gt;
&lt;br /&gt;
  libstdc++.so&lt;br /&gt;
  libstdc++.so.6&lt;br /&gt;
  libstdc++.so.6.0.8&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf libstdc++.tar -C /lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Set variables for qtopia &amp;amp; calibrate touchscreen. If you are using the tslib then you should calibrate the touch screen using ts_calibrate instead of the mousecalibration example. The environment variable QWS_MOUSE_PROTO should be set to tslib:/dev/input/touchscreen0&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='tslib:/dev/input/touchscreen0'&lt;br /&gt;
  $ ts_calibrate&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Glebovitz</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=457</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=457"/>
				<updated>2008-04-15T20:21:00Z</updated>
		
		<summary type="html">&lt;p&gt;Glebovitz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We need to find the compiler (symlinks &amp;amp; path)&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/cross/bin ; for f in arm-angstrom-linux-gnueabi-*; do n=$(echo $f|cut -b 28-); ln -s $f arm-linux-$n; done&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
Download and unpack qt-embedded. As of release candidate 1, the name has changed from qtopia to qt-embedded. The commands to get and unpack the qt-embedded release candidate for the gumstix is:&lt;br /&gt;
&lt;br /&gt;
   $ wget ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz&lt;br /&gt;
   $ tar xzvf qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz ; cd qt-embedded-linux-opensource-src-4.4.0-rc1&lt;br /&gt;
&lt;br /&gt;
I chose to install qt-embedded in the directory qt-4.4.0 under /usr/lib. If you would like to install it somewhere else, provide that location in the -prefix option.&lt;br /&gt;
&lt;br /&gt;
Configure, make and make install. If you want to use the touchscreen for mouse input, it is best to include the tslib mouse driver configuration for qt-embedded. The correct configuration is:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /usr/lib/qt-4.4.0 -qt-mouse-tslib; make ; make install&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix (~83 MB including examples &amp;amp; demos)&lt;br /&gt;
&lt;br /&gt;
  $ cd /usr/lib&lt;br /&gt;
  $ tar cvf ~/qt-4.4.0.tar --exclude=doc qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf qt-4.4.0.tar -C /media/cf ; ln -s /media/cf/qt-4,4,0/ /usr/lib/qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
qt-embedded needs libstdc++, move it to your gumstix's /lib or somewhere it can be found&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/&lt;br /&gt;
  $ tar cfv ~/libstdc++.tar libstdc++.so*&lt;br /&gt;
&lt;br /&gt;
  libstdc++.so&lt;br /&gt;
  libstdc++.so.6&lt;br /&gt;
  libstdc++.so.6.0.8&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf libstdc++.tar -C /lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Set variables for qtopia &amp;amp; calibrate touchscreen. If you are using the tslib then you should calibrate the touch screen using ts_calibrate instead of the mousecalibration example. The environment variable QWS_MOUSE_PROTO should be set to tslib:/dev/input/touchscreen0&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='tslib:/dev/input/touchscreen0'&lt;br /&gt;
  $ ts_calibrate&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Glebovitz</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=456</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=456"/>
				<updated>2008-04-15T20:00:21Z</updated>
		
		<summary type="html">&lt;p&gt;Glebovitz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We need to find the compiler (symlinks &amp;amp; path)&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/cross/bin ; for f in arm-angstrom-linux-gnueabi-*; do n=$(echo $f|cut -b 28-); ln -s $f arm-linux-$n; done&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
Download and unpack qt-embedded. As of release candidate 1, the name has changed from qtopia to qt-embedded. The commands to get and unpack the qt-embedded release candidate for the gumstix is:&lt;br /&gt;
&lt;br /&gt;
   $ wget ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz&lt;br /&gt;
   $ tar xzvf qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz ; cd qt-embedded-linux-opensource-src-4.4.0-rc1&lt;br /&gt;
&lt;br /&gt;
I chose to install qt-embedded in the directory qt-4.4.0 under /usr/lib. If you would like to install it somewhere else, provide that location in the -prefix option.&lt;br /&gt;
&lt;br /&gt;
Configure, make and make install. If you want to use the touchscreen for mouse input, it is best to include the tslib mouse driver configuration for qt-embedded. The correct configuration is:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /usr/lib/qt-4.4.0 -qt-mouse-tslib; make ; make install&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix (~83 MB including examples &amp;amp; demos)&lt;br /&gt;
&lt;br /&gt;
  $ cd /usr/lib/qt-4.4.0&lt;br /&gt;
  $ tar cvf ~/qt-4.4.0.tar --exclude=doc qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf qt-4.4.0.tar -C /media/cf ; ln -s /media/cf/qt-4,4,0/ /usr/lib/qt-4.4.0&lt;br /&gt;
&lt;br /&gt;
qt-embedded needs libstdc++, move it to your gumstix's /lib or somewhere it can be found&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/&lt;br /&gt;
  $ tar cfv ~/libstdc++.tar libstdc++.so*&lt;br /&gt;
&lt;br /&gt;
  libstdc++.so&lt;br /&gt;
  libstdc++.so.6&lt;br /&gt;
  libstdc++.so.6.0.8&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf libstdc++.tar -C /lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Set variables for qtopia &amp;amp; calibrate touchscreen. If you are using the tslib then you should calibrate the touch screen using ts_calibrate instead of the mousecalibration example. The environment variable QWS_MOUSE_PROTO should be set to tslib:/dev/input/touchscreen0&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='tslib:/dev/input/touchscreen0'&lt;br /&gt;
  $ ts_calibrate&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Glebovitz</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=455</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=455"/>
				<updated>2008-04-15T19:39:12Z</updated>
		
		<summary type="html">&lt;p&gt;Glebovitz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;we need qtopia to find the compiler (symlinks &amp;amp; path)&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/cross/bin ; for f in arm-angstrom-linux-gnueabi-*; do n=$(echo $f|cut -b 28-); ln -s $f arm-linux-$n; done&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
download and unpack&lt;br /&gt;
&lt;br /&gt;
  $ wget ftp://ftp.trolltech.com/qt/source/qtopia-core-opensource-src-4.4.0-beta1.tar.gz&lt;br /&gt;
  $ tar xzvf qtopia-core-opensource-src-4.4.0-beta1.tar.gz ; cd qtopia-core-opensource-src-4.4.0-beta1/&lt;br /&gt;
&lt;br /&gt;
as of release candidate 1, the name has changed from qtopia to qt-embedded. The commands to get and unpack the qt-embedded release candidate for the gumstix is:&lt;br /&gt;
&lt;br /&gt;
   $ wget ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz&lt;br /&gt;
   $ tar xzvf qt-embedded-linux-opensource-src-4.4.0-rc1.tar.gz ; cd qt-embedded-linux-opensource-src-4.4.0-rc1/&lt;br /&gt;
&lt;br /&gt;
configure, make and make install&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /qtopia ; make ; sudo make install&lt;br /&gt;
&lt;br /&gt;
if you want to use the touchscreen for mouse input, it is best to include the tslib mouse driver configuration for qt-embedded. The correct configuration is:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /qtopia -qt-moust-tslib; make ; sudo make install&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix (~83 MB including examples &amp;amp; demos)&lt;br /&gt;
&lt;br /&gt;
  $ tar cvf ~/qtopia-core.tar --exclude=doc /qtopia&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf qtopia-core.tar -C /media/cf ; ln -s /media/cf/qtopia/ /qtopia&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
qtopia needs libstdc++, move it to your gumstix's /lib or somewhere it can be found&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/&lt;br /&gt;
  $ tar cfv ~/libstdc++.tar libstdc++.so*&lt;br /&gt;
&lt;br /&gt;
  libstdc++.so&lt;br /&gt;
  libstdc++.so.6&lt;br /&gt;
  libstdc++.so.6.0.8&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf libstdc++.tar -C /lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
set variables for qtopia &amp;amp; calibrate touchscreen&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='LinuxTP:/dev/input/touchscreen0'&lt;br /&gt;
  $ /qtopia/examples/qtopiacore/mousecalibration/mousecalibration -qws &amp;amp;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if you are using the tslib then you should calibrate the touch screen using ts_calibrate instead of the mousecalibration example. The environment variable QWS_MOUSE_PROTO should be set to tslib:/dev/input/touchscreen0&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='tslib:/dev/input/touchscreen0'&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Glebovitz</name></author>	</entry>

	<entry>
		<id>https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=454</id>
		<title>Qtopia core howto</title>
		<link rel="alternate" type="text/html" href="https://wiki.gumstix.com/index.php?title=Qtopia_core_howto&amp;diff=454"/>
				<updated>2008-04-15T19:30:41Z</updated>
		
		<summary type="html">&lt;p&gt;Glebovitz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;we need qtopia to find the compiler (symlinks &amp;amp; path)&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/cross/bin ; for f in arm-angstrom-linux-gnueabi-*; do n=$(echo $f|cut -b 28-); ln -s $f arm-linux-$n; done&lt;br /&gt;
  $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
download and unpack&lt;br /&gt;
&lt;br /&gt;
  $ wget ftp://ftp.trolltech.com/qt/source/qtopia-core-opensource-src-4.4.0-beta1.tar.gz&lt;br /&gt;
  $ tar xzvf qtopia-core-opensource-src-4.4.0-beta1.tar.gz ; cd qtopia-core-opensource-src-4.4.0-beta1/&lt;br /&gt;
&lt;br /&gt;
as of release candidate 1, the name has changed from qtopia to qt-embedded. The source file is now&lt;br /&gt;
&lt;br /&gt;
   qt-embedded-opensource-src-4.4.0-rc1&lt;br /&gt;
&lt;br /&gt;
configure, make and make install&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /qtopia ; make ; sudo make install&lt;br /&gt;
&lt;br /&gt;
if you want to use the touchscreen for mouse input, it is best to include the tslib mouse driver configuration for qt-embedded. The correct configuration is:&lt;br /&gt;
&lt;br /&gt;
  $ ./configure -embedded arm -little-endian -prefix /qtopia -qt-moust-tslib; make ; sudo make install&lt;br /&gt;
&lt;br /&gt;
tar and move it to gumstix (~83 MB including examples &amp;amp; demos)&lt;br /&gt;
&lt;br /&gt;
  $ tar cvf ~/qtopia-core.tar --exclude=doc /qtopia&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf qtopia-core.tar -C /media/cf ; ln -s /media/cf/qtopia/ /qtopia&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
qtopia needs libstdc++, move it to your gumstix's /lib or somewhere it can be found&lt;br /&gt;
&lt;br /&gt;
  $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/&lt;br /&gt;
  $ tar cfv ~/libstdc++.tar libstdc++.so*&lt;br /&gt;
&lt;br /&gt;
  libstdc++.so&lt;br /&gt;
  libstdc++.so.6&lt;br /&gt;
  libstdc++.so.6.0.8&lt;br /&gt;
&lt;br /&gt;
  gumstix: $ tar xvf libstdc++.tar -C /lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
set variables for qtopia &amp;amp; calibrate touchscreen&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='LinuxTP:/dev/input/touchscreen0'&lt;br /&gt;
  $ /qtopia/examples/qtopiacore/mousecalibration/mousecalibration -qws &amp;amp;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if you are using the tslib then you should calibrate the touch screen using ts_calibrate instead of the mousecalibration example. The environment variable QWS_MOUSE_PROTO should be set to tslib:/dev/input/touchscreen0&lt;br /&gt;
&lt;br /&gt;
  $ export QWS_MOUSE_PROTO='tslib:/dev/input/touchscreen0'&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:How_to_-_gui]]&lt;/div&gt;</summary>
		<author><name>Glebovitz</name></author>	</entry>

	</feed>