diff options
author | Xiaofeng Yan <xiaofeng.yan@windriver.com> | 2011-05-17 18:20:17 +0800 |
---|---|---|
committer | Xiaofeng Yan <xiaofeng.yan@windriver.com> | 2011-05-17 18:20:17 +0800 |
commit | c210f2c9d10d813d1981883c509ba1e27da85ddc (patch) | |
tree | 79d2a24e52406001c6e2338eb213a7eb8636fb93 | |
parent | 422a054589a05844c9eced03abf3664ec6cd33a0 (diff) | |
download | meta-qt3-c210f2c9d10d813d1981883c509ba1e27da85ddc.tar.gz meta-qt3-c210f2c9d10d813d1981883c509ba1e27da85ddc.tar.bz2 meta-qt3-c210f2c9d10d813d1981883c509ba1e27da85ddc.zip |
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-- | README | 39 |
1 files changed, 34 insertions, 5 deletions
@@ -1,8 +1,37 @@ +meta-qt3 +======== -README for meta-qt3 +This layer provides Qt 3.x libraries. Its intended use is for passing LSB tests +as Qt3 is a requirement for LSB; however the libraries may also be used for any +other purpose requiring Qt3. -To use this branch, add the path to this directory to your -conf/bblayers.conf file. +-------------------------------- +Build an LSB image including Qt3 +-------------------------------- -You may also have to set DISTRO = "poky-lsb" in your conf/local.conf -file. +You can build an LSB image including Qt3 using the following steps: + +1. Add meta-qt3 path to COREBASE/build/conf/bblayers.conf file + +2. Set DISTRO = "poky-lsb" in COREBASE/build/conf/local.conf file + +3. Build lsb-image including qt3 + $ bitbake core-image-lsb-qt3 + +Note: "core-image-lsb-qt3" is the image prepared to meet the demands of LSB. + +-------------------------------- +Include Qt3 in your custom image +-------------------------------- + +If you only want to add Qt3 to your custom image, then you should perform +the following steps: + +1. Add meta-qt3 path to COREBASE/build/conf/bblayers.conf file + +2. Add task-core-qt3 file to your custom image. + For example, if core-image-custom.bb is your building image file, + then you should add task-core-qt3 to IMAGE_INSTALL in core-image-custom.bb + +3. Build your custom image in build directory + $ bitbake core-image-custom |