|
diff --git a/README b/README index cb7d5d4..3881652 100644 --- a/ README+++ b/ README |
|
@@ -20,41 +20,46 @@ ftp://ftp.trolltech.com/qt/source/qt-embedded-2.3.7.tar.bz2 |
20 | |
20 | |
21 | Set QTDIR to point to your qt/embedded source tree, such as: |
21 | Set QTDIR to point to your qt/embedded source tree, such as: |
22 | export QTDIR=/opt/qt-2.3.7 |
22 | export QTDIR=/opt/qt-2.3.7 |
23 | |
23 | |
24 | You need to do set the OPIEDIR environment variable: |
24 | You need to do set the OPIEDIR environment variable: |
25 | export OPIEDIR=`pwd` |
25 | export OPIEDIR=`pwd` |
26 | or |
26 | or |
27 | export OPIEDIR=~/projects/sources/opie |
27 | export OPIEDIR=~/projects/sources/opie |
28 | or whereever you placed the Opie sources. |
28 | or whereever you placed the Opie sources. |
29 | |
29 | |
30 | You need to adjust your runtime library search path, |
30 | You need to adjust your runtime library search path, |
31 | so that the Qt/Embedded and Opie libraries can be found: |
31 | so that the Qt/Embedded and Opie libraries can be found: |
32 | export LD_LIBRARY_PATH=$OPIEDIR/lib:$QTDIR/lib:$LD_LIBRARY_PATH |
32 | export LD_LIBRARY_PATH=$OPIEDIR/lib:$QTDIR/lib:$LD_LIBRARY_PATH |
33 | |
33 | |
34 | You have to apply the qte<version>-all.patch to the Qt/Embedded |
34 | You have to apply the qte<version>-all.patch to the Qt/Embedded |
35 | sources and copy the qconfig-qpe.h file to $QTDIR/src/tools: |
35 | sources and copy the qconfig-qpe.h file to $QTDIR/src/tools: |
36 | cd $QTDIR; cat $OPIEDIR/qt/qte<version>*.patch | patch -p0 |
36 | cd $QTDIR; cat $OPIEDIR/qt/qte<version>*.patch | patch -p1 |
37 | cp $OPIEDIR/qt/qpe-config.h $QTDIR/src/tools |
37 | cp $OPIEDIR/qt/qconfig-qpe.h $QTDIR/src/tools |
38 | |
38 | |
39 | You are now ready to configure and build Qt/Embedded |
39 | You are now ready to configure and build Qt/Embedded |
40 | |
40 | |
41 | cd $QTDIR |
41 | cd $QTDIR |
42 | echo 'yes' | ./configure -qconfig qpe -depths 4,16,24,32 -system-jpeg -system-libpng -system-zlib -no-xft -qvfb |
42 | echo 'yes' | ./configure -qconfig qpe -depths 4,16,24,32 -system-jpeg -system-libpng -system-zlib -no-xft -qvfb |
43 | make |
43 | make |
44 | |
44 | |
| |
45 | Note that the above command ( -qvfb ) compiles in the Virtual |
| |
46 | Framebuffer and is mostly meant on your host system. For cross |
| |
47 | compiling you will need to use the -xplatform switch but call |
| |
48 | ./configure --help to see your options. |
| |
49 | |
45 | Once you have these compiled, be sure to set the PATH to ensure your (cross)compiler |
50 | Once you have these compiled, be sure to set the PATH to ensure your (cross)compiler |
46 | is available. |
51 | is available. |
47 | |
52 | |
48 | Then do the following in the opie source tree: |
53 | Then do the following in the opie source tree: |
49 | |
54 | |
50 | make clean |
55 | make clean |
51 | make menuconfig |
56 | make menuconfig |
52 | |
57 | |
53 | Now you can move through the menu and select or deselect anything.. |
58 | Now you can move through the menu and select or deselect anything.. |
54 | Exit and save the configuration and enter "make" to create opie... |
59 | Exit and save the configuration and enter "make" to create opie... |
55 | |
60 | |
56 | Have fun with it ! |
61 | Have fun with it ! |
57 | |
62 | |
58 | If you get into trouble there are other makefile targets |
63 | If you get into trouble there are other makefile targets |
59 | |
64 | |
60 | make clean-configs |
65 | make clean-configs |
|