From c823e902fa2ba32cbff87c73d479d3b2e34b4645 Mon Sep 17 00:00:00 2001 From: Anton Gerasimov Date: Tue, 17 Jan 2017 10:31:53 +0100 Subject: Changes to pseudo have been merged into poky, this recipe is no more needed. Bug-AGL: SPEC-406 Change-Id: I5db0db2a31497c59550b8bd2d28e9df7f4317cfc Signed-off-by: Anton Gerasimov --- ...eck-for-existence-of-old-file-to-renameat.patch | 40 ---------------------- .../recipes-devtools/pseudo/files/fallback-group | 2 -- .../recipes-devtools/pseudo/files/fallback-passwd | 1 - meta-sota/recipes-devtools/pseudo/pseudo_1.8.1.bb | 20 ----------- 4 files changed, 63 deletions(-) delete mode 100644 meta-sota/recipes-devtools/pseudo/files/0001-Add-check-for-existence-of-old-file-to-renameat.patch delete mode 100644 meta-sota/recipes-devtools/pseudo/files/fallback-group delete mode 100644 meta-sota/recipes-devtools/pseudo/files/fallback-passwd delete mode 100644 meta-sota/recipes-devtools/pseudo/pseudo_1.8.1.bb diff --git a/meta-sota/recipes-devtools/pseudo/files/0001-Add-check-for-existence-of-old-file-to-renameat.patch b/meta-sota/recipes-devtools/pseudo/files/0001-Add-check-for-existence-of-old-file-to-renameat.patch deleted file mode 100644 index 3da2ad7..0000000 --- a/meta-sota/recipes-devtools/pseudo/files/0001-Add-check-for-existence-of-old-file-to-renameat.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 41bb6c818a7ec9eeb33b60302c55c9c5ee393c5f Mon Sep 17 00:00:00 2001 -From: Anton Gerasimov -Date: Fri, 30 Sep 2016 17:12:19 +0200 -Subject: [PATCH 1/1] Add check for existence of old file to renameat - ---- - ports/unix/guts/renameat.c | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -diff --git a/ports/unix/guts/renameat.c b/ports/unix/guts/renameat.c -index ade0509..d5e36fa 100644 ---- a/ports/unix/guts/renameat.c -+++ b/ports/unix/guts/renameat.c -@@ -11,6 +11,7 @@ - int oldrc, newrc; - int save_errno; - int old_db_entry = 0; -+ int may_unlinked = 0; - - pseudo_debug(PDBGF_FILE, "renameat: %d,%s->%d,%s\n", - olddirfd, oldpath ? oldpath : "", -@@ -44,10 +45,14 @@ - /* as with unlink, we have to mark that the file may get deleted */ - msg = pseudo_client_op(OP_MAY_UNLINK, 0, -1, newdirfd, newpath, newrc ? NULL : &newbuf); - if (msg && msg->result == RESULT_SUCCEED) -+ may_unlinked = 1; -+ msg = pseudo_client_op(OP_STAT, 0, -1, olddirfd, oldpath, oldrc ? NULL : &oldbuf); -+ if (msg && msg->result == RESULT_SUCCEED) - old_db_entry = 1; -+ - rc = real_renameat(olddirfd, oldpath, newdirfd, newpath); - save_errno = errno; -- if (old_db_entry) { -+ if (may_unlinked) { - if (rc == -1) { - /* since we failed, that wasn't really unlinked -- put - * it back. --- -2.9.3 - diff --git a/meta-sota/recipes-devtools/pseudo/files/fallback-group b/meta-sota/recipes-devtools/pseudo/files/fallback-group deleted file mode 100644 index 81bf732..0000000 --- a/meta-sota/recipes-devtools/pseudo/files/fallback-group +++ /dev/null @@ -1,2 +0,0 @@ -root:*:0: -mail:*:8: diff --git a/meta-sota/recipes-devtools/pseudo/files/fallback-passwd b/meta-sota/recipes-devtools/pseudo/files/fallback-passwd deleted file mode 100644 index c1458dc..0000000 --- a/meta-sota/recipes-devtools/pseudo/files/fallback-passwd +++ /dev/null @@ -1 +0,0 @@ -root::0:0:root:/home/root:/bin/sh diff --git a/meta-sota/recipes-devtools/pseudo/pseudo_1.8.1.bb b/meta-sota/recipes-devtools/pseudo/pseudo_1.8.1.bb deleted file mode 100644 index 211439e..0000000 --- a/meta-sota/recipes-devtools/pseudo/pseudo_1.8.1.bb +++ /dev/null @@ -1,20 +0,0 @@ -require recipes-devtools/pseudo/pseudo.inc - -SRC_URI = " \ - http://downloads.yoctoproject.org/releases/pseudo/${BPN}-${PV}.tar.bz2 \ - file://fallback-passwd \ - file://fallback-group \ - file://0001-Add-check-for-existence-of-old-file-to-renameat.patch \ -" - -SRC_URI[md5sum] = "ee38e4fb62ff88ad067b1a5a3825bac7" -SRC_URI[sha256sum] = "dac4ad2d21228053151121320f629d41dd5c0c87695ac4e7aea286c414192ab5" - -PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback" - -do_install_append_class-native () { - install -d ${D}${sysconfdir} - # The fallback files should never be modified - install -m 444 ${WORKDIR}/fallback-passwd ${D}${sysconfdir}/passwd - install -m 444 ${WORKDIR}/fallback-group ${D}${sysconfdir}/group -} -- cgit 1.2.3-korg