Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Kang Kai <Kai.Kang@windriver.com>
To: <openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH 04/10] polkit: Support PAM
Date: Fri, 22 Jul 2011 11:21:52 +0800	[thread overview]
Message-ID: <4E28ECD0.9040803@windriver.com> (raw)
In-Reply-To: <AE1AA4B0-B6FF-4A12-9398-2090082EAE59@dominion.thruhere.net>

On 2011年07月21日 17:59, Koen Kooi wrote:
> Op 21 jul. 2011, om 11:49 heeft Kang Kai het volgende geschreven:
>
>> On 2011年07月21日 16:59, Koen Kooi wrote:
>>> Op 21 jul. 2011, om 10:00 heeft Kang Kai het volgende geschreven:
>>>
>>>> From: Xiaofeng Yan<xiaofeng.yan@windriver.com>
>>>>
>>>> Modify configuration "polkit-1" in /etc/pam.d/ for supporting pam.
>>>>
>>>> Signed-off-by: Xiaofeng Yan<xiaofeng.yan@windriver.com>
>>>> ---
>>>> .../polkit/polkit-0.101/polkit-1_pam.patch         |   23 ++++++++++++++++++++
>>>> meta/recipes-extended/polkit/polkit_0.101.bb       |    6 +++-
>>>> 2 files changed, 27 insertions(+), 2 deletions(-)
>>>> create mode 100644 meta/recipes-extended/polkit/polkit-0.101/polkit-1_pam.patch
>>>>
>>>> diff --git a/meta/recipes-extended/polkit/polkit-0.101/polkit-1_pam.patch b/meta/recipes-extended/polkit/polkit-0.101/polkit-1_pam.patch
>>>> new file mode 100644
>>>> index 0000000..fa145ac
>>>> --- /dev/null
>>>> +++ b/meta/recipes-extended/polkit/polkit-0.101/polkit-1_pam.patch
>>>> @@ -0,0 +1,23 @@
>>>> +polkit: No system-auth in poky, we can use common-* in place of it.
>>> Poky or oe-core? And can we provide system-auth instead of patching the world?
>> system-auth is the Fedora common pam configure file and auto generated by command authconfig. It contains all 4 types(auth, account, password and session) default config. But in Yocto
> Hmm, poky, oe-core or yocto? Which is it :)

Sorry, I will care that :)

