Re: [OE-core] [PATCH 02/33] cdrtools: upgrade to v3.00

2011-04-22 Thread Scott Garman
On 04/22/2011 12:24 AM, Saul Wold wrote: From: Scott Garman * Addresses CVE-2003-0655 * Fixes [YOCTO #976] Note that the license has changed to the CDDL for most utilities. Note the following discussion of distribution issues with mixing GPL and CDDL licenses: http://lwn.net/Articles/195167

Re: [OE-core] qemu segfaulting when booting ext3 image

2011-05-03 Thread Scott Garman
booting images, so it should be pretty obvious if that's what's causing it. Given that Khem is booting the nfs version successfully, and not seeing any error message, I think this might be a new error. Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open Source

Re: [OE-core] qemu segfaulting when booting ext3 image

2011-05-03 Thread Scott Garman
On 05/03/2011 11:43 AM, Scott Garman wrote: On 05/03/2011 10:32 AM, Mark Hatle wrote: On 5/3/11 12:27 PM, Khem Raj wrote: On Mon, May 2, 2011 at 5:41 PM, Zhai, Edwin wrote: Did you installed Nvidia proprietary driver? Any error mesg from the runqemu script? yes I did and I think that could

Re: [OE-core] [poky] [PATCH 0/7] User/group creation at preinstall

2011-05-31 Thread Scott Garman
nly change, please resend this request to the oe-core list. Sure, I'll resend it to oe-core. That said, I have no idea what criteria should be used to determine which list to send things to, and I'm sure I'm not the only one. Is this documented anywhere? Scott -- Scott Garma

[OE-core] [PATCH 5/7] useradd-example: example recipe for using inherit useradd

2011-05-31 Thread Scott Garman
An example recipe for demonstrating/documenting how user and group manipulation is done with 'inherit useradd' Signed-off-by: Scott Garman --- .../recipes-skeleton/useradd/useradd-example.bb| 59 1 files changed, 59 insertions(+), 0 deletions(-) create m

[OE-core] [PATCH 2/7] shadow: add a -native recipe with customized utilities

2011-05-31 Thread Scott Garman
can then be used to manipulate user and group account information in target sysroots. useradd was also modified to create home directories recursively when necessary. Signed-off-by: Scott Garman --- .../shadow/files/add_root_cmd_options.patch| 1293 .../shadow/shadow

[OE-core] [PATCH 0/7] User/group creation at preinstall

2011-05-31 Thread Scott Garman
on http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/user-group-creation Scott Garman (7): shadow: recipe and patch cleanup shadow: add a -native recipe with customized utilities base-passwd: add -cross recipe with default login.defs useradd.bbclass: new class for managing

[OE-core] [PATCH 7/7] package_rpm.bbclass: make RPM use on-disk permissions

2011-05-31 Thread Scott Garman
Instruct RPM to use the on-disk permissions, owners, groups, and directory permissions, instead of defaulting to root:root Code changes suggested by Mark Hatle. Signed-off-by: Scott Garman --- meta/classes/package_rpm.bbclass |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff

[OE-core] [PATCH 6/7] bitbake.conf: set PSEUDO_PASSWD within FAKEROOTENV

2011-05-31 Thread Scott Garman
PSEUDO_PASSWD needs to point to the directory where passwd and group files are kept. This will allow pseudo to use those users and groups to change file ownership. Signed-off-by: Scott Garman --- meta/conf/bitbake.conf |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a

[OE-core] [PATCH 1/7] shadow: recipe and patch cleanup

2011-05-31 Thread Scott Garman
Taking over maintenance of the shadow recipe. Cleaning it up in preparation of adding a -native version that will be used to add users/groups during postinstall. Signed-off-by: Scott Garman --- .../files/shadow-4.1.3-dots-in-usernames.patch |4 + .../shadow-4.1.4.2-env-reset-keep

[OE-core] [PATCH 3/7] base-passwd: add -cross recipe with default login.defs

2011-05-31 Thread Scott Garman
The -cross version of the recipe is needed in order to set up user and group account information in the target machine sysroot. Signed-off-by: Scott Garman --- .../base-passwd/base-passwd-3.5.22/login.defs | 386 .../base-passwd/base-passwd-cross_3.5.22.bb

[OE-core] [PATCH 4/7] useradd.bbclass: new class for managing user/group permissions

2011-05-31 Thread Scott Garman
This class is to be used by recipes that need to set up specific user/group accounts and set custom file/directory permissions. Signed-off-by: Scott Garman --- meta/classes/useradd.bbclass | 136 ++ 1 files changed, 136 insertions(+), 0 deletions

Re: [OE-core] [poky] [PATCH 0/7] User/group creation at preinstall

2011-05-31 Thread Scott Garman
On 05/31/2011 02:16 PM, Mark Hatle wrote: On 5/31/11 2:57 PM, Otavio Salvador wrote: On Tue, May 31, 2011 at 19:51, Scott Garman wrote: That said, I have no idea what criteria should be used to determine which list to send things to, and I'm sure I'm not the only one. Is this

[OE-core] Tell me your build error message annoyances!

2011-05-31 Thread Scott Garman
some of these issues and improve the usability of our build system. Thanks, Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open Source Technology Center ___ Openembedded-core mailing list Openembedded-core@li

Re: [OE-core] [PATCH] shadow: remove selinux entry from pam.d/login

2011-06-01 Thread Scott Garman
sending my next pull request. Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open Source Technology Center ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.linuxtogo.org/cgi-bin/mailma

Re: [OE-core] [PATCH 2/7] shadow: add a -native recipe with customized utilities

2011-06-01 Thread Scott Garman
On 06/01/2011 02:47 AM, Phil Blundell wrote: On Tue, 2011-05-31 at 12:53 -0700, Scott Garman wrote: This adds a -native recipe for the shadow utilities. The custom --root option allows the the following utilities to be run within a chroot when invoked under pseudo: Rather than patching the

[OE-core] [PATCH 5/7] useradd-example: example recipe for using inherit useradd

2011-06-02 Thread Scott Garman
An example recipe for demonstrating/documenting how user and group manipulation is done with 'inherit useradd' Signed-off-by: Scott Garman --- .../recipes-skeleton/useradd/useradd-example.bb| 72 1 files changed, 72 insertions(+), 0 deletions(-) create m

[OE-core] [PATCH 0/7] User/group creation at preinstall v2

2011-06-02 Thread Scott Garman
-group-creation http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/user-group-creation Scott Garman (7): shadow: recipe and patch cleanup shadow: add a -native recipe with customized utilities base-passwd: populate the target sysroot with passwd/group/login.defs

[OE-core] [PATCH 4/7] useradd.bbclass: new class for managing user/group permissions

2011-06-02 Thread Scott Garman
This class is to be used by recipes that need to set up specific user/group accounts and set custom file/directory permissions. Signed-off-by: Scott Garman --- meta/classes/useradd.bbclass | 163 ++ 1 files changed, 163 insertions(+), 0 deletions

[OE-core] [PATCH 3/7] base-passwd: populate the target sysroot with passwd/group/login.defs

2011-06-02 Thread Scott Garman
The passwd, group, and login.defs files in the target sysroot will be used when recipes create custom user and group permissions in their packages. Signed-off-by: Scott Garman --- .../base-passwd/base-passwd-3.5.22/login.defs | 386 .../recipes-core/base-passwd/base

[OE-core] [PATCH 1/7] shadow: recipe and patch cleanup

2011-06-02 Thread Scott Garman
Taking over maintenance of the shadow recipe. Cleaning it up in preparation of adding a -native version that will be used to add users/groups during postinstall. Signed-off-by: Scott Garman --- .../files/shadow-4.1.3-dots-in-usernames.patch |4 + .../shadow-4.1.4.2-env-reset-keep

[OE-core] [PATCH 7/7] package_rpm.bbclass: make RPM use on-disk permissions

2011-06-02 Thread Scott Garman
Instruct RPM to use the on-disk permissions, owners, groups, and directory permissions, instead of defaulting to root:root Code changes suggested by Mark Hatle. Signed-off-by: Scott Garman --- meta/classes/package_rpm.bbclass |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff

[OE-core] [PATCH 2/7] shadow: add a -native recipe with customized utilities

2011-06-02 Thread Scott Garman
can then be used to manipulate user and group account information in target sysroots. useradd was also modified to create home directories recursively when necessary. Signed-off-by: Scott Garman --- .../shadow/files/add_root_cmd_options.patch| 1296 .../shadow/shadow

[OE-core] [PATCH 6/7] bitbake.conf: set PSEUDO_PASSWD within FAKEROOTENV

2011-06-02 Thread Scott Garman
PSEUDO_PASSWD needs to point to the directory where passwd and group files are kept. This will allow pseudo to use those users and groups to change file ownership. Signed-off-by: Scott Garman --- meta/conf/bitbake.conf |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a

[OE-core] [PATCH 1/1] distro-tracking: updates

2011-06-04 Thread Scott Garman
Update the distro tracking fields for: * apmd * at * blktool * cpio * dosfstools * gzip * libatomics-ops * shadow Signed-off-by: Scott Garman --- .../conf/distro/include/distro_tracking_fields.inc | 34 +++ 1 files changed, 20 insertions(+), 14 deletions(-) diff --git a/meta

[OE-core] [PATCH 0/1] distro tracking updates

2011-06-04 Thread Scott Garman
ution (2011-06-02 23:58:05 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib sgarman/version-checks http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/version-checks Scott Garman (1): distro-tracking: updates .../conf/distro/in

[OE-core] [PATCH 1/4] openssh: upgrade to v5.8p2

2011-06-05 Thread Scott Garman
LICENCE checksum updated due to a one-line change in the file (RedHat was added as a copyright holder). Signed-off-by: Scott Garman --- .../openssh/{openssh-5.6p1 => openssh-5.8p2}/init |0 .../{openssh-5.6p1 => openssh-5.8p2}/nostrip.patch |0 .../{openssh-5.6p1 => open

[OE-core] [PATCH 4/4] distro-tracking: update openssh, tar, and grep

2011-06-05 Thread Scott Garman
Signed-off-by: Scott Garman --- .../conf/distro/include/distro_tracking_fields.inc | 26 ++-- 1 files changed, 13 insertions(+), 13 deletions(-) diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc index

[OE-core] [PATCH 2/4] grep: upgrade to v2.8

2011-06-05 Thread Scott Garman
Signed-off-by: Scott Garman --- .../grep/{grep_2.7.bb => grep_2.8.bb} |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) rename meta/recipes-extended/grep/{grep_2.7.bb => grep_2.8.bb} (84%) diff --git a/meta/recipes-extended/grep/grep_2.7.bb b/meta/recipes-ex

[OE-core] [PATCH 0/4] Recipe upgrades: openssh, grep, tar

2011-06-05 Thread Scott Garman
ution (2011-06-02 23:58:05 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib sgarman/recipe-upgrades http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/recipe-upgrades Scott Garman (4): openssh: upgrade to v5.8p2 grep: upgrade to v2.8 tar: up

[OE-core] [PATCH 3/4] tar: upgrade to v1.26

2011-06-05 Thread Scott Garman
Signed-off-by: Scott Garman --- ...tive_1.25.bb => tar-replacement-native_1.26.bb} |0 meta/recipes-extended/tar/tar.inc |1 + meta/recipes-extended/tar/tar_1.25.bb |9 - meta/recipes-extended/tar/tar_1.26.bb |9 +

Re: [OE-core] Tell me your build error message annoyances!

2011-06-06 Thread Scott Garman
On 06/02/2011 11:10 PM, Darren Hart wrote: o I'm seeing duplicate messages lately - no examples handy, I'll post or open a bug next time. Hi Darren, Before I can file a bug for this, I'll need more details/a reproducible test case. Scott -- Scott Garman Embedded Linux E

Re: [OE-core] Tell me your build error message annoyances!

2011-06-09 Thread Scott Garman
On 05/31/2011 03:26 PM, Scott Garman wrote: Hey folks, I'd like to collect some feedback on error messages while building that you find confusing/annoying/unhelpful. I'm going to be working on trying to improve the situation and would like to hear from you about what could be mo

Re: [OE-core] bitbake -s broken?

2011-06-09 Thread Scott Garman
commit/?id=8df355140c5afb683cb97fed82f679366e60320b This bug is preventing me from doing another documentation build audit with the latest master. I have filed bug #1149 to track this issue. Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open Source Technol

Re: [OE-core] [PATCH 3/7] base-passwd: populate the target sysroot with passwd/group/login.defs

2011-06-09 Thread Scott Garman
On 06/09/2011 01:50 PM, Koen Kooi wrote: Op 3 jun 2011, om 01:50 heeft Scott Garman het volgende geschreven: The passwd, group, and login.defs files in the target sysroot will be used when recipes create custom user and group permissions in their packages. Signed-off-by: Scott Garman

Re: [OE-core] [PATCH 3/7] base-passwd: populate the target sysroot with passwd/group/login.defs

2011-06-09 Thread Scott Garman
On 06/09/2011 02:25 PM, Koen Kooi wrote: Op 9 jun 2011, om 23:23 heeft Scott Garman het volgende geschreven: On 06/09/2011 01:50 PM, Koen Kooi wrote: Op 3 jun 2011, om 01:50 heeft Scott Garman het volgende geschreven: The passwd, group, and login.defs files in the target sysroot will be

[OE-core] shadow errors related to login.defs

2011-06-10 Thread Scott Garman
On 06/09/2011 02:25 PM, Koen Kooi wrote: Op 9 jun 2011, om 23:23 heeft Scott Garman het volgende geschreven: On 06/09/2011 01:50 PM, Koen Kooi wrote: Op 3 jun 2011, om 01:50 heeft Scott Garman het volgende geschreven: The passwd, group, and login.defs files in the target sysroot will be

Re: [OE-core] [PATCH] runqemu: take TMPDIR from bitbake

2011-06-13 Thread Scott Garman
Darander Thanks for this improvement! Acked-by: Scott Garman --- scripts/runqemu | 22 +- 1 files changed, 9 insertions(+), 13 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index a09362c..aa44070 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -262,20

[OE-core] [PATCH 2/2] distro_tracking: update sudo tracking info

2011-06-14 Thread Scott Garman
Signed-off-by: Scott Garman --- .../conf/distro/include/distro_tracking_fields.inc |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc index f4aa1ea..d70d746

[OE-core] [PATCH 1/2] sudo: upgrade to v1.8.1p2

2011-06-14 Thread Scott Garman
of zlib is now included in these sources, so Zlib is included as one of the licenses. I could not find any evidence of MIT-licensed sources, so that license has been removed. Signed-off-by: Scott Garman --- meta/recipes-extended/sudo/sudo.inc| 27 --- .../sudo

[OE-core] [PATCH 0/2] sudo upgrade

2011-06-14 Thread Scott Garman
e git repository at: git://git.pokylinux.org/poky-contrib sgarman/sudo-upgrade http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/sudo-upgrade Scott Garman (2): sudo: upgrade to v1.8.1p2 distro_tracking: update sudo tracking info .../conf/distro/include/distro_tracking_fields.inc |

[OE-core] [PATCH 1/2] mtools: upgrade to v4.0.16

2011-06-16 Thread Scott Garman
Also added Upstream-Status: tag to a patch. Signed-off-by: Scott Garman --- .../mtools/mtools/no-x11.gplv3.patch |9 ++--- .../mtools/{mtools_4.0.15.bb => mtools_4.0.16.bb} |4 ++-- 2 files changed, 8 insertions(+), 5 deletions(-) rename meta/recipes-devtools/mto

[OE-core] [PATCH 2/2] distro_tracking: update mtools tracking info

2011-06-16 Thread Scott Garman
Signed-off-by: Scott Garman --- .../conf/distro/include/distro_tracking_fields.inc |9 - 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc index f4aa1ea..830b5dc

[OE-core] [PATCH 0/2] mtools upgrade

2011-06-16 Thread Scott Garman
in the git repository at: git://git.pokylinux.org/poky-contrib sgarman/mtools-upgrade http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/mtools-upgrade Scott Garman (2): mtools: upgrade to v4.0.16 distro_tracking: update mtools tracking info .../conf/distro/include

[OE-core] [PATCH 0/1] Fix for runtime errors due to login.defs

2011-06-16 Thread Scott Garman
poky-contrib/log/?h=sgarman/login-defs-fix-rebased Scott Garman (1): base-passwd: disable problematic login.defs options .../base-passwd/base-passwd-3.5.22/login.defs | 32 ++-- .../recipes-core/base-passwd/base-passwd_3.5.22.bb |2 +

[OE-core] [PATCH 1/1] base-passwd: disable problematic login.defs options

2011-06-16 Thread Scott Garman
rror - unknown item 'PASS_ALWAYS_WARN' (notify administrator) configuration error - unknown item 'CHFN_AUTH' (notify administrator) configuration error - unknown item 'ENVIRON_FILE' (notify administrator) This fixes bug [YOCTO #1170] Signed-off-by: Scott Garman --- .

Re: [OE-core] [PATCH 1/1] base-passwd: disable problematic login.defs options

2011-06-17 Thread Scott Garman
On 06/16/2011 04:54 PM, Khem Raj wrote: On 06/16/2011 11:50 AM, Scott Garman wrote: This resolves the following runtime errors when various shadow-utils binaries are run: configuration error - unknown item 'FAILLOG_ENAB' (notify administrator) configuration error - unknown item &#x

Re: [OE-core] [PATCH 1/1] base-passwd: disable problematic login.defs options

2011-06-17 Thread Scott Garman
On 06/17/2011 09:43 AM, Khem Raj wrote: On Fri, Jun 17, 2011 at 9:34 AM, Scott Garman wrote: On 06/16/2011 04:54 PM, Khem Raj wrote: On 06/16/2011 11:50 AM, Scott Garman wrote: This resolves the following runtime errors when various shadow-utils binaries are run: configuration error

Re: [OE-core] [PATCH 1/1] base-passwd: disable problematic login.defs options

2011-06-17 Thread Scott Garman
On 06/17/2011 10:22 AM, Otavio Salvador wrote: On Fri, Jun 17, 2011 at 17:19, Scott Garman wrote: Sorry, I forgot to mention that shadow-utils-native is what is used to modify the passwd/group files in the target sysroot. It seems that having a -native recipe install files into a target

Re: [OE-core] [PATCH 1/1] base-passwd: disable problematic login.defs options

2011-06-19 Thread Scott Garman
On 06/19/2011 07:41 PM, Khem Raj wrote: On Sun, Jun 19, 2011 at 7:13 PM, Mark Hatle wrote: On 6/17/11 1:10 PM, Scott Garman wrote: On 06/17/2011 10:22 AM, Otavio Salvador wrote: On Fri, Jun 17, 2011 at 17:19, Scott Garmanwrote: Sorry, I forgot to mention that shadow-utils-native is what

[OE-core] [PATCH 0/2] login.defs move

2011-06-20 Thread Scott Garman
16 22:14:06 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib sgarman/login-defs-move http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/login-defs-move Scott Garman (2): shadow-sysroot: new recipe for useradd.bbclass support base-passwd: r

[OE-core] [PATCH 2/2] base-passwd: remove login.defs references

2011-06-20 Thread Scott Garman
login.defs is owned by shadow-utils, and doesn't belong here. The shadow-sysroot recipe was created to handle the case this was originally added for (useradd.bbclass support). Signed-off-by: Scott Garman --- .../base-passwd/base-passwd-3.5.22/login.defs |

[OE-core] [PATCH 1/2] shadow-sysroot: new recipe for useradd.bbclass support

2011-06-20 Thread Scott Garman
: Scott Garman --- .../shadow/files/login.defs_shadow-sysroot | 386 .../shadow/shadow-sysroot_4.1.4.3.bb | 41 ++ 2 files changed, 427 insertions(+), 0 deletions(-) create mode 100644 meta/recipes-extended/shadow/files/login.defs_shadow-sysroot create

Re: [OE-core] [PATCH 1/2] shadow-sysroot: new recipe for useradd.bbclass support

2011-06-21 Thread Scott Garman
On 06/20/2011 11:30 PM, Koen Kooi wrote: Op 21 jun 2011, om 02:29 heeft Scott Garman het volgende geschreven: Packaging login.defs with base-passwd causes problems due to the file being included in target package installs. Instead, this shadow-sysroot recipe can be used by useradd.bbclass to

[OE-core] [PATCH 0/1] shadow-native fix for useradd

2011-06-28 Thread Scott Garman
.03 (2011-06-28 17:13:19 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib sgarman/mkdir-p-fix http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/mkdir-p-fix Scott Garman (1): shadow-native: fix creation of home directories .

[OE-core] [PATCH 1/1] shadow-native: fix creation of home directories

2011-06-28 Thread Scott Garman
ure parent directories get created. Signed-off-by: Scott Garman --- .../shadow/files/add_root_cmd_options.patch| 125 +++ 1 files changed, 98 insertions(+), 27 deletions(-) diff --git a/meta/recipes-extended/shadow/files/add_root_cmd_options.patch b/meta/recipes-extended/sh

Re: [OE-core] Conflicting providers for ssh/sshd (dropbear and openssh)

2011-06-28 Thread Scott Garman
dropbear's ssh and sshd while using openssh's sftp-server, then that would imply they can work independently, even though that combo seems like an aggressive space optimization that I would tend to avoid. Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open

Re: [OE-core] Conflicting providers for ssh/sshd (dropbear and openssh)

2011-06-28 Thread Scott Garman
early next week. In the meantime Yocto bug #1009 is tracking this issue. Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open Source Technology Center ___ Openembedded-core mailing list Openembedded-core@lists.openembedde

Re: [OE-core] [PATCH 4/7] useradd.bbclass: new class for managing user/group permissions

2011-06-28 Thread Scott Garman
good explanations on the points I will not be changing. Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open Source Technology Center ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.linuxtogo.org/cg

Re: [OE-core] Conflicting providers for ssh/sshd (dropbear and openssh)

2011-06-29 Thread Scott Garman
your desired image. Which makes me wonder what the consequences would be to simply remove the PROVIDES from the dropbear and openssh recipes? Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open Source Technology Center ___

Re: [OE-core] [PATCH] insane bbclass: turn fatal errors back into fatal errors

2011-06-30 Thread Scott Garman
odays TSC meeting the proposed date to switch was the 11th and encourage people to start fixing things *NOW*. What are peoples thought on that? Sounds like an excellent compromise! Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open Source Technology C

[OE-core] [PATCH 3/3] useradd-example: example recipe for using inherit useradd

2011-06-30 Thread Scott Garman
An example recipe for demonstrating/documenting how user and group manipulation is done with 'inherit useradd' Signed-off-by: Scott Garman --- .../recipes-skeleton/useradd/useradd-example.bb| 76 1 files changed, 76 insertions(+), 0 deletions(-) create m

[OE-core] [PATCH 1/3] bitbake.conf: update PSEUDO_PASSWD variable

2011-06-30 Thread Scott Garman
The internal use of PSEUDO_PASSWD adds the /etc path automatically. Signed-off-by: Scott Garman --- meta/conf/bitbake.conf |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 38367dd..bdaa35d 100644 --- a/meta/conf

[OE-core] [PATCH 0/3] useradd.bbclass: new class for managing user/group permissions [v2]

2011-06-30 Thread Scott Garman
ommit 8781c843cf3e0913a8fdd2ff91935f051be01dd9: classes/package.bbclass: Add fixup_perms (2011-06-30 22:54:04 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib sgarman/useradd-v2 http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/useradd-v2 Scott Garman (3): bitbake

[OE-core] [PATCH 2/3] useradd.bbclass: new class for managing user/group permissions

2011-06-30 Thread Scott Garman
This class is to be used by recipes that need to set up specific user/group accounts and set custom file/directory permissions. Signed-off-by: Scott Garman --- meta/classes/useradd.bbclass | 161 ++ 1 files changed, 161 insertions(+), 0 deletions

Re: [OE-core] [PATCH 2/3] useradd.bbclass: new class for managing user/group permissions

2011-06-30 Thread Scott Garman
sounds like that class could use a refresh in light of the preferred style you've been showing me. I'd be happy to do this as a background task over the next week if it would be useful. Scott On Thu, 2011-06-30 at 15:39 -0700, Scott Garman wrote: [...] +# Recipe parse-time sanity c

[OE-core] [PATCH 1/2] useradd.bbclass: new class for managing user/group permissions

2011-06-30 Thread Scott Garman
This class is to be used by recipes that need to set up specific user/group accounts and set custom file/directory permissions. Signed-off-by: Scott Garman --- meta/classes/useradd.bbclass | 156 ++ 1 files changed, 156 insertions(+), 0 deletions

[OE-core] [PATCH 2/2] useradd-example: example recipe for using inherit useradd

2011-06-30 Thread Scott Garman
An example recipe for demonstrating/documenting how user and group manipulation is done with 'inherit useradd' Signed-off-by: Scott Garman --- .../recipes-skeleton/useradd/useradd-example.bb| 76 1 files changed, 76 insertions(+), 0 deletions(-) create m

[OE-core] [PATCH 0/2] useradd.bbclass: new class for managing user/group permissions [v3]

2011-06-30 Thread Scott Garman
ry at: git://git.pokylinux.org/poky-contrib sgarman/useradd-v3 http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/useradd-v3 Scott Garman (2): useradd.bbclass: new class for managing user/group permissions useradd-example: example recipe for using inherit useradd .../recipes-ske

[OE-core] [PATCH 1/1] distro-tracking: add RECIPE_MANUAL_CHECK_DATE for various recipes

2011-07-12 Thread Scott Garman
The upstream package tracking webapp needs this additional distro tracking field to work properly for the following recipes I maintain: * icu * blktool * apmd * gperf * dosfstools * insserv * at Signed-off-by: Scott Garman --- .../conf/distro/include/distro_tracking_fields.inc |7

[OE-core] [PATCH 0/1] distro tracking updates

2011-07-12 Thread Scott Garman
2 15:22:09 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib sgarman/distro-tracking http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/distro-tracking Scott Garman (1): distro-tracking: add RECIPE_MANUAL_CHECK_DATE for various recipes .../conf/d

[OE-core] [PATCH 2/2] unfs-server: add Upstream-Status field to patches

2011-07-17 Thread Scott Garman
Signed-off-by: Scott Garman --- .../001-2.2b47-2.2b51.patch|5 + .../unfs-server-2.1+2.2beta47/002-destdir.patch|5 + .../unfs-server-2.1+2.2beta47/003-manpages.patch |5 + .../unfs-server-2.1+2.2beta47/004-strsignal.patch |5

[OE-core] [PATCH 0/2] Upstream-Status patch additions

2011-07-17 Thread Scott Garman
in the git repository at: git://git.pokylinux.org/poky-contrib sgarman/upstream-status http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/upstream-status Scott Garman (2): man: add Upstream-Status field to paches unfs-server: add Upstream-Status field to patches .../001-2.2b47

[OE-core] [PATCH 1/2] man: add Upstream-Status field to paches

2011-07-17 Thread Scott Garman
Signed-off-by: Scott Garman --- .../man/man-1.6f/man-1.5g-nonrootbuild.patch |4 .../man/man-1.6f/man-1.5h1-gencat.patch|4 .../man/man-1.6f/man-1.5h1-make.patch |4 .../man/man-1.6f/man-1.5i2-initial.patch |4 .../man

[OE-core] [PATCH 0/2] libpng upgrade

2011-07-19 Thread Scott Garman
available in the git repository at: git://git.pokylinux.org/poky-contrib sgarman/libpng-upgrade http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/libpng-upgrade Scott Garman (2): libpng: upgrade to v1.2.46 distro-tracking: update libpng .../conf/distro/include

[OE-core] [PATCH 2/2] distro-tracking: update libpng

2011-07-19 Thread Scott Garman
Signed-off-by: Scott Garman --- .../conf/distro/include/distro_tracking_fields.inc | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc index efb4c0b..2f078c9

[OE-core] [PATCH 1/2] libpng: upgrade to v1.2.46

2011-07-19 Thread Scott Garman
This addresses the following security advisories: * CVE-2011-2690 * CVE-2011-2692 This fixes bug [YOCTO #1255] The LICENSE and png.h checksum changes were due to trivial changes in the files. Signed-off-by: Scott Garman --- .../libpng/{libpng_1.2.44.bb => libpng_1.2.46.bb} |

[OE-core] [PATCH 0/1] runqemu bugfix

2011-07-22 Thread Scott Garman
: git://git.pokylinux.org/poky-contrib sgarman/runqemu-fix http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/runqemu-fix Scott Garman (1): runqemu: report error if TMPDIR cannot be determined scripts/runqemu | 27 --- 1 files changed, 16 insertions(+), 11

[OE-core] [PATCH 1/1] runqemu: report error if TMPDIR cannot be determined

2011-07-22 Thread Scott Garman
to the user. This fixes [YOCTO #1278] Signed-off-by: Scott Garman --- scripts/runqemu | 27 --- 1 files changed, 16 insertions(+), 11 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index 5aed25a..dacaf7c 100755 --- a/scripts/runqemu +++ b/scripts/runqemu

Re: [OE-core] [PATCH 0/3] Adding patches to support pam

2011-07-26 Thread Scott Garman
On 07/26/2011 03:08 AM, Xiaofeng Yan wrote: Hi Saul& Richard, I modified my patches about how to whitespace and tab in .bb file according to your suggestion. Acked-by: Scott Garman for this patch series. Thank you Yan! Pull URL: git://git.pokylinux.org/poky-contrib.git Br

Re: [OE-core] [PATCH 0/7] works of adding packages pam support V2

2011-07-26 Thread Scott Garman
On 07/25/2011 08:29 PM, Kang Kai wrote: From: Kang Kai Hi Scott, This is the work of adding pam supports version 2. Acked-by: Scott Garman for this patch series. Thanks Kai! Xiaofeng Yan's commits will be commited by himself, including openssh, dropbear and polkit. As Saul

Re: [OE-core] [PATCH] bitbake.conf: Changed PSEUDO_LOCALSTATEDIR assignment to unconditional.

2011-08-09 Thread Scott Garman
OCALSTATEDIR=${PSEUDO_LOCALSTATEDIR} PSEUDO_PASSWD=${STAGING_DIR_TARGET} PSEUDO_NOSYMLINKEXP=1 PSEUDO_DISABLED=0" FAKEROOTDIRS = "${PSEUDO_LOCALSTATEDIR}" PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native" -- Scott Garman

Re: [OE-core] [PATCH 1/1] libpam: Setting suid bit for unix_chkpwd

2011-08-21 Thread Scott Garman
t_pam-plugin-unix () { + # below is necessary to allow unix_chkpwd get user info from shadow file + # on lsb images + chmod 4755 /usr/sbin/unix_chkpwd may be its better to use corresponding metadata variables instead of hardcoding /usr/sbin here With Khem's recommended tweak: Acked-by: Scott

[OE-core] [PATCH 1/1] runqemu: standardize ability to specify custom qemu/kenel boot options

2011-09-03 Thread Scott Garman
specifying custom QEMU options using qemuparams="". This fixes [YOCTO #1019] Signed-off-by: Scott Garman --- scripts/runqemu | 32 ++-- 1 files changed, 18 insertions(+), 14 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index 113088e..7493

[OE-core] [PATCH 0/1] runqemu fixes

2011-09-03 Thread Scott Garman
of specifying custom kernel boot options to this script. This patch documents the bootparams option and adds a similar way of specifying custom QEMU options using qemuparams="". This fixes [YOCTO #1019] Scott Garman The following changes since commit 0616557a8c29b42bae0ffd5fd665a0

Re: [OE-core] [PATCH] dbus: fix paths in startup script, use useradd.bbclass for user creation

2011-09-08 Thread Scott Garman
ut like this, but I am slammed preparing for a conference next week, and the week after that I will be on vacation. Mark Hatle should be familiar enough with the code to answer questions and do code review. Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open Source Te

[OE-core] [PATCH 0/1] runqemu - improve auto-detection of rootfs filenames

2011-09-09 Thread Scott Garman
://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/runqemu-fixes2 Scott Garman (1): runqemu: improve auto-detection of rootfs filenames scripts/runqemu | 35 +++ 1 files changed, 15 insertions(+), 20 deletions

[OE-core] [PATCH 1/1] runqemu: improve auto-detection of rootfs filenames

2011-09-09 Thread Scott Garman
. Fixes [YOCTO #1437]. Signed-off-by: Scott Garman --- scripts/runqemu | 35 +++ 1 files changed, 15 insertions(+), 20 deletions(-) diff --git a/scripts/runqemu b/scripts/runqemu index 74938f7..8f44c0d 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -241,31

Re: [OE-core] [PATCH] Use useradd and update-rc.d classes in the OpenSSH recipe

2011-09-27 Thread Scott Garman
commit/?id=8fce8180c802ad187c4df44c17207bfb026ce6c7 Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open Source Technology Center ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.linuxtogo.org/cgi-bin/mailma

[OE-core] [PATCH 2/7] libcap: move library to base_libdir

2012-01-03 Thread Scott Garman
ls from coreutils links to libcap, so move the libcap library from libdir (/usr/lib) to base_libdir (/lib). Signed-off-by: Scott Garman --- meta/recipes-support/libcap/libcap.inc | 15 +-- meta/recipes-support/libcap/libcap_2.22.bb |2 +- 2 files changed, 14 insertions

[OE-core] [PATCH 1/7] ncurses: move libraries to base_libdir

2012-01-03 Thread Scott Garman
Various utilities (including bash and the util-linux programs) located in base_bindir (/bin) or base_sbindir (/sbin) dynamically link against many of the ncurses libraries. So move these libraries from libdir (/usr/lib) to base_libdir (/lib). Signed-off-by: Scott Garman --- meta/recipes-core

[OE-core] [PATCH 0/7] New QA tests for unsafe references to exec_prefix [v2]

2012-01-03 Thread Scott Garman
al http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/per-recipe-sanitychk-final Scott Garman (7): ncurses: move libraries to base_libdir libcap: move library to base_libdir util-linux: move libraries to base_libdir e2fsprogs: move libraries to base_libdir libusb1: move libraries to b

[OE-core] [PATCH 3/7] util-linux: move libraries to base_libdir

2012-01-03 Thread Scott Garman
Various util-linux programs in base_sbindir (/sbin) linked to libraries located under exec_prefix (/usr). Since this is not safe, move these libraries from libdir (/usr/lib) to base_libdir (/lib). Signed-off-by: Scott Garman --- meta/recipes-core/util-linux/util-linux.inc | 20

[OE-core] [PATCH 4/7] e2fsprogs: move libraries to base_libdir

2012-01-03 Thread Scott Garman
The e2fsprogs utilities are installed into base_sbindir (/sbin) and should not link to libraries under exec_prefix (/usr). So move these libraries from libdir (/usr/lib) to base_libdir (/lib). Signed-off-by: Scott Garman --- .../e2fsprogs/e2fsprogs_1.41.14.bb | 29

[OE-core] [PATCH 5/7] libusb1: move libraries to base_libdir

2012-01-03 Thread Scott Garman
udev links to libusb1, and so these libraries need to be in base_libdir (/lib) instead of libdir (/usr/lib). Signed-off-by: Scott Garman --- meta/recipes-support/libusb/libusb1_1.0.8.bb | 16 ++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git a/meta/recipes-support

[OE-core] [PATCH 6/7] libusb-compat: move libraries to base_libdir

2012-01-03 Thread Scott Garman
udev links to libusb-compat, and so this library needs to be in base_libdir (/lib) instead of libdir (/usr/lib). Signed-off-by: Scott Garman --- meta/recipes-support/libusb/libusb-compat_0.1.3.bb | 12 +++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/meta/recipes

[OE-core] [PATCH 7/7] insane.bbclass: add QA tests for unsafe references to exec_prefix

2012-01-03 Thread Scott Garman
. This fixes [YOCTO #1008] Signed-off-by: Scott Garman --- meta/classes/insane.bbclass | 111 ++- 1 files changed, 109 insertions(+), 2 deletions(-) diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 5726e69..b8d4507 100644 --- a/meta

[OE-core] [PATCH 0/1] Urgent fix for insane.bbclass.

2012-01-05 Thread Scott Garman
: multilib: Abstract class extension code into classextend.py (2012-01-05 12:36:08 +) are available in the git repository at: git://git.yoctoproject.org/poky-contrib sgarman/qa-fix-final http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=sgarman/qa-fix-final Scott Garman (1)

[OE-core] [PATCH 1/1] insane.bbclass: use bb.process.Popen instead of subprocess.check_output

2012-01-05 Thread Scott Garman
k-rtld, as that case was simply adding noise. This QA test is intended to only warn about specific paths that binaries could be linking to, not handle the case where there is a missing library. Signed-off-by: Scott Garman --- meta/classes/insane.bbclass | 16 ++-- 1 files changed,

Re: [OE-core] libs transition /usr/lib -> /lib questions

2012-01-05 Thread Scott Garman
f6be Does this fix the issue? I may be hard to reach tomorrow, so I hope RP or Mark Hatle can field any further questions for me. Scott -- Scott Garman Embedded Linux Engineer - Yocto Project Intel Open Source Technology Center ___ Openembedded-

  1   2   3   4   5   6   >