summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmeta-cedartrail/README50
1 files changed, 48 insertions, 2 deletions
diff --git a/meta-cedartrail/README b/meta-cedartrail/README
index 67cba6bc..f17410c2 100755
--- a/meta-cedartrail/README
+++ b/meta-cedartrail/README
@@ -2,13 +2,17 @@ This README file contains information on building the meta-cedartrail
2BSP layer, and booting the images contained in the /binary directory. 2BSP layer, and booting the images contained in the /binary directory.
3Please see the corresponding sections below for details. 3Please see the corresponding sections below for details.
4 4
5The 'Cedar Trail' platform consists of the Cedarview (Intel® Atom™
6N2600, N2800 and D2700) processor, plus the Tiger Point
7(Intel® NM10 Express) Chipset.
8
5 9
6Table of Contents 10Table of Contents
7================= 11=================
8 12
9 I. Building the meta-cedartrail BSP layer 13 I. Building the meta-cedartrail BSP layer
10II. Booting the images in /binary 14II. Booting the images in /binary
11 15III. Miscellaneous Notes
12 16
13I. Building the meta-cedartrail BSP layer 17I. Building the meta-cedartrail BSP layer
14========================================= 18=========================================
@@ -24,10 +28,28 @@ bblayers.conf e.g.:
24 28
25 yocto/meta-intel/meta-cedartrail \ 29 yocto/meta-intel/meta-cedartrail \
26 30
27To enable the cedartrail layer, add the cedartrail MACHINE to local.conf: 31The meta-cedartrail layer contains support for two different machine
32configurations. These configurations are identical except for the fact
33that the one prefixed with 'cedartrail' makes use of Intel' proprietary
34PowerVR Graphics/Media drivers to enable Graphics and Media acceleration
35in the processor, while the one prefixed with 'cedartrail-nonopvr' uses
36non-accelerated graphics driver (VESA).
37
38If you want to enable the layer that supports Power VR graphics add the
39following to the local.conf file:
28 40
29 MACHINE ?= "cedartrail" 41 MACHINE ?= "cedartrail"
30 42
43Power VR Graphics user-space driver binaries are covered by a
44"Intel Free Distribution Binary License". The build of this driver
45can be enabled by adding the following line to the local.conf file:
46 PVR_LICENSE = "yes"
47
48If you want to enable the layer that does not support Power VR graphics
49add the following to the local.conf file:
50
51 MACHINE ?= "cedartrail-nopvr"
52
31You should then be able to build a cedartrail image as such: 53You should then be able to build a cedartrail image as such:
32 54
33 $ source oe-init-build-env 55 $ source oe-init-build-env
@@ -81,3 +103,27 @@ the syslinux boot: prompt, or the boot: prompt contains strange
81characters), try doing this first: 103characters), try doing this first:
82 104
83# dd if=/dev/zero of=/dev/sdf bs=1M count=512 105# dd if=/dev/zero of=/dev/sdf bs=1M count=512
106
107Miscellaneous Notes
108====================
109
110Video and Music Samples
111-----------------------
112This BSP includes recipes to download Ogg format video and
113music files that can be played-back with the Video and music players
114included in the sato images. The sample files are installed in
115/home/Music and /home/Videos directories.
116
117
118Adding Glxgears to image
119-------------------------
120Glxgears can be added to the generated image by adding "debug-tweaks"
121option to the extra image features variable in the default local.conf
122before building the BSP.
123
124e.g. to add Glxgears, locate the following line in local.conf
125EXTRA_IMAGE_FEATURES = "debug-tweaks"
126
127and change above line to..
128
129EXTRA_IMAGE_FEATURES = "debug-tweaks tools-testapps"