>
>> we follow Debian/Ubuntu with separated files for default config: common-auth, common-account etc.
>> So that we didn't import the system-auth file .
>>
>>>
>>>> +
>>>> +Upstream-Status:Inappropriate [configuration]
>>>> +
>>>> +Signed-off-by: Xiaofeng Yan<xiaofeng.yan@windriver.com>
>>>> +
>>>> +--- a/configure.ac	2011-03-04 02:26:20.000000000 +0800
>>>> ++++ b/configure.ac.new	2011-07-18 10:14:12.516818852 +0800
>>>> +@@ -350,10 +350,10 @@
>>>> +     PAM_FILE_INCLUDE_PASSWORD=system
>>>> +     PAM_FILE_INCLUDE_SESSION=system
>>>> + else
>>>> +-   PAM_FILE_INCLUDE_AUTH=system-auth
>>>> +-   PAM_FILE_INCLUDE_ACCOUNT=system-auth
>>>> +-   PAM_FILE_INCLUDE_PASSWORD=system-auth
>>>> +-   PAM_FILE_INCLUDE_SESSION=system-auth
>>>> ++   PAM_FILE_INCLUDE_AUTH=common-auth
>>>> ++   PAM_FILE_INCLUDE_ACCOUNT=common-account
>>>> ++   PAM_FILE_INCLUDE_PASSWORD=common-password
>>>> ++   PAM_FILE_INCLUDE_SESSION=common-session
>>>> + fi
>>>> +
>>>> + AC_SUBST(PAM_FILE_INCLUDE_AUTH)
>>>> diff --git a/meta/recipes-extended/polkit/polkit_0.101.bb b/meta/recipes-extended/polkit/polkit_0.101.bb
>>>> index 6769914..da1d581 100644
>>>> --- a/meta/recipes-extended/polkit/polkit_0.101.bb
>>>> +++ b/meta/recipes-extended/polkit/polkit_0.101.bb
>>>> @@ -7,8 +7,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=155db86cdbafa7532b41f390409283eb \
>>>>                      file://docs/polkit/html/license.html;md5=07ddbf5f29e44c80c99be19c1690ec1f"
>>>>
>>>> SRC_URI = "http://hal.freedesktop.org/releases/polkit-${PV}.tar.gz \
>>>> -           file://introspection.patch"
>>>> -PR = "r0"
>>>> +           file://introspection.patch \
>>>> +           file://polkit-1_pam.patch"
>>>> +
>>>> +PR = "r1"
>>>> DEPENDS = "libpam expat dbus-glib eggdbus intltool"
>>>> RDEPENDS_${PN} = "libpam"
>>>> EXTRA_OECONF = "--with-authfw=pam --with-os-type=moblin --disable-man-pages --disable-gtk-doc --disable-introspection"
>>>> -- 
>>>> 1.7.5.1.300.gc565c
>>>>
>>>>
>>>> _______________________________________________
>>>> Openembedded-core mailing list
>>>> Openembedded-core@lists.openembedded.org
>>>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>>> _______________________________________________
>>> Openembedded-core mailing list
>>> Openembedded-core@lists.openembedded.org
>>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>>
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core




  reply	other threads:[~2011-07-22  3:25 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-21  8:00 [PATCH 00/10] works of adding packages pam support Kang Kai
2011-07-21  8:00 ` [PATCH 01/10] libpam: update to 1.1.4 and add subpackage xtests Kang Kai
2011-07-21  8:00 ` [PATCH 02/10] dropbear: Support PAM Kang Kai
2011-07-21  8:54   ` Koen Kooi
2011-07-21 19:10     ` Khem Raj
2011-07-22  2:41       ` Kang Kai
2011-07-22  2:49         ` Khem Raj
2011-07-22  2:56           ` Kang Kai
2011-07-21  8:00 ` [PATCH 03/10] openssh: " Kang Kai
2011-07-21  8:55   ` Koen Kooi
2011-07-21  9:05   ` Phil Blundell
2011-07-21  8:00 ` [PATCH 04/10] polkit: " Kang Kai
2011-07-21  8:59   ` Koen Kooi
2011-07-21  9:49     ` Kang Kai
2011-07-21  9:59       ` Koen Kooi
2011-07-22  3:21         ` Kang Kai [this message]
2011-07-21  8:00 ` [PATCH 05/10] cups: add pam support Kang Kai
2011-07-21  8:00 ` [PATCH 06/10] screen: " Kang Kai
2011-07-21  8:00 ` [PATCH 07/10] sudo: " Kang Kai
2011-07-21  9:06   ` Phil Blundell
2011-07-21  9:42     ` Kang Kai
2011-07-21  8:00 ` [PATCH 08/10] cronie: enable PAM support for cronie Kang Kai
2011-07-21  8:00 ` [PATCH 09/10] shadow: update pam related configure files Kang Kai
2011-07-21  8:58   ` Koen Kooi
2011-07-22  3:16     ` Kang Kai
2011-07-21  8:00 ` [PATCH 10/10] at: enable pam support Kang Kai
2011-07-21  8:05 ` [PATCH 00/10] works of adding packages " Kang Kai
2011-07-21  8:53   ` Koen Kooi
2011-07-21  9:41     ` Kang Kai
2011-07-21  9:58       ` Koen Kooi
2011-07-21 17:02 ` Saul Wold
2011-07-22  2:18   ` Kang Kai
2011-07-22  3:10     ` Saul Wold
2011-07-22  3:14       ` Kang Kai

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4E28ECD0.9040803@windriver.com \
    --to=kai.kang@windriver.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox