diff options
author | Anton Gerasimov <anton@advancedtelematic.com> | 2016-10-11 11:07:03 +0200 |
---|---|---|
committer | Anton Gerasimov <anton@advancedtelematic.com> | 2016-10-12 10:45:00 +0200 |
commit | ed143db2981330d8a578a76584d69ccce313494c (patch) | |
tree | 318c6739352741aeae487fd4e8b872e43807533a /recipes-devtools | |
parent | 7bd3693b986e0a6e59016767ea6f075ba01ab68c (diff) | |
download | meta-updater-ed143db2981330d8a578a76584d69ccce313494c.tar.gz |
Bump OSTree version to v2016.11
Bug-AGL: SPEC-285
Change-Id: Ie76e8bbad1f272cfc0bc34654a708d3ae233dde0
Signed-off-by: Anton Gerasimov <anton@advancedtelematic.com>
Diffstat (limited to 'recipes-devtools')
-rw-r--r-- | recipes-devtools/pseudo/files/fallback-group | 2 | ||||
-rw-r--r-- | recipes-devtools/pseudo/files/fallback-passwd | 1 | ||||
-rw-r--r-- | recipes-devtools/pseudo/pseudo_1.8.1.bb | 20 |
3 files changed, 23 insertions, 0 deletions
diff --git a/recipes-devtools/pseudo/files/fallback-group b/recipes-devtools/pseudo/files/fallback-group new file mode 100644 index 0000000..81bf732 --- /dev/null +++ b/recipes-devtools/pseudo/files/fallback-group | |||
@@ -0,0 +1,2 @@ | |||
1 | root:*:0: | ||
2 | mail:*:8: | ||
diff --git a/recipes-devtools/pseudo/files/fallback-passwd b/recipes-devtools/pseudo/files/fallback-passwd new file mode 100644 index 0000000..c1458dc --- /dev/null +++ b/recipes-devtools/pseudo/files/fallback-passwd | |||
@@ -0,0 +1 @@ | |||
root::0:0:root:/home/root:/bin/sh | |||
diff --git a/recipes-devtools/pseudo/pseudo_1.8.1.bb b/recipes-devtools/pseudo/pseudo_1.8.1.bb new file mode 100644 index 0000000..211439e --- /dev/null +++ b/recipes-devtools/pseudo/pseudo_1.8.1.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | require recipes-devtools/pseudo/pseudo.inc | ||
2 | |||
3 | SRC_URI = " \ | ||
4 | http://downloads.yoctoproject.org/releases/pseudo/${BPN}-${PV}.tar.bz2 \ | ||
5 | file://fallback-passwd \ | ||
6 | file://fallback-group \ | ||
7 | file://0001-Add-check-for-existence-of-old-file-to-renameat.patch \ | ||
8 | " | ||
9 | |||
10 | SRC_URI[md5sum] = "ee38e4fb62ff88ad067b1a5a3825bac7" | ||
11 | SRC_URI[sha256sum] = "dac4ad2d21228053151121320f629d41dd5c0c87695ac4e7aea286c414192ab5" | ||
12 | |||
13 | PSEUDO_EXTRA_OPTS ?= "--enable-force-async --without-passwd-fallback" | ||
14 | |||
15 | do_install_append_class-native () { | ||
16 | install -d ${D}${sysconfdir} | ||
17 | # The fallback files should never be modified | ||
18 | install -m 444 ${WORKDIR}/fallback-passwd ${D}${sysconfdir}/passwd | ||
19 | install -m 444 ${WORKDIR}/fallback-group ${D}${sysconfdir}/group | ||
20 | } | ||