summaryrefslogtreecommitdiffstats
path: root/meta-chiefriver/README
diff options
context:
space:
mode:
authorTom Zanussi <tom.zanussi@intel.com>2012-05-17 22:17:42 -0500
committerTom Zanussi <tom.zanussi@intel.com>2012-05-30 14:22:51 -0500
commit37dee2e3ea78746be32057074ead9f9de5124670 (patch)
treecd9e503d72b8013cb4c3a6579b239517037fb58f /meta-chiefriver/README
parentc05129498c4f3b1757ce0ee195d6ff1d3f71c5d5 (diff)
downloadmeta-intel-37dee2e3ea78746be32057074ead9f9de5124670.tar.gz
meta-chiefriver: new layer for Chief River (Ivy Bridge/Panther Point) systems
This layer provides support for Ivy Bridge + Panther Point Intel systems. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Diffstat (limited to 'meta-chiefriver/README')
-rw-r--r--meta-chiefriver/README107
1 files changed, 107 insertions, 0 deletions
diff --git a/meta-chiefriver/README b/meta-chiefriver/README
new file mode 100644
index 00000000..49e44613
--- /dev/null
+++ b/meta-chiefriver/README
@@ -0,0 +1,107 @@
1This README file contains information on building the meta-chiefriver
2BSP layer, and booting the images contained in the /binary directory.
3Please see the corresponding sections below for details.
4
5The 'Chief River' platform consists of the Intel Ivy Bridge processor,
6plus the Panther Point PCH. This BSP assumes that the Ivy Bridge
7integrated graphics are being used.
8
9
10Dependencies
11============
12
13This layer depends on:
14
15 URI: git://git.openembedded.org/bitbake
16 branch: master
17
18 URI: git://git.openembedded.org/openembedded-core
19 layers: meta
20 branch: master
21
22 URI: git://git.yoctoproject.org/meta-intel
23 layers: intel
24 branch: master
25
26
27Table of Contents
28=================
29
30 I. Building the meta-chiefriver BSP layer
31 II. Booting the images in /binary
32
33
34I. Building the meta-chiefriver BSP layer
35=========================================
36
37In order to build an image with BSP support for a given release, you
38need to download the corresponding BSP tarball from the 'Board Support
39Package (BSP) Downloads' page of the Yocto Project website.
40
41Having done that, and assuming you extracted the BSP tarball contents
42at the top-level of your yocto build tree, you can build a chiefriver
43image by adding the location of the meta-chiefriver layer to
44bblayers.conf, along with the meta-intel layer itself (to access
45common metadata shared between BSPs) e.g.:
46
47 yocto/meta-intel \
48 yocto/meta-intel/meta-chiefriver \
49
50To enable the chiefriver layer, add the chiefriver MACHINE to local.conf:
51
52 MACHINE ?= "chiefriver"
53
54You should then be able to build a chiefriver image as such:
55
56 $ source oe-init-build-env
57 $ bitbake core-image-sato
58
59At the end of a successful build, you should have a live image that
60you can boot from a USB flash drive (see instructions on how to do
61that below, in the section 'Booting the images from /binary').
62
63As an alternative to downloading the BSP tarball, you can also work
64directly from the meta-intel git repository. For each BSP in the
65'meta-intel' repository, there are multiple branches, one
66corresponding to each major release starting with 'laverne' (0.90), in
67addition to the latest code which tracks the current master (note that
68not all BSPs are present in every release). Instead of extracting a
69BSP tarball at the top level of your yocto build tree, you can
70equivalently check out the appropriate branch from the meta-intel
71repository at the same location.
72
73
74II. Booting the images in /binary
75=================================
76
77This BSP contains bootable live images, which can be used to directly
78boot Yocto off of a USB flash drive.
79
80Under Linux, insert a USB flash drive. Assuming the USB flash drive
81takes device /dev/sdf, use dd to copy the live image to it. For
82example:
83
84# dd if=core-image-sato-chiefriver-20101207053738.hddimg of=/dev/sdf
85# sync
86# eject /dev/sdf
87
88This should give you a bootable USB flash device. Insert the device
89into a bootable USB socket on the target, and power on. This should
90result in a system booted to the Sato graphical desktop.
91
92If you want a terminal, use the arrows at the top of the UI to move to
93different pages of available applications, one of which is named
94'Terminal'. Clicking that should give you a root terminal.
95
96If you want to ssh into the system, you can use the root terminal to
97ifconfig the IP address and use that to ssh in. The root password is
98empty, so to log in type 'root' for the user name and hit 'Enter' at
99the Password prompt: and you should be in.
100
101----
102
103If you find you're getting corrupt images on the USB (it doesn't show
104the syslinux boot: prompt, or the boot: prompt contains strange
105characters), try doing this first:
106
107# dd if=/dev/zero of=/dev/sdf bs=1M count=512