All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] *** SUBJECT HERE ***
@ 2012-07-04  1:37 Peter Seebach
  2012-07-04  1:37 ` [PATCH 1/1] pseudo: Update to 1.3.1 (fixing chroot crash) Peter Seebach
  2012-07-09 16:51 ` [PATCH 0/1] *** SUBJECT HERE *** (huh?) Saul Wold
  0 siblings, 2 replies; 4+ messages in thread
From: Peter Seebach @ 2012-07-04  1:37 UTC (permalink / raw)
  To: openembedded-core

Robert Yang identified a crash with chroot in long directories,
which was a logic bug in the allocate-and-copy logic when
expanding paths inside a base path. Fixed in upstream pseudo,
along with a couple of other minor tweaks, since the crash is
blocking other work we should probably update.

The following changes since commit a6b6df1350149c116050cb93c3c7b4802c709d31:
  Lianhao Lu (1):
        task-core-tools-debug: Added openssh-sftp-server.

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib seebs/pseudo
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=seebs/pseudo

Peter Seebach (1):
  pseudo: Update to 1.3.1 (fixing chroot crash)

 meta/recipes-devtools/pseudo/pseudo_1.3.1.bb |    8 ++++++++
 meta/recipes-devtools/pseudo/pseudo_1.3.bb   |    8 --------
 meta/recipes-devtools/pseudo/pseudo_git.bb   |    6 +++---
 3 files changed, 11 insertions(+), 11 deletions(-)
 create mode 100644 meta/recipes-devtools/pseudo/pseudo_1.3.1.bb
 delete mode 100644 meta/recipes-devtools/pseudo/pseudo_1.3.bb




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

* [PATCH 1/1] pseudo: Update to 1.3.1 (fixing chroot crash)
  2012-07-04  1:37 [PATCH 0/1] *** SUBJECT HERE *** Peter Seebach
@ 2012-07-04  1:37 ` Peter Seebach
  2012-07-09 16:51 ` [PATCH 0/1] *** SUBJECT HERE *** (huh?) Saul Wold
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Seebach @ 2012-07-04  1:37 UTC (permalink / raw)
  To: openembedded-core

Yocto bug #2639.  If a chroot path was long, expanding absolute
paths within the chroot path could overrun a buffer.

Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
---
 meta/recipes-devtools/pseudo/pseudo_1.3.1.bb |    8 ++++++++
 meta/recipes-devtools/pseudo/pseudo_1.3.bb   |    8 --------
 meta/recipes-devtools/pseudo/pseudo_git.bb   |    6 +++---
 3 files changed, 11 insertions(+), 11 deletions(-)
 create mode 100644 meta/recipes-devtools/pseudo/pseudo_1.3.1.bb
 delete mode 100644 meta/recipes-devtools/pseudo/pseudo_1.3.bb

diff --git a/meta/recipes-devtools/pseudo/pseudo_1.3.1.bb b/meta/recipes-devtools/pseudo/pseudo_1.3.1.bb
new file mode 100644
index 0000000..d7fb276
--- /dev/null
+++ b/meta/recipes-devtools/pseudo/pseudo_1.3.1.bb
@@ -0,0 +1,8 @@
+require pseudo.inc
+
+PR = "r11"
+
+SRC_URI = "http://www.yoctoproject.org/downloads/${BPN}/${BPN}-${PV}.tar.bz2"
+
+SRC_URI[md5sum] = "5a78a568d0f79d36bf476518b05524a9"
+SRC_URI[sha256sum] = "9dc48c98583021e6297965746a93bdf7e1fdaad1d5776360c1a0f970f55a0974"
diff --git a/meta/recipes-devtools/pseudo/pseudo_1.3.bb b/meta/recipes-devtools/pseudo/pseudo_1.3.bb
deleted file mode 100644
index 187b46d..0000000
--- a/meta/recipes-devtools/pseudo/pseudo_1.3.bb
+++ /dev/null
@@ -1,8 +0,0 @@
-require pseudo.inc
-
-PR = "r10"
-
-SRC_URI = "http://www.yoctoproject.org/downloads/${BPN}/${BPN}-${PV}.tar.bz2"
-
-SRC_URI[md5sum] = "5832bb70e6dce1a17b9b33a9c5c4b923"
-SRC_URI[sha256sum] = "2f30e2e9ec966cec3a321fc2ed80408ee77ad6c0cd73aaf36f88b98e008f8508"
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb
index 1852fab..2f58072 100644
--- a/meta/recipes-devtools/pseudo/pseudo_git.bb
+++ b/meta/recipes-devtools/pseudo/pseudo_git.bb
@@ -1,8 +1,8 @@
 require pseudo.inc
 
