Re: [yocto] [bitbake-devel] Yocto: Add custom user to custom group in bitbake recipe

2018-03-02 Thread Maxin B. John
Hi Parthiban, On Fri, Mar 02, 2018 at 01:58:35PM +0100, Parthiban Nallathambi wrote: > Hi Maxim, > > space.bb --> chromium recipe in > https://github.com/OSSystems/meta-browser/tree/master/recipes-browser/chromium > > app.bb --> http-server.bb attached > > I have created a group "www" in http-

Re: [yocto] [bitbake-devel] Yocto: Add custom user to custom group in bitbake recipe

2018-03-02 Thread Parthiban Nallathambi
Hi Maxim, space.bb --> chromium recipe in https://github.com/OSSystems/meta-browser/tree/master/recipes-browser/chromium app.bb --> http-server.bb attached I have created a group "www" in http-server_0.10.0.bb and trying to add "chromium" user to this group in chromium-x11_%.bbappend. But

Re: [yocto] [bitbake-devel] Yocto: Add custom user to custom group in bitbake recipe

2018-03-02 Thread Maxin B. John
Hi Parthiban, On Fri, Mar 02, 2018 at 12:29:25PM +0100, Parthiban Nallathambi wrote: > Hello All, > > I have created a custom group e.g "grp1" in my application recipe say > "app.bb". > > GROUPADD_PARAM_${PN} = "grp1" > > I am trying add my custom user e.g: "user1" to this group "grp1" in > "sp

[yocto] Yocto: Add custom user to custom group in bitbake recipe

2018-03-02 Thread Parthiban Nallathambi
Hello All, I have created a custom group e.g "grp1" in my application recipe say "app.bb". GROUPADD_PARAM_${PN} = "grp1" I am trying add my custom user e.g: "user1" to this group "grp1" in "space.bb". USERADD_PARAM_${PN} = "-d ${localstatedir}/lib/space/ -s /bin/false -G grp1 -U user1"

[yocto] Add custom user to custom group in bitbake recipe

2018-03-02 Thread Parthiban Nallathambi
Hello All, I have created a custom group e.g "grp1" in my application recipe say "app.bb". GROUPADD_PARAM_${PN} = "grp1" I am trying to add my custom user e.g: "user1" to this group "grp1" in "space.bb". USERADD_PARAM_${PN} = "-d ${localstatedir}/lib/space/ -s /bin/false -G grp1 -U user1"