diff options
author | Kévin THIERRY <kevin.thierry@open.eurogiciel.org> | 2014-09-25 12:14:59 +0200 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2015-01-09 09:23:11 -0800 |
commit | 26505d5d96deff6e36c87b764ea81d13653e46d4 (patch) | |
tree | 6977cdd6c414fc189986ce8072d07910cf993fe6 | |
parent | bd8ddd4ad63ed40c884937b8aded6bf3dde52e38 (diff) | |
download | tizen-distro-26505d5d96deff6e36c87b764ea81d13653e46d4.tar.gz tizen-distro-26505d5d96deff6e36c87b764ea81d13653e46d4.tar.bz2 tizen-distro-26505d5d96deff6e36c87b764ea81d13653e46d4.zip |
meta-tizen: Do not depend on pam plugins
Yocto pam package provides pam plugins that are not available in Tizen
pam package that we use thus we need to remove dependency to those
plugins.
Change-Id: I0d05593accec4ae78a0407a7e912139299e91623
(From meta-tizen rev: a3d09c073b034e04159ec75fa08f5584969df047)
Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
-rw-r--r-- | meta-tizen/recipes-core/dropbear/dropbear_%.bbappend | 3 | ||||
-rw-r--r-- | meta-tizen/recipes-extended/shadow/shadow_%.bbappend | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/meta-tizen/recipes-core/dropbear/dropbear_%.bbappend b/meta-tizen/recipes-core/dropbear/dropbear_%.bbappend new file mode 100644 index 0000000000..f59da7842c --- /dev/null +++ b/meta-tizen/recipes-core/dropbear/dropbear_%.bbappend @@ -0,0 +1,3 @@ +#PAM_SRC_URI = "" +PAM_PLUGINS = "libpam-runtime" + diff --git a/meta-tizen/recipes-extended/shadow/shadow_%.bbappend b/meta-tizen/recipes-extended/shadow/shadow_%.bbappend index 03833d337c..c42ba914c6 100644 --- a/meta-tizen/recipes-extended/shadow/shadow_%.bbappend +++ b/meta-tizen/recipes-extended/shadow/shadow_%.bbappend @@ -1,6 +1,5 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/files:" - # Additional Policy files for PAM from pwdutils PAM_SRC_URI = "file://pam.d/chage \ file://pam.d/chfn \ @@ -30,3 +29,4 @@ do_install_append() { ${D}${sysconfdir}/pam.d/userdel \ ${D}${sysconfdir}/pam.d/usermod } + |