From: Tom Rini <tom_rini@mentor.com>
To: openembedded-devel@lists.openembedded.org
Subject: Re: [PATCH 1/2] busybox: add group to -passwd package
Date: Wed, 26 Jan 2011 12:28:43 -0700 [thread overview]
Message-ID: <4D4075EB.7060500@mentor.com> (raw)
In-Reply-To: <1296066116-10466-1-git-send-email-rep.dot.nop@gmail.com>
On 01/26/2011 11:21 AM, Bernhard Reutner-Fischer wrote:
> Signed-off-by: Bernhard Reutner-Fischer<rep.dot.nop@gmail.com>
> ---
> recipes/busybox/busybox.inc | 6 +++++-
> recipes/busybox/busybox_1.1x.inc | 1 +
> recipes/busybox/files/group | 12 ++++++++++++
> recipes/busybox/files/passwd | 3 ---
> recipes/busybox/files/shadow | 3 ---
> 5 files changed, 18 insertions(+), 7 deletions(-)
> create mode 100644 recipes/busybox/files/group
I assume the passwd/shadow changes are to keep them in sync with the
group file so:
Acked-by: Tom Rini <tom_rini@mentor.com>
>
> diff --git a/recipes/busybox/busybox.inc b/recipes/busybox/busybox.inc
> index 03efc99..9d87d9f 100644
> --- a/recipes/busybox/busybox.inc
> +++ b/recipes/busybox/busybox.inc
> @@ -19,6 +19,7 @@ SRC_URI = "\
> file://busybox-udhcpd \
> file://default.script file://simple.script \
> file://dhcp-hostname.patch \
> + file://group \
> file://hwclock.sh \
> file://hwclock-default \
> file://ifupdown-spurious-environ.patch \
> @@ -50,7 +51,7 @@ RDEPENDS_${PN} += "${PN}-mountall"
> RRECOMMENDS_${PN} += "libgcc ${PN}-syslog"
>
> FILES_${PN}-httpd = "${sysconfdir}/init.d/busybox-httpd /srv/www"
> -FILES_${PN}-passwd = "${sysconfdir}/passwd.${PN}"
> +FILES_${PN}-passwd = "${sysconfdir}/passwd.${PN} ${sysconfdir}/group.${PN}"
> FILES_${PN}-shadow = "${sysconfdir}/shadow.${PN}"
> FILES_${PN}-syslog = "${sysconfdir}/init.d/syslog.${PN} \
> ${sysconfdir}/default/busybox-syslog"
> @@ -187,6 +188,7 @@ do_install () {
>
> if grep -q "CONFIG_PASSWD=y" ${WORKDIR}/defconfig; then
> install -m 0644 ${WORKDIR}/passwd ${D}${sysconfdir}/passwd.${PN}
> + install -m 0644 ${WORKDIR}/group ${D}${sysconfdir}/group.${PN}
> if grep -q "CONFIG_FEATURE_SHADOWPASSWDS=y" ${WORKDIR}/defconfig; then
> install -m 0640 ${WORKDIR}/shadow ${D}${sysconfdir}/shadow.${PN}
> fi
> @@ -280,9 +282,11 @@ pkg_prerm_${PN}-mountall () {
>
> pkg_postinst_${PN}-passwd () {
> update-alternatives --install ${sysconfdir}/passwd default_passwd passwd.${PN} 50
> + update-alternatives --install ${sysconfdir}/group default_group group.${PN} 50
> }
> pkg_prerm_${PN}-passwd () {
> update-alternatives --remove default_passwd passwd.${PN}
> + update-alternatives --remove default_group group.${PN}
> }
>
> pkg_postinst_${PN}-shadow () {
> diff --git a/recipes/busybox/busybox_1.1x.inc b/recipes/busybox/busybox_1.1x.inc
> index 1078aac..9552d4d 100644
> --- a/recipes/busybox/busybox_1.1x.inc
> +++ b/recipes/busybox/busybox_1.1x.inc
> @@ -13,6 +13,7 @@ SRC_URI = "\
> file://busybox-httpd \
> file://busybox-udhcpd \
> file://default.script file://simple.script \
> + file://group \
> file://hwclock.sh \
> file://hwclock-default \
> file://mount.busybox \
> diff --git a/recipes/busybox/files/group b/recipes/busybox/files/group
> new file mode 100644
> index 0000000..3dd8cdd
> --- /dev/null
> +++ b/recipes/busybox/files/group
> @@ -0,0 +1,12 @@
> +root:x:0:
> +daemon:x:1:
> +bin:x:2:
> +sys:x:3:
> +tty:x:5:
> +disk:x:6:
> +mail:x:8:
> +man:x:12:
> +www-data:x:33:
> +utmp:x:43:
> +nogroup:x:65534:
> +users:x:100:
> diff --git a/recipes/busybox/files/passwd b/recipes/busybox/files/passwd
> index 64c9ab6..34921c3 100644
> --- a/recipes/busybox/files/passwd
> +++ b/recipes/busybox/files/passwd
> @@ -2,10 +2,7 @@ root:x:0:0:root:/root:/bin/sh
> daemon:x:1:1:daemon:/usr/sbin:/bin/sh
> bin:x:2:2:bin:/bin:/bin/sh
> sys:x:3:3:sys:/dev:/bin/sh
> -sync:x:4:65534:sync:/bin:/bin/sync
> man:x:6:12:man:/var/cache/man:/bin/sh
> mail:x:8:8:mail:/var/mail:/bin/sh
> www-data:x:33:33:www-data:/var/www:/bin/sh
> -backup:x:34:34:backup:/var/backups:/bin/sh
> -irc:x:39:39:ircd:/var/run/ircd:/bin/sh
> nobody:x:65534:65534:nobody:/nonexistent:/bin/sh
> diff --git a/recipes/busybox/files/shadow b/recipes/busybox/files/shadow
> index 25df693..e64a964 100644
> --- a/recipes/busybox/files/shadow
> +++ b/recipes/busybox/files/shadow
> @@ -2,10 +2,7 @@ root::14741:0:99999:7:::
> daemon:*:14741:0:99999:7:::
> bin:*:14741:0:99999:7:::
> sys:*:14741:0:99999:7:::
> -sync:*:14741:0:99999:7:::
> man:*:14741:0:99999:7:::
> mail:*:14741:0:99999:7:::
> www-data:*:14741:0:99999:7:::
> -backup:*:14741:0:99999:7:::
> -irc:*:14741:0:99999:7:::
> nobody:*:14741:0:99999:7:::
--
Tom Rini
Mentor Graphics Corporation
prev parent reply other threads:[~2011-01-26 19:29 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-26 18:21 [PATCH 1/2] busybox: add group to -passwd package Bernhard Reutner-Fischer
2011-01-26 18:21 ` [PATCH 2/2] busybox: 2.4 module support for kernel24 MACHINE_FEATURES Bernhard Reutner-Fischer
2011-01-26 19:29 ` Tom Rini
2011-01-26 18:54 ` [PATCH 1/2] busybox: add group to -passwd package Andreas Oberritter
2011-01-26 19:28 ` Tom Rini [this message]
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=4D4075EB.7060500@mentor.com \
--to=tom_rini@mentor.com \
--cc=openembedded-devel@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.