Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/5] yocto-bsp: Update templates to 4.1 kernel
@ 2015-09-30  5:38 leonardo.sandoval.gonzalez
  2015-09-30  5:38 ` [PATCH 1/5] scripts/yocto-bsp: Exit successfully when asking for help leonardo.sandoval.gonzalez
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: leonardo.sandoval.gonzalez @ 2015-09-30  5:38 UTC (permalink / raw)
  To: openembedded-core

From: Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com>

Besides updating the templates to 4.1 kernel, there are a few changes done in
the yocto-bsp script. More info can be found on each patch's description.

The following changes since commit f78f90240a3041be426c6ba9085849352164ee8b:

  bitbake: prserv/serv.py: Better messaging when starting/stopping the server with port=0 (2015-09-28 12:00:33 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib lsandov1/yocto-bsp
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=lsandov1/yocto-bsp

Leonardo Sandoval (5):
  scripts/yocto-bsp: Exit successfully when asking for help
  scrips/lib/bsp/engine: List properties to stdout when output parameter
    is omitted
  yocto-bsp: Update templates to 4.1 kernel
  scripts/lib/bsp/engine: Indent the karch properties when stored into a
    file
  lib/oeqa/selftest/yoctobsp: Basic tests for yocto-bsp script

 meta/lib/oeqa/selftest/yoctobsp.py                 | 39 ++++++++++++++
 scripts/lib/bsp/engine.py                          |  6 +--
 .../arm/recipes-kernel/linux/kernel-list.noinstall |  4 +-
 .../linux/linux-yocto-tiny_4.1.bbappend            | 33 ++++++++++++
 .../recipes-kernel/linux/linux-yocto_4.1.bbapend   | 33 ++++++++++++
 .../target/arch/i386/conf/machine/machine.conf     |  4 +-
 .../recipes-kernel/linux/kernel-list.noinstall     |  4 +-
 .../linux/linux-yocto-tiny_4.1.bbappend            | 33 ++++++++++++
 .../recipes-kernel/linux/linux-yocto_4.1.bbappend  | 33 ++++++++++++
 .../recipes-kernel/linux/kernel-list.noinstall     |  4 +-
 .../linux/linux-yocto-tiny_4.1.bbappend            | 33 ++++++++++++
 .../recipes-kernel/linux/linux-yocto_4.1.bbappend  | 33 ++++++++++++
 .../recipes-kernel/linux/kernel-list.noinstall     |  4 +-
 .../linux/linux-yocto-tiny_4.1.bbappend            | 33 ++++++++++++
 .../recipes-kernel/linux/linux-yocto_4.1.bbappend  | 33 ++++++++++++
 .../target/arch/powerpc/conf/machine/machine.conf  |  2 +-
 .../recipes-kernel/linux/kernel-list.noinstall     |  4 +-
 .../linux/linux-yocto-tiny_4.1.bbappend            | 33 ++++++++++++
 .../recipes-kernel/linux/linux-yocto_4.1.bbappend  | 33 ++++++++++++
 .../recipes-kernel/linux/kernel-list.noinstall     |  4 +-
 .../linux/linux-yocto-tiny_4.1.bbappend            | 62 ++++++++++++++++++++++
 .../recipes-kernel/linux/linux-yocto_4.1.bbappend  | 62 ++++++++++++++++++++++
 .../linux/linux-yocto-tiny_4.1.bbappend            | 33 ++++++++++++
 .../recipes-kernel/linux/linux-yocto_4.1.bbappend  | 33 ++++++++++++
 scripts/yocto-bsp                                  |  2 +-
 25 files changed, 578 insertions(+), 19 deletions(-)
 create mode 100644 meta/lib/oeqa/selftest/yoctobsp.py
 create mode 100644 scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/linux-yocto-tiny_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/arm/recipes-kernel/linux/linux-yocto_4.1.bbapend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/linux-yocto-tiny_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/i386/recipes-kernel/linux/linux-yocto_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/linux-yocto-tiny_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/mips/recipes-kernel/linux/linux-yocto_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/mips64/recipes-kernel/linux/linux-yocto-tiny_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/mips64/recipes-kernel/linux/linux-yocto_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/linux-yocto-tiny_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/powerpc/recipes-kernel/linux/linux-yocto_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/linux-yocto-tiny_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/qemu/recipes-kernel/linux/linux-yocto_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/linux-yocto-tiny_4.1.bbappend
 create mode 100644 scripts/lib/bsp/substrate/target/arch/x86_64/recipes-kernel/linux/linux-yocto_4.1.bbappend

-- 
1.8.4.5



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-09-30 13:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-30  5:38 [PATCH 0/5] yocto-bsp: Update templates to 4.1 kernel leonardo.sandoval.gonzalez
2015-09-30  5:38 ` [PATCH 1/5] scripts/yocto-bsp: Exit successfully when asking for help leonardo.sandoval.gonzalez
2015-09-30  5:38 ` [PATCH 2/5] scrips/lib/bsp/engine: List properties to stdout when output parameter is omitted leonardo.sandoval.gonzalez
2015-09-30  5:38 ` [PATCH 3/5] yocto-bsp: Update templates to 4.1 kernel leonardo.sandoval.gonzalez
2015-09-30  5:38 ` [PATCH 4/5] scripts/lib/bsp/engine: Indent the karch properties when stored into a file leonardo.sandoval.gonzalez
2015-09-30  5:38 ` [PATCH 5/5] lib/oeqa/selftest/yoctobsp: Basic tests for yocto-bsp script leonardo.sandoval.gonzalez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox