On Fri, 2014-03-21 at 01:55 +0800, rebecca.swee.fun.ch...@intel.com wrote: > From: Chang Rebecca Swee Fun <rebecca.swee.fun.ch...@intel.com> > > Hi all, > > This is a pull request for meta-valleyisland supporting linux-yocto-3.10 > on Dora branch. > > In this patch series, a meta-valleyisland layer will be added into > meta-intel Dora branch. > > The kernel recipe is able to support basic drivers which essential to > boot up sequence. For example, SATA, USB, GbE, and UART. The graphics > driver support in this bsp is Intel i915 graphics driver. > > The LPSS I/O device drivers are available only in ACPI mode. This is > due the PCI related code base are still under development. PCI mode > LPSS I/O devices will be hosted in a feature branch in linux-yocto-3.10 > in near future. > > Please pull this patch series into meta-intel Dora branch. >
Hi Rebecca, I'm seeing a build failure with this patchset: trz@elmorro:/usr/local/src/yocto/dora-test/build$ bitbake core-image-satoLoading cache: 100% |###############################################| ETA: 00:00:00 Loaded 1208 entries from dependency cache. NOTE: Resolving any missing task queue dependencies Build Configuration: BB_VERSION = "1.20.0" BUILD_SYS = "x86_64-linux" NATIVELSBSTRING = "Ubuntu-12.04" TARGET_SYS = "i586-poky-linux" MACHINE = "valleyisland-32" DISTRO = "poky" DISTRO_VERSION = "1.5.1" TUNE_FEATURES = "m32 core2" TARGET_FPU = "" meta meta-yocto meta-yocto-bsp = "dora1:023c35795ff8edd79bb27848a01dd49239f052d4" meta-intel meta-valleyisland = "dora2:5e1b84083097e0a1e38ae70a53d48b87d9c099b4" NOTE: Preparing runqueue NOTE: Executing SetScene Tasks NOTE: Executing RunQueue Tasks ERROR: Function failed: do_patch (log file is located at /usr/local/src/yocto/dora-test/build/tmp/work/valleyisland_32-poky-linux/linux-yocto/3.10.32+gitAUTOINC+6ad20f049a_c03195ed6e-r0/temp/log.do_patch.5267) ERROR: Logfile of failure stored in: /usr/local/src/yocto/dora-test/build/tmp/work/valleyisland_32-poky-linux/linux-yocto/3.10.32+gitAUTOINC+6ad20f049a_c03195ed6e-r0/temp/log.do_patch.5267 Log data follows: | DEBUG: Executing shell function do_patch | Branch meta-temp set up to track remote branch meta from origin. | Deleted branch meta-temp (was f58e62b). | WARNING: addon feature "features/valleyisland-io/valleyisland-io" was not found | ERROR: required features were not found. aborting | ERROR. Could not update standard/base | WARNING: /usr/local/src/yocto/dora-test/build/tmp/work/valleyisland_32-poky-linux/linux-yocto/3.10.32+gitAUTOINC+6ad20f049a_c03195ed6e-r0/temp/run.do_patch.5267:1 exit 1 from | exit 1 | ERROR: Function failed: do_patch (log file is located at /usr/local/src/yocto/dora-test/build/tmp/work/valleyisland_32-poky-linux/linux-yocto/3.10.32+gitAUTOINC+6ad20f049a_c03195ed6e-r0/temp/log.do_patch.5267) ERROR: Task 85 (/usr/local/src/yocto/dora-test/meta/recipes-kernel/linux/linux-yocto_3.10.bb, do_patch) failed with exit code '1' NOTE: Tasks Summary: Attempted 1873 tasks of which 1105 didn't need to be rerun and 1 failed. Waiting for 0 running tasks to finish: Summary: 1 task failed: /usr/local/src/yocto/dora-test/meta/recipes-kernel/linux/linux-yocto_3.10.bb, do_patch Summary: There was 1 ERROR message shown, returning a non-zero exit code. > Thanks. > > Rebecca > > The following changes since commit 99d1f2f61feb5b338d659babe32ad4ae89e9bf3b: > > meta-crystalforest: update linux-yocto_3.10 SRCREV and README (2014-03-12 > 15:18:18 -0500) > > are available in the git repository at: > > git://git.yoctoproject.org/meta-intel-contrib > rebeccas/meta-valleyisland-dora-dev > > http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=rebeccas/meta-valleyisland-dora-dev > > Chang Rebecca Swee Fun (5): > meta-valleyisland: add new BSP layer for Intel Atom Processor E38XX > meta-valleyisland: provide machine configuration for valleyisland > meta-valleyisland: provide a formfactor for valleyisland > meta-valleyisland: add kernel recipe for valleyisland > meta-isg: update MAINTAINER file > > meta-isg/MAINTAINERS | 4 + > 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 | 20 ++ > .../conf/machine/valleyisland-64.conf | 22 ++ > .../formfactor/valleyisland-32/machconfig | 3 + > .../formfactor/valleyisland-64/machconfig | 3 + > .../recipes-bsp/formfactor/formfactor_0.0.bbappend | 1 + > .../recipes-kernel/linux/linux-yocto_3.10.bbappend | 27 +++ > 11 files changed, 347 insertions(+) > 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_3.10.bbappend > > -- > 1.7.10.4 > -- _______________________________________________ meta-intel mailing list meta-intel@yoctoproject.org https://lists.yoctoproject.org/listinfo/meta-intel