Re: [yocto] Setting Default User Accounts

2014-08-21 Thread ChenQi
How about add in local.conf: INHERIT += extrausers EXTRA_USERS_PARAMS = usermod -L root; \ useradd -P 'test' test; //Chen Qi On 08/21/2014 03:13 AM, Crast, Nicholas wrote: All, I am currently in the middle of a battle with yocto, trying to accomplish the following:

Re: [yocto] Setting Default User Accounts

2014-08-21 Thread Akash Bhatnagar
Hi I have added new user in following way:- S = ${WORKDIR} inherit useradd USERADD_PACKAGES = ${PN} USERADD_PARAM_${PN} = -u 1200 -d /home/test -r -s /bin/bash -P 'test123' test GROUPADD_PARAM_${PN} = -g 880 testgrp do_install () { install -d -m 755 ${D}/home/test install

[yocto] Setting Default User Accounts

2014-08-20 Thread Crast, Nicholas
All, I am currently in the middle of a battle with yocto, trying to accomplish the following: 1.)Disable root user account 2.)Create default user account with default password I currently have the following a recipe: USERADD_PACKAGES = ${PN} USERADD_PARAM_${PN} = -d /home/nick -r -s

Re: [yocto] Setting Default User Accounts

2014-08-20 Thread Chris Tapp
Hi Nick, On 20 Aug 2014, at 20:13, Crast, Nicholas nicholas.cr...@saabsensis.com wrote: All, I am currently in the middle of a battle with yocto, trying to accomplish the following: 1.)Disable root user account 2.)Create default user account with default password I