diff options
author | Peter Seebach <peter.seebach@windriver.com> | 2015-09-22 17:59:10 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-24 17:54:23 +0100 |
commit | 42dc9024d8e659c64d21dbf8032a6e527b184343 (patch) | |
tree | aa6404e9cdf90b4b658de1c5b8972613a323020a | |
parent | 9f66aa1a11b5b45280aa41bf4517ec56ee5f2ab2 (diff) | |
download | poky-42dc9024d8e659c64d21dbf8032a6e527b184343.tar.gz |
pseudo_1.7.4.bb: fix f*open()
The 0600 modes were coming from fopen/freopen/etc., because those
don't specify a filesystem mode (just an access mode like "r" or
"w"). Use 0666 & ~umask. (And then the PSEUDO_FS_MODE macro masks
in the 0600 bits we want to be sure are present.)
(From OE-Core rev: fb6623e7b9f97dcd6749e441185e4183b9953171)
Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/pseudo/pseudo_1.7.4.bb (renamed from meta/recipes-devtools/pseudo/pseudo_1.7.3.bb) | 4 | ||||
-rw-r--r-- | meta/recipes-devtools/pseudo/pseudo_git.bb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/pseudo/pseudo_1.7.3.bb b/meta/recipes-devtools/pseudo/pseudo_1.7.4.bb index 1e9ef3bb98..d68e0af7d5 100644 --- a/meta/recipes-devtools/pseudo/pseudo_1.7.3.bb +++ b/meta/recipes-devtools/pseudo/pseudo_1.7.4.bb | |||
@@ -6,8 +6,8 @@ SRC_URI = " \ | |||
6 | file://fallback-group \ | 6 | file://fallback-group \ |
7 | " | 7 | " |
8 | 8 | ||
9 | SRC_URI[md5sum] = "2bd0a44eadd4713e90ad8c152eea77aa" | 9 | SRC_URI[md5sum] = "6e4b59a346d08d4a29133c335ea12052" |
10 | SRC_URI[sha256sum] = "e9fc3922f8feb97839b50d14eb1987afdc8f22cdcac93119323cccd5f8444652" | 10 | SRC_URI[sha256sum] = "f33ff84da328f943155f22cfd49030ef4ad85ad35fc2d9419a203521b65c384c" |
11 | 11 | ||
12 | PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback" | 12 | PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback" |
13 | 13 | ||
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb index 31e1223a48..eb666c064d 100644 --- a/meta/recipes-devtools/pseudo/pseudo_git.bb +++ b/meta/recipes-devtools/pseudo/pseudo_git.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | require pseudo.inc | 1 | require pseudo.inc |
2 | 2 | ||
3 | SRCREV = "e795df44a90a426a76b790f1b2774f3046a8fc31" | 3 | SRCREV = "3bc3909fa70535c2ef876009dc58e577b10a7e0e" |
4 | PV = "1.7.2+git${SRCPV}" | 4 | PV = "1.7.4+git${SRCPV}" |
5 | 5 | ||
6 | DEFAULT_PREFERENCE = "-1" | 6 | DEFAULT_PREFERENCE = "-1" |
7 | 7 | ||