All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] A couple of misc fixes
@ 2015-03-16 10:45 Paul Eggleton
  0 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2015-03-16 10:45 UTC (permalink / raw)
  To: openembedded-core

Two not-really-related fixes I made while working on devtool recently. The
oe-selftest patch adds a test that would have caught the regression that
occurred with wildcard support in bitbake-layers remove-layer.


The following changes since commit fb29441216435b9bae47ca9cd42db5a6b1fe77d8:

  oeqa/parselogs: Skip hda opcode errors (2015-03-12 12:49:22 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib paule/fixes3
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/fixes3

Paul Eggleton (2):
  waffle: drop unneeded setting of EXTRA_OECMAKE
  oe-selftest: improve bitbake-layers tests

 meta/lib/oeqa/selftest/bblayers.py           | 27 ++++++++++++++++++++++-----
 meta/recipes-graphics/waffle/waffle_1.3.0.bb |  3 ---
 2 files changed, 22 insertions(+), 8 deletions(-)

-- 
1.9.3



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

* [PATCH 0/2] A couple of misc fixes
@ 2015-08-20  8:18 Paul Eggleton
  2015-08-20  8:18 ` [PATCH 1/2] README.hardware: drop mention of binary-only drivers Paul Eggleton
  2015-08-20  8:18 ` [PATCH 2/2] yocto-bsp / yocto-layer: fix template recipes Paul Eggleton
  0 siblings, 2 replies; 5+ messages in thread
From: Paul Eggleton @ 2015-08-20  8:18 UTC (permalink / raw)
  To: poky

The following changes since commit 6b8bb442880ef18097e47761f4f3b6f555f2877c:

  genericx86*: Update BSPs to use 4.1 Kernel (2015-08-19 18:05:56 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib paule/meta-yocto-fixes
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=paule/meta-yocto-fixes

Paul Eggleton (2):
  README.hardware: drop mention of binary-only drivers
  yocto-bsp / yocto-layer: fix template recipes

 README.hardware                                                       | 4 +---
 .../target/arch/common/recipes-kernel/linux/linux-yocto-custom.bb     | 1 -
 .../target/arch/layer/recipes-example/example/example-recipe-0.1.bb   | 3 +--
 3 files changed, 2 insertions(+), 6 deletions(-)

-- 
2.1.0



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

* [PATCH 1/2] README.hardware: drop mention of binary-only drivers
  2015-08-20  8:18 [PATCH 0/2] A couple of misc fixes Paul Eggleton
@ 2015-08-20  8:18 ` Paul Eggleton
  2015-08-20  8:18 ` [PATCH 2/2] yocto-bsp / yocto-layer: fix template recipes Paul Eggleton
  1 sibling, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2015-08-20  8:18 UTC (permalink / raw)
  To: poky

EMGD isn't provided in meta-intel anymore, so there's no point telling
people to look there.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 README.hardware | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/README.hardware b/README.hardware
index 0a34b21..9c74c5d 100644
--- a/README.hardware
+++ b/README.hardware
@@ -105,9 +105,7 @@ Intel Atom platforms:
 
 and is likely to work on many unlisted Atom/Core/Xeon based devices. The MACHINE
 type supports ethernet, wifi, sound, and Intel/vesa graphics by default in
-addition to common PC input devices, busses, and so on.  Note that it does not
-included the binary-only graphic drivers used on some Atom platforms, for
-accelerated graphics on these machines please refer to meta-intel.
+addition to common PC input devices, busses, and so on.
 
 Depending on the device, it can boot from a traditional hard-disk, a USB device,
 or over the network. Writing generated images to physical media is
-- 
2.1.0



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

* [PATCH 2/2] yocto-bsp / yocto-layer: fix template recipes
  2015-08-20  8:18 [PATCH 0/2] A couple of misc fixes Paul Eggleton
  2015-08-20  8:18 ` [PATCH 1/2] README.hardware: drop mention of binary-only drivers Paul Eggleton
@ 2015-08-20  8:18 ` Paul Eggleton
  1 sibling, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2015-08-20  8:18 UTC (permalink / raw)
  To: poky

* Drop PR = "r0"
* Use SUMMARY instead of DESCRIPTION

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 .../target/arch/common/recipes-kernel/linux/linux-yocto-custom.bb      | 1 -
 .../target/arch/layer/recipes-example/example/example-recipe-0.1.bb    | 3 +--
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/scripts/lib/bsp/substrate/target/arch/common/recipes-kernel/linux/linux-yocto-custom.bb b/scripts/lib/bsp/substrate/target/arch/common/recipes-kernel/linux/linux-yocto-custom.bb
index 80a52e7c..fda955b 100644
--- a/scripts/lib/bsp/substrate/target/arch/common/recipes-kernel/linux/linux-yocto-custom.bb
+++ b/scripts/lib/bsp/substrate/target/arch/common/recipes-kernel/linux/linux-yocto-custom.bb
@@ -52,7 +52,6 @@ LINUX_VERSION_EXTENSION ?= "{{=custom_kernel_linux_version_extension}}"
 
 SRCREV="{{=custom_kernel_srcrev}}"
 
-PR = "r0"
 PV = "${LINUX_VERSION}+git${SRCPV}"
 
 COMPATIBLE_MACHINE_{{=machine}} = "{{=machine}}"
diff --git a/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb b/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb
index ba1ccb1..5fbf594 100644
--- a/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb
+++ b/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1.bb
@@ -4,11 +4,10 @@
 # Yocto Project Development Manual.
 #
 
-DESCRIPTION = "Simple helloworld application"
+SUMMARY = "Simple helloworld application"
 SECTION = "examples"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
-PR = "r0"
 
 SRC_URI = "file://helloworld.c"
 
-- 
2.1.0



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

* [PATCH 0/2] A couple of misc fixes
@ 2017-11-08  2:20 Paul Eggleton
  0 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2017-11-08  2:20 UTC (permalink / raw)
  To: bitbake-devel

A fix for a tinfoil issue as well as a typo.


The following changes since commit e1e8565b5e19dd3f7ef6e7e41932456adaa3df81:

  tests/fetch: Add ftp test url (2017-11-07 14:41:54 +0000)

are available in the git repository at:

  git://git.openembedded.org/bitbake-contrib paule/bb-fixes2
  http://cgit.openembedded.org/bitbake-contrib/log/?h=paule/bb-fixes2

Paul Eggleton (2):
  tinfoil: ensure get_recipe_info() returns Null if recipe not found
  cooker: fix typo in bitbake -g message

 lib/bb/cooker.py  |  2 +-
 lib/bb/tinfoil.py | 17 ++++++++++-------
 2 files changed, 11 insertions(+), 8 deletions(-)

-- 
2.9.5



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

end of thread, other threads:[~2017-11-08  2:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-20  8:18 [PATCH 0/2] A couple of misc fixes Paul Eggleton
2015-08-20  8:18 ` [PATCH 1/2] README.hardware: drop mention of binary-only drivers Paul Eggleton
2015-08-20  8:18 ` [PATCH 2/2] yocto-bsp / yocto-layer: fix template recipes Paul Eggleton
  -- strict thread matches above, loose matches on Subject: below --
2017-11-08  2:20 [PATCH 0/2] A couple of misc fixes Paul Eggleton
2015-03-16 10:45 Paul Eggleton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.