summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXiaofeng Yan <xiaofeng.yan@windriver.com>2011-05-17 18:20:17 +0800
committerXiaofeng Yan <xiaofeng.yan@windriver.com>2011-05-17 18:20:17 +0800
commitc210f2c9d10d813d1981883c509ba1e27da85ddc (patch)
tree79d2a24e52406001c6e2338eb213a7eb8636fb93
parent422a054589a05844c9eced03abf3664ec6cd33a0 (diff)
downloadmeta-qt3-c210f2c9d10d813d1981883c509ba1e27da85ddc.tar.gz
README: Update README of meta-qt3
The README is about the following two respects: 1 How to build a lsb-image including qt3 library 2 How to Add qt3 library for user to their custom image Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
-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