aboutsummaryrefslogtreecommitdiffstats
path: root/README
blob: f82f781af195cbd32d31e803efd2b6d580eddd26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
meta-qt3
========
This layer is just for passing LSB test because qt3 is one test item of LSB.
You can get qt3 with two kinds of images(LSB image or custom image) \
according to the following steps.

---------------------------
Get LSB image including qt3
---------------------------
1 Enter poky directory
 $ls
 bitbake ... meta meta-demoapps meta-rt meta-yocto oe-init-build-env ... scripts

2 Add meta-qt3 path to build/conf/bblayers.conf file

3 Set DISTRO = "poky-lsb" in build/conf/local.conf file

4 Build lsb-image including qt3
 $ bitbake core-image-lsb-qt3

Note: "core-image-lsb-qt3" is the image to meet the demands of LSB.

-----------------------------
Get qt3 for your custom image
-----------------------------
1 Enter poky directory
 $ls
 bitbake build ... meta ... meta-qt3 ... meta-yocto oe-init-build-env ... scripts

2 Add meta-qt3 path to build/conf/bblayers.conf file

3 Add task-core-qt3 file to your custom image.
 For example, core-image-custom.bb is your building image file.
 Go to your directory including your core-image-custom.bb file.
 $vi core-image-custom.bb
  .......
  IMAGE_INSTALL = "\
  ${POKY_BASE_INSTALL} \
  task-core-basic \
+ task-core-qt3 \
  "
  ......

4 Build your custom image in build directory
 $ bitbake core-image-custom