summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2015-08-07 03:56:21 +0900
committerTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2015-08-07 18:56:44 +0900
commitc0289651b2d831f42d0c5236b1f703d1379354f8 (patch)
tree313929ed4e27729bf562c2234f1441bfae8605b5 /README.md
parentae2390f3adace68083ec7867193520611ecbf2eb (diff)
Support R-Car M2 porter board
Now agl-image-ivi become bootable on R-Car M2 porter board. For more information and instruction to build and run, see README.md. Change-Id: I1a99634695305546dc27d2fa8dc0e5bcdff3ab39 Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md85
1 files changed, 83 insertions, 2 deletions
diff --git a/README.md b/README.md
index 74c0f895f..e44d94ce9 100644
--- a/README.md
+++ b/README.md
@@ -15,6 +15,12 @@ URI: git://git.openembedded.org/meta-openembedded
> branch: dizzy
> revision: 853dcfa0d618dc26bd27b3a1b49494b98d6eee97
+## The Renesas R-Car Gen2 (Porter) board depends in addition on: ##
+
+URI: https://gerrit.automotivelinux.org/gerrit/p/AGL/meta-renesas.git
+> branch: agl-1.0-bsp-1.8.0
+> revision: 0a69b07cfca17d1435f2bc7bf779139c5fac09a3
+
Layers
------
@@ -22,7 +28,7 @@ There are 2 sub-layers in top-level `meta-agl`.
`meta-agl` is a layer which contains AGL common and middleware packages.
> meta-agl/meta-agl
-
+
`meta-agl-bsp` is a layer which contains required packages to boot AGL distribution on an emulated machine(QEMU).
> meta-agl/meta-agl-bsp
@@ -55,6 +61,7 @@ Supported Machine
-----------------
* QEMU (x86-64) - emulated machine: qemux86-64
+* Renesas R-Car Gen2 (R-Car M2) - machine: porter
Supported Target of bitbake
------------------------
@@ -64,6 +71,24 @@ Supported Target of bitbake
* `agl-image-minimal` For internal use to develop distribution (experimental)
* `agl-image-weston` For internal use to develop distribution (experimental)
+Supposed Directory Trees of Layers to build
+-------------------------------------------
+
+* For QEMU
+
+ ${TOPDIR}/
+ meta-agl/
+ meta-openembedded/
+ poky/
+
+* For R-Car M2
+
+ ${TOPDIR}/
+ meta-agl/
+ meta-openembedded/
+ meta-renesas/
+ poky/
+
Build a QEMU image
------------------
@@ -72,7 +97,7 @@ You can build a QEMU image using the following steps:
1. Export TEMPLATECONF to pick up correct configuration for the build
> $ export TEMPLATECONF=/full/path/to/meta-agl/meta-agl/conf
-2. Rune the following command:
+2. Run the following command:
> $ source poky/oe-init-build-env
3. Build the minimal image of AGL Distribution
@@ -85,3 +110,59 @@ You can build a QEMU image using the following steps:
> $ PATH_TO_POKY/poky/scripts/runqemu agl-image-ivi qemux86-64 bootparams="uvesafb.mode_option=1280x720-32"
5. Some weston samples are available from weston terminal.
+
+Build a R-Car M2 (porter) image
+-------------------------------
+
+### Software setup
+
+#### Obtain and Install Renesas Graphics Drivers
+
+See [here](http://wiki.projects.genivi.org/index.php/Hardware_Setup_and_Software_Installation/koelsch%26porter#M2_Porter_low_cost_board) and get 2 ZIP files from the link there.
+
+Note: You have to copy files manually because there is no shell-script
+in the current meta-renesas.
+
+1. Unzip the two downloads into a folder. In this example a temporary directory is used.
+ $ cd $HOME/AGL
+ $ mkdir binary-tmp
+ $ <unzip the two downloads into binary-tmp>
+
+ After this step there should be two files in binary-tmp:
+ R-Car_Series_Evaluation_Software_Package_for_Linux-*.tar.gz
+ R-Car_Series_Evaluation_Software_Package_of_Linux_Drivers-*.tar.gz
+
+2. Extract 2 tar.gz
+ tar xf R-Car_Series_Evaluation_Software_Package_for_Linux-*.tar.gz
+ tar xf R-Car_Series_Evaluation_Software_Package_of_Linux_Drivers-*.tar.gz
+
+3. Copy 2 files manually
+ 1. Locate EVA_r8a7791_linux_sgx_binaries_gles2.tar.bz2 in the graphics
+ driver deliverable and copy it into the BSP layer. (need rename)
+ cp <path_to_file>/EVA_r8a7791_linux_sgx_binaries_gles2.tar.bz2 \
+ meta-renesas/meta-rcar-gen2/recipes-graphics/gles-module/\
+ gles-user-module/r8a7791_linux_sgx_binaries_gles2.tar.bz2
+
+ 2. Locate SGX_KM_M2.tar.bz2 in the graphics driver deliverable and copy
+ it into the BSP layer.
+ cp <path_to_file>SGX_KM_M2.tar.bz2 \
+ meta-renesas/meta-rcar-gen2/recipes-kernel/gles-module/gles-kernel-module
+
+#### Build from the Source code
+
+You can build a R-Car2 M2 (porter) image using the following steps:
+
+1. Export TEMPLATECONF to pick up correct configuration for the build
+ > $ export TEMPLATECONF=/full/path/to/meta-renesas/meta-rcar-gen2/conf
+
+2. Run the following command:
+ > $ source poky/oe-init-build-env
+
+3. Build the minimal image of AGL Distribution
+ > $ bitbake agl-image-ivi
+
+### Deployment (SDCARD)
+
+Follow the instructions [here](http://wiki.projects.genivi.org/index.php/Hardware_Setup_and_Software_Installation/koelsch%26porter#Deployment_.28SDCARD.29)
+
+Note: Use `agl-image-ivi-porter.tar.bz2` as name of root file system archive.