summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README39
1 files changed, 34 insertions, 5 deletions
diff --git a/README b/README
index 9be700e..b74bee2 100644
--- a/README
+++ b/README
@@ -1,8 +1,37 @@
1meta-qt3
2========
1 3
2README for meta-qt3 4This layer provides Qt 3.x libraries. Its intended use is for passing LSB tests
5as Qt3 is a requirement for LSB; however the libraries may also be used for any
6other purpose requiring Qt3.
3 7
4To use this branch, add the path to this directory to your 8--------------------------------
5conf/bblayers.conf file. 9Build an LSB image including Qt3
10--------------------------------
6 11
7You may also have to set DISTRO = "poky-lsb" in your conf/local.conf 12You can build an LSB image including Qt3 using the following steps:
8file. 13
141. Add meta-qt3 path to COREBASE/build/conf/bblayers.conf file
15
162. Set DISTRO = "poky-lsb" in COREBASE/build/conf/local.conf file
17
183. Build lsb-image including qt3
19 $ bitbake core-image-lsb-qt3
20
21Note: "core-image-lsb-qt3" is the image prepared to meet the demands of LSB.
22
23--------------------------------
24Include Qt3 in your custom image
25--------------------------------
26
27If you only want to add Qt3 to your custom image, then you should perform
28the following steps:
29
301. Add meta-qt3 path to COREBASE/build/conf/bblayers.conf file
31
322. Add task-core-qt3 file to your custom image.
33 For example, if core-image-custom.bb is your building image file,
34 then you should add task-core-qt3 to IMAGE_INSTALL in core-image-custom.bb
35
363. Build your custom image in build directory
37 $ bitbake core-image-custom