-SRCREV = "f0375c9aaefbccfd41aebbf6d332bb4d9e8f980c"
-PV = "1.3+git${SRCPV}"
-PR = "r25"
+SRCREV = "2e0189ba5368b1e88d509d0ab82bccb15cfb3653"
+PV = "1.3.1+git${SRCPV}"
+PR = "r26"
 
 DEFAULT_PREFERENCE = "-1"
 
-- 
1.7.0.4




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

* Re: [PATCH 0/1] *** SUBJECT HERE *** (huh?)
  2012-07-04  1:37 [PATCH 0/1] *** SUBJECT HERE *** Peter Seebach
  2012-07-04  1:37 ` [PATCH 1/1] pseudo: Update to 1.3.1 (fixing chroot crash) Peter Seebach
@ 2012-07-09 16:51 ` Saul Wold
  1 sibling, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-07-09 16:51 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 07/03/2012 06:37 PM, Peter Seebach wrote:
> Robert Yang identified a crash with chroot in long directories,
> which was a logic bug in the allocate-and-copy logic when
> expanding paths inside a base path. Fixed in upstream pseudo,
> along with a couple of other minor tweaks, since the crash is
> blocking other work we should probably update.
>
> The following changes since commit a6b6df1350149c116050cb93c3c7b4802c709d31:
>    Lianhao Lu (1):
>          task-core-tools-debug: Added openssh-sftp-server.
>
> are available in the git repository at:
>
>    git://git.yoctoproject.org/poky-contrib seebs/pseudo
>    http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=seebs/pseudo
>
> Peter Seebach (1):
>    pseudo: Update to 1.3.1 (fixing chroot crash)
>
>   meta/recipes-devtools/pseudo/pseudo_1.3.1.bb |    8 ++++++++
>   meta/recipes-devtools/pseudo/pseudo_1.3.bb   |    8 --------
>   meta/recipes-devtools/pseudo/pseudo_git.bb   |    6 +++---
>   3 files changed, 11 insertions(+), 11 deletions(-)
>   create mode 100644 meta/recipes-devtools/pseudo/pseudo_1.3.1.bb
>   delete mode 100644 meta/recipes-devtools/pseudo/pseudo_1.3.bb
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>

Merged into OE-Core

Thanks
	Sau!



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

* [PATCH 0/1] *** SUBJECT HERE ***
@ 2009-04-23 13:10 Peter 'p2' De Schrijver
  0 siblings, 0 replies; 4+ messages in thread
From: Peter 'p2' De Schrijver @ 2009-04-23 13:10 UTC (permalink / raw)
  To: linux-kernel, dbrownell; +Cc: Peter 'p2' De Schrijver

*** BLURB HERE ***

Peter 'p2' De Schrijver (1):
  Activate VDD1, VDD2 and VPLL1 at startup

 drivers/regulator/twl4030-regulator.c |   18 +++++++++++++++++-
 1 files changed, 17 insertions(+), 1 deletions(-)


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

end of thread, other threads:[~2012-07-09 17:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-04  1:37 [PATCH 0/1] *** SUBJECT HERE *** Peter Seebach
2012-07-04  1:37 ` [PATCH 1/1] pseudo: Update to 1.3.1 (fixing chroot crash) Peter Seebach
2012-07-09 16:51 ` [PATCH 0/1] *** SUBJECT HERE *** (huh?) Saul Wold
  -- strict thread matches above, loose matches on Subject: below --
2009-04-23 13:10 [PATCH 0/1] *** SUBJECT HERE *** Peter 'p2' De Schrijver

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.