mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 12:59:03 +02:00
crystalforest: Change the machine names
Change the Machine names for the two machines that will be used to publish the BSP on the Yocto Project website. And add the Yocto Project Compliance information for the 1.3 release. Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
This commit is contained in:
parent
0ebdf34f9a
commit
0863d73169
|
@ -3,11 +3,11 @@ BSP layer, and booting the images contained in the /binary directory.
|
|||
Please see the corresponding sections below for details.
|
||||
|
||||
The 'Crystal Forest' platform consists of two versions.
|
||||
1. STARGO
|
||||
2. SHUMWAY
|
||||
1. GLADDEN
|
||||
2. SERVER
|
||||
|
||||
Stargo Platform is based on Intel Sandy Bridge Gladden Processor,plus the Cave Creek chipset.
|
||||
Shumway Platform is based on two Intel Sandy Bridge (SNB-EP ES2 Grade and SNB-EN ES2 Grade)
|
||||
Gladden Platform is based on Intel Sandy Bridge Gladden Processor,plus the Cave Creek chipset.
|
||||
Server Platform is based on two Intel Sandy Bridge (SNB-EP ES2 Grade and SNB-EN ES2 Grade)
|
||||
Processors plus two Cave Creek Chipsets.
|
||||
|
||||
Both Platforms uses Matrox graphics Card.
|
||||
|
@ -64,13 +64,13 @@ common metadata shared between BSPs) e.g.:
|
|||
yocto/meta-intel \
|
||||
yocto/meta-intel/meta-crystalforest \
|
||||
|
||||
To enable the Crystal Forest Stargo layer, add the crystalforest-stargo MACHINE to local.conf:
|
||||
To enable the Crystal Forest Gladden layer, add the crystalforest-gladden MACHINE to local.conf:
|
||||
|
||||
MACHINE ?= "crystalforest-stargo"
|
||||
MACHINE ?= "crystalforest-gladden"
|
||||
|
||||
To enable the Crystal Forest Shumway layer, add the crystalforest-shumway MACHINE to local.conf:
|
||||
To enable the Crystal Forest Server layer, add the crystalforest-server MACHINE to local.conf:
|
||||
|
||||
MACHINE ?= "crystalforest-shumway"
|
||||
MACHINE ?= "crystalforest-server"
|
||||
|
||||
|
||||
You should then be able to build a crystalforest image as such:
|
||||
|
@ -103,15 +103,15 @@ Under Linux, insert a USB flash drive. Assuming the USB flash drive
|
|||
takes device /dev/sdf, use dd to copy the live image to it. For
|
||||
example:
|
||||
|
||||
To boot the Stargo Platform:
|
||||
To boot the Gladden Platform:
|
||||
|
||||
# dd if=core-image-sato-crystalforest-stargo-20120829033154.hddimg of=/dev/sdf
|
||||
# dd if=core-image-sato-crystalforest-gladden-20120829033154.hddimg of=/dev/sdf
|
||||
# sync
|
||||
# eject /dev/sdf
|
||||
|
||||
To boot the Shumway Platform:
|
||||
To boot the Server Platform:
|
||||
|
||||
# dd if=core-image-sato-crystalforest-shumway-20120829044852.hddimg of=/dev/sdf
|
||||
# dd if=core-image-sato-crystalforest-server-20120829044852.hddimg of=/dev/sdf
|
||||
# sync
|
||||
# eject /dev/sdf
|
||||
|
||||
|
@ -135,5 +135,3 @@ the syslinux boot: prompt, or the boot: prompt contains strange
|
|||
characters), try doing this first:
|
||||
|
||||
# dd if=/dev/zero of=/dev/sdf bs=1M count=512
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#@TYPE: Machine
|
||||
#@NAME: crystalforest-stargo
|
||||
#@NAME: crystalforest-gladden
|
||||
|
||||
#@DESCRIPTION: Machine configuration for Crystal Forest (STARGO) systems
|
||||
#@DESCRIPTION: Machine configuration for Crystal Forest (GLADDEN) systems
|
||||
# i.e. One Sandy Bridge based Gladden Processor + One Cave Creek Chipset
|
||||
|
||||
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
|
|
@ -1,7 +1,7 @@
|
|||
#@TYPE: Machine
|
||||
#@NAME: crystalforest-shumway
|
||||
#@NAME: crystalforest-server
|
||||
|
||||
#@DESCRIPTION: Machine configuration for Crystal Forest Server (SHUMWAY) systems
|
||||
#@DESCRIPTION: Machine configuration for Crystal Forest Server systems
|
||||
# i.e. Two Sandy Bridge Jaketown processors (SNB-EP ES2 Grade and SNB-EN ES2 Grade) + Two Cave Creek Chipsets.
|
||||
|
||||
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
|
|
@ -1,18 +1,17 @@
|
|||
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
||||
|
||||
COMPATIBLE_MACHINE_crystalforest-stargo = "crystalforest-stargo"
|
||||
KMACHINE_crystalforest-stargo = "crystalforest"
|
||||
KBRANCH_crystalforest-stargo = "standard/preempt-rt/base"
|
||||
COMPATIBLE_MACHINE_crystalforest-gladden = "crystalforest-gladen"
|
||||
KMACHINE_crystalforest-gladden = "crystalforest"
|
||||
KBRANCH_crystalforest-gladden = "standard/preempt-rt/base"
|
||||
|
||||
SRCREV_machine_pn-linux-yocto-rt_crystalforest-stargo ?= "9032b1e9daf5b4396f939981c3be95f67802d18c"
|
||||
SRCREV_meta_pn-linux-yocto-rt_crystalforest-stargo ?= "9e3bdb7344054264b750e53fbbb6394cc1c942ac"
|
||||
SRCREV_machine_pn-linux-yocto-rt_crystalforest-gladden ?= "9032b1e9daf5b4396f939981c3be95f67802d18c"
|
||||
SRCREV_meta_pn-linux-yocto-rt_crystalforest-gladden ?= "9e3bdb7344054264b750e53fbbb6394cc1c942ac"
|
||||
|
||||
COMPATIBLE_MACHINE_crystalforest-server = "crystalforest-server"
|
||||
KMACHINE_crystalforest-server = "crystalforest"
|
||||
KBRANCH_crystalforest-server = "standard/preempt-rt/base"
|
||||
|
||||
COMPATIBLE_MACHINE_crystalforest-shumway = "crystalforest-shumway"
|
||||
KMACHINE_crystalforest-shumway = "crystalforest"
|
||||
KBRANCH_crystalforest-shumway = "standard/preempt-rt/base"
|
||||
|
||||
SRCREV_machine_pn-linux-yocto-rt_crystalforest-shumway ?= "9032b1e9daf5b4396f939981c3be95f67802d18c"
|
||||
SRCREV_meta_pn-linux-yocto-rt_crystalforest-shumway ?= "9e3bdb7344054264b750e53fbbb6394cc1c942ac"
|
||||
SRCREV_machine_pn-linux-yocto-rt_crystalforest-server ?= "9032b1e9daf5b4396f939981c3be95f67802d18c"
|
||||
SRCREV_meta_pn-linux-yocto-rt_crystalforest-server ?= "9e3bdb7344054264b750e53fbbb6394cc1c942ac"
|
||||
|
||||
module_autoload_uio = "uio"
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
||||
|
||||
COMPATIBLE_MACHINE_crystalforest-stargo = "crystalforest-stargo"
|
||||
KMACHINE_crystalforest-stargo = "crystalforest"
|
||||
KBRANCH_crystalforest-stargo = "standard/common-pc-64/crystalforest"
|
||||
COMPATIBLE_MACHINE_crystalforest-gladden = "crystalforest-gladden"
|
||||
KMACHINE_crystalforest-gladden = "crystalforest"
|
||||
KBRANCH_crystalforest-gladden = "standard/common-pc-64/crystalforest"
|
||||
|
||||
SRCREV_machine_pn-linux-yocto_crystalforest-stargo ?= "449f7f520350700858f21a5554b81cc8ad23267d"
|
||||
SRCREV_meta_pn-linux-yocto_crystalforest-stargo ?= "2ec32d511b62d44b63e8560a9b1d6895a5dac695"
|
||||
SRCREV_machine_pn-linux-yocto_crystalforest-gladden ?= "449f7f520350700858f21a5554b81cc8ad23267d"
|
||||
SRCREV_meta_pn-linux-yocto_crystalforest-gladden ?= "2ec32d511b62d44b63e8560a9b1d6895a5dac695"
|
||||
|
||||
COMPATIBLE_MACHINE_crystalforest-shumway = "crystalforest-shumway"
|
||||
KMACHINE_crystalforest-shumway = "crystalforest"
|
||||
KBRANCH_crystalforest-shumway = "standard/common-pc-64/crystalforest"
|
||||
COMPATIBLE_MACHINE_crystalforest-server = "crystalforest-server"
|
||||
KMACHINE_crystalforest-server = "crystalforest"
|
||||
KBRANCH_crystalforest-server = "standard/common-pc-64/crystalforest"
|
||||
|
||||
SRCREV_machine_pn-linux-yocto_crystalforest-shumway ?= "449f7f520350700858f21a5554b81cc8ad23267d"
|
||||
SRCREV_meta_pn-linux-yocto_crystalforest-shumway ?= "2ec32d511b62d44b63e8560a9b1d6895a5dac695"
|
||||
SRCREV_machine_pn-linux-yocto_crystalforest-server ?= "449f7f520350700858f21a5554b81cc8ad23267d"
|
||||
SRCREV_meta_pn-linux-yocto_crystalforest-server ?= "2ec32d511b62d44b63e8560a9b1d6895a5dac695"
|
||||
|
||||
module_autoload_uio = "uio"
|
||||
|
|
Loading…
Reference in New Issue
Block a user