From: Chan Wei Sern <[email protected]> Hi All,
This is a patch series to align with Yocto 1.6 BSP refresh. Overall, this patchset consists following of: 1. Introduce conf/layer.conf and also common/recipe-kernel under meta-isg. This is to facilitate Intel common build for all ISG related platforms. 2. Added meta-valleyisland,meta-mohonpeak under meta-isg. 3. Added recipe-kernel for all ISG related platform under meta-isg folder and this also includes meta-romley and also meta-crystalforest. This allows ISG related platforms to have control over preferred linux-yocto version and branch. 4. Removed the used of intel-common-pkgarch.inc from meta-crystalforest and meta-romley. Since we like to have control over preferred linux-yocto version for machine specific build and for this reason intel-common-pkgarch.inc is not needed. 5. Enable ASPEED Tech Graphic Card. For this patchset I have done below: 1. Build sucessfully with machine specific for all ISGs platform as list below -crystalforest-gladden and crystalforest-server -romley and romley-ivb -valleyisland-32 and valleyisland-64 -mohonpeak32 and mohonpeak64 -haswell-wc 2. Boot smoothly on each of the platforms and confirmed all drivers are loaded properly via lspci and dmesg. Please help to pull this patch into meta-intel daisy branch. Thanks. Regards, Chan Wei Sern The following changes since commit d8e9e84375949ea82dadf214a04e94a2f871f5ce: fri2/linux-yocto_3.10: update SRCREVS to 3.10.38-ltsi (2014-05-05 12:42:35 -0500) are available in the git repository at: git://git.yoctoproject.org/meta-intel-contrib wchan9/intel-common-daisy http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=wchan9/intel-common-daisy Chan Wei Sern (14): meta-isg: linux-yocto_3.10 common SRCREV for all ISG BSPs meta-isg: linux-yocto-rt_3.10 common SRCREV for all ISG BSPs meta-mohonpeak: new BSP layer for Intel Atom Processor C2000 meta-mohonpeak: provide machine configuration for mohonpeak meta-valleyisland: new BSP layer for Intel Atom E38XX Processor meta-valleyisland: provide machine configuration for valleyisland meta-valleyisland: provide a formfactor for the valleyisland BSP meta-crystalforest: removed using of intel-common-pkgarch.inc meta-romley: remove using of intel-common-pkgarch.inc meta-crystalforest: Add linux-yocto_3.10 support meta-romley: Add linux-yocto_3.10 support meta-haswell-wc: Add linux-yocto_3.10 support meta-mohonpeak: Add linux-yocto_3.10 support meta-valleyisland: Add linux-yocto_3.10 and linux-yocto-rt_3.10 Ong Boon Leong (7): meta-isg: add layer.conf xf86-video-ast: new recipe for ASPEED Technology Card meta-intel.inc: Enable ASPEED Tech Graphic Card meta-mohonpeak: provide a formfactor for the mohonpeak BSP meta-intel/common: Update Calgary Corpus do_install recipe meta-intel/common: Update Canterbury Corpus do_install recipe meta-intel/common: Suppress canterbury corpus QA arch-check .../calgary-corpus/calgary-corpus.bb | 27 ++- .../canterbury-corpus/canterbury-corpus.bb | 25 ++- .../xorg-driver/xf86-video-ast_0.98.0.bb | 12 ++ conf/machine/include/meta-intel.inc | 2 + .../conf/machine/crystalforest-gladden.conf | 1 - .../conf/machine/crystalforest-server.conf | 1 - .../recipes-kernel/linux/linux-yocto_3.10.bbappend | 25 +++ .../linux/linux-yocto-rt_3.10.bbappend | 12 ++ .../recipes-kernel/linux/linux-yocto_3.10.bbappend | 12 ++ meta-isg/conf/layer.conf | 10 + .../recipes-kernel/linux/linux-yocto_3.10.bbappend | 9 + meta-isg/meta-mohonpeak/COPYING.MIT | 17 ++ meta-isg/meta-mohonpeak/README | 146 +++++++++++++ meta-isg/meta-mohonpeak/README.sources | 18 ++ meta-isg/meta-mohonpeak/conf/layer.conf | 12 ++ .../meta-mohonpeak/conf/machine/mohonpeak32.conf | 21 ++ .../meta-mohonpeak/conf/machine/mohonpeak64.conf | 21 ++ .../formfactor/formfactor/mohonpeak32/machconfig | 3 + .../formfactor/formfactor/mohonpeak64/machconfig | 3 + .../recipes-bsp/formfactor/formfactor_0.0.bbappend | 1 + .../recipes-kernel/linux/linux-yocto_3.10.bbappend | 23 +++ meta-isg/meta-valleyisland/COPYING.MIT | 17 ++ meta-isg/meta-valleyisland/README | 218 ++++++++++++++++++++ meta-isg/meta-valleyisland/README.sources | 18 ++ meta-isg/meta-valleyisland/conf/layer.conf | 14 ++ .../conf/machine/valleyisland-32.conf | 22 ++ .../conf/machine/valleyisland-64.conf | 24 +++ .../formfactor/valleyisland-32/machconfig | 3 + .../formfactor/valleyisland-64/machconfig | 3 + .../recipes-bsp/formfactor/formfactor_0.0.bbappend | 1 + .../linux/linux-yocto-rt_3.10.bbappend | 27 +++ .../recipes-kernel/linux/linux-yocto_3.10.bbappend | 27 +++ meta-romley/conf/machine/romley-ivb.conf | 3 +- meta-romley/conf/machine/romley.conf | 3 +- .../recipes-kernel/linux/linux-yocto_3.10.bbappend | 25 +++ 35 files changed, 797 insertions(+), 9 deletions(-) create mode 100644 common/recipes-graphics/xorg-driver/xf86-video-ast_0.98.0.bb create mode 100644 meta-crystalforest/recipes-kernel/linux/linux-yocto_3.10.bbappend create mode 100644 meta-isg/common/recipes-kernel/linux/linux-yocto-rt_3.10.bbappend create mode 100644 meta-isg/common/recipes-kernel/linux/linux-yocto_3.10.bbappend create mode 100644 meta-isg/conf/layer.conf create mode 100644 meta-isg/meta-haswell-wc/recipes-kernel/linux/linux-yocto_3.10.bbappend create mode 100644 meta-isg/meta-mohonpeak/COPYING.MIT create mode 100644 meta-isg/meta-mohonpeak/README create mode 100644 meta-isg/meta-mohonpeak/README.sources create mode 100644 meta-isg/meta-mohonpeak/conf/layer.conf create mode 100644 meta-isg/meta-mohonpeak/conf/machine/mohonpeak32.conf create mode 100644 meta-isg/meta-mohonpeak/conf/machine/mohonpeak64.conf create mode 100644 meta-isg/meta-mohonpeak/recipes-bsp/formfactor/formfactor/mohonpeak32/machconfig create mode 100644 meta-isg/meta-mohonpeak/recipes-bsp/formfactor/formfactor/mohonpeak64/machconfig create mode 100644 meta-isg/meta-mohonpeak/recipes-bsp/formfactor/formfactor_0.0.bbappend create mode 100644 meta-isg/meta-mohonpeak/recipes-kernel/linux/linux-yocto_3.10.bbappend create mode 100644 meta-isg/meta-valleyisland/COPYING.MIT create mode 100644 meta-isg/meta-valleyisland/README create mode 100644 meta-isg/meta-valleyisland/README.sources create mode 100644 meta-isg/meta-valleyisland/conf/layer.conf create mode 100644 meta-isg/meta-valleyisland/conf/machine/valleyisland-32.conf create mode 100644 meta-isg/meta-valleyisland/conf/machine/valleyisland-64.conf create mode 100644 meta-isg/meta-valleyisland/recipes-bsp/formfactor/formfactor/valleyisland-32/machconfig create mode 100644 meta-isg/meta-valleyisland/recipes-bsp/formfactor/formfactor/valleyisland-64/machconfig create mode 100644 meta-isg/meta-valleyisland/recipes-bsp/formfactor/formfactor_0.0.bbappend create mode 100644 meta-isg/meta-valleyisland/recipes-kernel/linux/linux-yocto-rt_3.10.bbappend create mode 100644 meta-isg/meta-valleyisland/recipes-kernel/linux/linux-yocto_3.10.bbappend create mode 100644 meta-romley/recipes-kernel/linux/linux-yocto_3.10.bbappend -- 1.7.10.4 -- _______________________________________________ meta-intel mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-intel
