* [PATCH 0/1] pseudo update to 1.4.1
@ 2012-09-13 18:29 Peter Seebach
2012-09-13 18:29 ` [PATCH 1/1] pseudo_1.4.1.bb: update to pseudo 1.4.1, fixing 32-bit host problems Peter Seebach
2012-09-14 15:56 ` [PATCH 0/1] pseudo update to 1.4.1 Saul Wold
0 siblings, 2 replies; 4+ messages in thread
From: Peter Seebach @ 2012-09-13 18:29 UTC (permalink / raw)
To: openembedded-core
The patches here are trivial. The upstream fixes are pretty
non-trivial, but have been used moderately extensively on a handful
of hosts, and appear to work. Long story short, pseudo could cause
rm to fail on files >2GB on 32-bit hosts which didn't use a 64-bit
off_t. Fixing this required addressing a surprising number of
assumptions, but it appears to work now.
The following changes since commit 835654994574c158d6324218ebe000bd2ef9a792:
Darren Hart (1):
rt: Add hwlatdetect to rt images
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib seebs/pseudo141
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=seebs/pseudo141
Peter Seebach (1):
pseudo_1.4.1.bb: update to pseudo 1.4.1, fixing 32-bit host problems
meta/recipes-devtools/pseudo/pseudo_1.4.1.bb | 8 ++++++++
meta/recipes-devtools/pseudo/pseudo_1.4.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.4.1.bb
delete mode 100644 meta/recipes-devtools/pseudo/pseudo_1.4.bb
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] pseudo_1.4.1.bb: update to pseudo 1.4.1, fixing 32-bit host problems
2012-09-13 18:29 [PATCH 0/1] pseudo update to 1.4.1 Peter Seebach
@ 2012-09-13 18:29 ` Peter Seebach
2012-09-13 18:30 ` Andrei Gherzan
2012-09-14 15:56 ` [PATCH 0/1] pseudo update to 1.4.1 Saul Wold
1 sibling, 1 reply; 4+ messages in thread
From: Peter Seebach @ 2012-09-13 18:29 UTC (permalink / raw)
To: openembedded-core
There were a number of cases where pseudo used plain old stat()
to get dev/inode data for files; on 32-bit hosts, this could fail
if the files were over 2GB, causing pseudo to prevent removing of
large files. This is fixed in 1.4.1.
Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
---
meta/recipes-devtools/pseudo/pseudo_1.4.1.bb | 8 ++++++++
meta/recipes-devtools/pseudo/pseudo_1.4.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.4.1.bb
delete mode 100644 meta/recipes-devtools/pseudo/pseudo_1.4.bb
diff --git a/meta/recipes-devtools/pseudo/pseudo_1.4.1.bb b/meta/recipes-devtools/pseudo/pseudo_1.4.1.bb
new file mode 100644
index 0000000..70fe9c0
--- /dev/null
+++ b/meta/recipes-devtools/pseudo/pseudo_1.4.1.bb
@@ -0,0 +1,8 @@
+require pseudo.inc
+
+PR = "r13"
+
+SRC_URI = "http://www.yoctoproject.org/downloads/${BPN}/${BPN}-${PV}.tar.bz2"
+
+SRC_URI[md5sum] = "b49bb87c7e1de33f37fea479ddb99dca"
+SRC_URI[sha256sum] = "ae4bfba2bd1e3954ea8f83bf06571ee4958bf7623e4fa897056281dddfe6446d"
diff --git a/meta/recipes-devtools/pseudo/pseudo_1.4.bb b/meta/recipes-devtools/pseudo/pseudo_1.4.bb
deleted file mode 100644
index e1e1f6f..0000000
--- a/meta/recipes-devtools/pseudo/pseudo_1.4.bb
+++ /dev/null
@@ -1,8 +0,0 @@
-require pseudo.inc
-
-PR = "r12"
-
-SRC_URI = "http://www.yoctoproject.org/downloads/${BPN}/${BPN}-${PV}.tar.bz2"
-
-SRC_URI[md5sum] = "bc04c6c9d13cfdb789ffc2f3cca9ab08"
-SRC_URI[sha256sum] = "147fa7b177061a145d330b9e159529a185be94550f123c6acb0d3b75d480c5b4"
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb
index 27ae4b2..e394ffb 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 = "9b792e4cb91bc22374f47d0b0902dbc4ecd7d6dd"
-PV = "1.4+git${SRCPV}"
-PR = "r27"
+SRCREV = "398a264490713c912b4ce465251a8a82a7905f45"
+PV = "1.4.1+git${SRCPV}"
+PR = "r28"
DEFAULT_PREFERENCE = "-1"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] pseudo_1.4.1.bb: update to pseudo 1.4.1, fixing 32-bit host problems
2012-09-13 18:29 ` [PATCH 1/1] pseudo_1.4.1.bb: update to pseudo 1.4.1, fixing 32-bit host problems Peter Seebach
@ 2012-09-13 18:30 ` Andrei Gherzan
0 siblings, 0 replies; 4+ messages in thread
From: Andrei Gherzan @ 2012-09-13 18:30 UTC (permalink / raw)
To: Peter Seebach; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 2629 bytes --]
Ack
On Thu, Sep 13, 2012 at 9:29 PM, Peter Seebach
<peter.seebach@windriver.com>wrote:
> There were a number of cases where pseudo used plain old stat()
> to get dev/inode data for files; on 32-bit hosts, this could fail
> if the files were over 2GB, causing pseudo to prevent removing of
> large files. This is fixed in 1.4.1.
>
> Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
> ---
> meta/recipes-devtools/pseudo/pseudo_1.4.1.bb | 8 ++++++++
> meta/recipes-devtools/pseudo/pseudo_1.4.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.4.1.bb
> delete mode 100644 meta/recipes-devtools/pseudo/pseudo_1.4.bb
>
> diff --git a/meta/recipes-devtools/pseudo/pseudo_1.4.1.bbb/meta/recipes-devtools/pseudo/
> pseudo_1.4.1.bb
> new file mode 100644
> index 0000000..70fe9c0
> --- /dev/null
> +++ b/meta/recipes-devtools/pseudo/pseudo_1.4.1.bb
> @@ -0,0 +1,8 @@
> +require pseudo.inc
> +
> +PR = "r13"
> +
> +SRC_URI = "
> http://www.yoctoproject.org/downloads/${BPN}/${BPN}-${PV}.tar.bz2"
> +
> +SRC_URI[md5sum] = "b49bb87c7e1de33f37fea479ddb99dca"
> +SRC_URI[sha256sum] =
> "ae4bfba2bd1e3954ea8f83bf06571ee4958bf7623e4fa897056281dddfe6446d"
> diff --git a/meta/recipes-devtools/pseudo/pseudo_1.4.bbb/meta/recipes-devtools/pseudo/
> pseudo_1.4.bb
> deleted file mode 100644
> index e1e1f6f..0000000
> --- a/meta/recipes-devtools/pseudo/pseudo_1.4.bb
> +++ /dev/null
> @@ -1,8 +0,0 @@
> -require pseudo.inc
> -
> -PR = "r12"
> -
> -SRC_URI = "
> http://www.yoctoproject.org/downloads/${BPN}/${BPN}-${PV}.tar.bz2"
> -
> -SRC_URI[md5sum] = "bc04c6c9d13cfdb789ffc2f3cca9ab08"
> -SRC_URI[sha256sum] =
> "147fa7b177061a145d330b9e159529a185be94550f123c6acb0d3b75d480c5b4"
> diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bbb/meta/recipes-devtools/pseudo/
> pseudo_git.bb
> index 27ae4b2..e394ffb 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 = "9b792e4cb91bc22374f47d0b0902dbc4ecd7d6dd"
> -PV = "1.4+git${SRCPV}"
> -PR = "r27"
> +SRCREV = "398a264490713c912b4ce465251a8a82a7905f45"
> +PV = "1.4.1+git${SRCPV}"
> +PR = "r28"
>
> DEFAULT_PREFERENCE = "-1"
>
> --
> 1.7.0.4
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
[-- Attachment #2: Type: text/html, Size: 4387 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/1] pseudo update to 1.4.1
2012-09-13 18:29 [PATCH 0/1] pseudo update to 1.4.1 Peter Seebach
2012-09-13 18:29 ` [PATCH 1/1] pseudo_1.4.1.bb: update to pseudo 1.4.1, fixing 32-bit host problems Peter Seebach
@ 2012-09-14 15:56 ` Saul Wold
1 sibling, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-09-14 15:56 UTC (permalink / raw)
To: Peter Seebach; +Cc: openembedded-core
On 09/13/2012 11:29 AM, Peter Seebach wrote:
> The patches here are trivial. The upstream fixes are pretty
> non-trivial, but have been used moderately extensively on a handful
> of hosts, and appear to work. Long story short, pseudo could cause
> rm to fail on files >2GB on 32-bit hosts which didn't use a 64-bit
> off_t. Fixing this required addressing a surprising number of
> assumptions, but it appears to work now.
>
> The following changes since commit 835654994574c158d6324218ebe000bd2ef9a792:
> Darren Hart (1):
> rt: Add hwlatdetect to rt images
>
> are available in the git repository at:
>
> git://git.yoctoproject.org/poky-contrib seebs/pseudo141
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=seebs/pseudo141
>
> Peter Seebach (1):
> pseudo_1.4.1.bb: update to pseudo 1.4.1, fixing 32-bit host problems
>
> meta/recipes-devtools/pseudo/pseudo_1.4.1.bb | 8 ++++++++
> meta/recipes-devtools/pseudo/pseudo_1.4.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.4.1.bb
> delete mode 100644 meta/recipes-devtools/pseudo/pseudo_1.4.bb
>
Merged into OE-Core
Thanks
Sau!
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-09-14 16:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-13 18:29 [PATCH 0/1] pseudo update to 1.4.1 Peter Seebach
2012-09-13 18:29 ` [PATCH 1/1] pseudo_1.4.1.bb: update to pseudo 1.4.1, fixing 32-bit host problems Peter Seebach
2012-09-13 18:30 ` Andrei Gherzan
2012-09-14 15:56 ` [PATCH 0/1] pseudo update to 1.4.1 Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox