Openembedded Core Discussions
 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 ***
@ 2024-11-22 13:31 Kareem Ibrahim
  0 siblings, 0 replies; 4+ messages in thread
From: Kareem Ibrahim @ 2024-11-22 13:31 UTC (permalink / raw)
  To: openembedded-core; +Cc: Kareem Ibrahim

This is a fix for network error "Could not resolve hostname" error in recipes inheriting cargo that needs remote crates

Kareem Ibrahim (1):
  Added a new cargo-online bbclass for recipes requiring remote crates

 meta/classes/cargo-online.bbclass | 7 +++++++
 1 file changed, 7 insertions(+)
 create mode 100644 meta/classes/cargo-online.bbclass

-- 
2.25.1



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

end of thread, other threads:[~2024-11-22 13:31 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 --
2024-11-22 13:31 [PATCH 0/1] *** SUBJECT HERE *** Kareem Ibrahim

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