Re: [yocto] Enabling the recipe from menuconfig

2018-05-18 Thread chandrasekhar
I think you can use Toaster for that which has a web interface you can select 
packages/receipes

 

Regards,

Chandrasekhar

 

From: Ugesh Reddy [mailto:kumar.ugesh...@yahoo.com] 
Sent: Friday, May 18, 2018 11:15 AM
To: chandrasek...@evolute.in; 'Yocto-mailing-list'
Subject: RE: [yocto] Enabling the recipe from menuconfig

 

The similar kind is required for my custom layer. So that I could enable the 
receipt from the menu config

Sent from Yahoo <https://overview.mail.yahoo.com/mobile/?.src=Android>  Mail on 
Android

 

On Fri, 18 May 2018 at 9:44 a.m., chandrasekhar

<chandrasek...@evolute.in> wrote:

you want to see in kernel menuconfig??

 

From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On 
Behalf Of Ugesh Reddy
Sent: Friday, May 18, 2018 7:52 AM
To: 'Yocto-mailing-list'; chandrasekhar
Subject: Re: [yocto] Enabling the recipe from menuconfig

 

Hi,

Thanks for the response,

 

 This will add the recipe as a part of image but I want to build and add the 
recipe when it has been selected from the menuconfig.

How to make visible the recipe in menuconfig?

On Thursday, 17 May, 2018, 9:32:15 AM IST, chandrasekhar 
<chandrasek...@evolute.in> wrote: 

 

 

Hi 

You can use 

IMAGE_INSTALL += "Package Name/Recipes name"

 

Regards,

Chandrasekhar

 

From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On 
Behalf Of Ugesh Reddy
Sent: Wednesday, May 16, 2018 9:57 PM
To: Yocto-mailing-list
Subject: [yocto] Enabling the recipe from menuconfig

 

Hello Team,

 

 I have a list of recipes in my custom layer. The recipes in this layer shall 
be enabled/selected through the menuconfig, once it is enabled then it shall be 
the part of image. is it possible to achieve it ? do we have any references? 

 

Regards,

Ugesh

-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] Enabling the recipe from menuconfig

2018-05-17 Thread chandrasekhar
you want to see in kernel menuconfig??

 

From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On 
Behalf Of Ugesh Reddy
Sent: Friday, May 18, 2018 7:52 AM
To: 'Yocto-mailing-list'; chandrasekhar
Subject: Re: [yocto] Enabling the recipe from menuconfig

 

Hi,

Thanks for the response,

 

 This will add the recipe as a part of image but I want to build and add the 
recipe when it has been selected from the menuconfig.

How to make visible the recipe in menuconfig?

On Thursday, 17 May, 2018, 9:32:15 AM IST, chandrasekhar 
<chandrasek...@evolute.in> wrote: 

 

 

Hi 

You can use 

IMAGE_INSTALL += "Package Name/Recipes name"

 

Regards,

Chandrasekhar

 

From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On 
Behalf Of Ugesh Reddy
Sent: Wednesday, May 16, 2018 9:57 PM
To: Yocto-mailing-list
Subject: [yocto] Enabling the recipe from menuconfig

 

Hello Team,

 

 I have a list of recipes in my custom layer. The recipes in this layer shall 
be enabled/selected through the menuconfig, once it is enabled then it shall be 
the part of image. is it possible to achieve it ? do we have any references? 

 

Regards,

Ugesh

-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] Enabling the recipe from menuconfig

2018-05-16 Thread chandrasekhar
Hi 

You can use 

IMAGE_INSTALL += "Package Name/Recipes name"

 

Regards,

Chandrasekhar

 

From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On 
Behalf Of Ugesh Reddy
Sent: Wednesday, May 16, 2018 9:57 PM
To: Yocto-mailing-list
Subject: [yocto] Enabling the recipe from menuconfig

 

Hello Team,

 

 I have a list of recipes in my custom layer. The recipes in this layer shall 
be enabled/selected through the menuconfig, once it is enabled then it shall be 
the part of image. is it possible to achieve it ? do we have any references? 

 

Regards,

Ugesh

-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] yocto layer dependencies

2017-09-04 Thread chandrasekhar chandrasekhar
Hi , Some recipes produce many more packages.You can see what 
packages a given recipe produces using BitBakes -e (show environment) 
command line switch bitbake -e package_name | grep 
^PACKAGES=   In your case if you want to know 
what packages available for petalinux just give bitbake -e petalinux | grep 
^PACKAGES=Regards,ChandraFrom: ktreddy 70 ktredd...@gmail.comSent: Sun, 
3 Sep 2017 04:07:13 GMT+0530To: Fabian Knapp kn...@ambibox.deCc: 
yocto@yoctoproject.org yocto@yoctoproject.orgSubject: Re: 
[yocto] yocto layer dependenciesHi,Thank you, issue got resolved 
after updating build/conf/bblayers.conf file,
Sorry to trouble you but now I am getting the following error what could be the 
reason

zcu102/build$bitbake petalinux
Loading cache: 100% 
|#|
 Time: 0:00:00
Loaded 3126 entries from dependency cache.
Parsing recipes: 100% 
|###|
 Time: 0:00:00
Parsing of 2368 .bb files complete (2366 cached, 2 parsed). 3127 targets, 216 
skipped, 0 masked, 0 errors.
WARNING: No recipes available for:
 
/home/ktreddy/zcu102/sources/poky/../meta-petalinux/recipes-extended/images/xen-image-minimal.bbappend
 
/home/ktreddy/zcu102/sources/poky/../meta-petalinux/recipes-extended/xen/xen_4.8.0.bbappend
ERROR: Nothing PROVIDES petalinux. Close matches:
 petalinux-image
 pptp-linux

Summary: There was 1 WARNING message shown.
Summary: There was 1 ERROR message shown, returning a non-zero exit code.

zcu102/build$bitbake openlte
Parsing recipes: 100% 
|###|
 Time: 0:00:51
Parsing of 2368 .bb files complete (0 cached, 2368 parsed). 3127 targets, 216 
skipped, 0 masked, 0 errors.
WARNING: No recipes available for:
 
/home/ktreddy/zcu102/sources/poky/../meta-petalinux/recipes-extended/images/xen-image-minimal.bbappend
 
/home/ktreddy/zcu102/sources/poky/../meta-petalinux/recipes-extended/xen/xen_4.8.0.bbappend
ERROR: Nothing PROVIDES openlte. Close matches:
 openl2tp
 openlte-git
 openct

Summary: There was 1 WARNING message shown.
Summary: There was 1 ERROR message shown, returning a non-zero exit code.
On Sat, Sep 2, 2017 at 12:34 PM, Fabian Knapp kn...@ambibox.de 
wrote:
Do you have configured /meta-openembedded/meta-qt4/ in your bblayers.conf 
(build/conf/bblayers.conf)?


Fabian

Von: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] Im 
Auftrag von ktreddy 70Gesendet: Samstag, 2. September 2017 20:30An: 
yocto@yoctoproject.orgBetreff: [yocto] yocto layer dependencies

I am trying to set up yocto build environment for openlte, meta-sdr has most of 
the openlte depends
I am getting following error when I try to build sdr,


/build$ bitbake sdr
Loading cache: 100% 
||
 Time: 0:00:00
Loaded 1642 entries from dependency cache.
ERROR: ParseError at 
/home/ktreddy/zcu102/sources/poky/../meta-openembedded/meta-sdr/recipes-applications/gqrx/gqrx_git.bb:8:
 Could not inherit file classes/qt4x11.bbclass


I do have meta-qt4 under meta-openembedded layer as below.

zcu102/sources$lsmeta-openembedded/meta-qt4/classes/
qmake2.bbclass qmake_base.bbclass qt4e.bbclass qt4x11.bbclass


could you please help me on why am I getting this error ?
How can I make one layer visible to another layer ?
Ex: How can I make meta-sdr visible to openlte ? I mean how can I say to 
openlte that the dependency recipes are available under meta-sdr ?

if new recipes are available for a layer how can I get those on to my build 
environment ?

Thanks for your help.--___yocto 
mailing listyocto@yoctoproject.orghttps://lists.yoctoproject.org/listinfo/yocto-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] Errors while building imx6qsabresd using fsl-community-bsp repo

2017-06-26 Thread Chandrasekhar S
Check for proper internet connection and speed. 

 

From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On 
Behalf Of Charmi Suchak
Sent: Tuesday, June 20, 2017 4:21 PM
To: yocto@yoctoproject.org
Subject: [yocto] Errors while building imx6qsabresd using fsl-community-bsp repo

 

Hi,

I am new to yocto training and I am trying to build a linux for imx series 
target from NXP. I got the bsp layer along with poky using the following:

repo init -u https://github.com/Freescale/fsl-community-bsp-platform -b daisy
repo sync

Now when I try to build core-image-minimal I get the following errors:

Parsing recipes: 100% 
||
 Time: 00:01:23
Parsing of 1398 .bb files complete (0 cached, 1398 parsed). 1826 targets, 101 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION= "1.22.0"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING   = "Ubuntu-14.04"
TARGET_SYS= "arm-poky-linux-gnueabi"
MACHINE   = "imx6qsabresd"
DISTRO= "poky"
DISTRO_VERSION= "1.6.3"
TUNE_FEATURES = "armv7a vfp neon callconvention-hard cortexa9"
TARGET_FPU= "vfp-neon"
meta  
meta-yocto= "(nobranch):39ec0738d4bdc566eca2724dc35c557955042242"
meta-oe   = "(nobranch):d3d14d3fcca7fcde362cf0b31411dc4eea6d20aa"
meta-fsl-arm  = "(nobranch):0c4de80867c3ab4e9682dd7802d3fd907d1e1a23"
meta-fsl-arm-extra = "(nobranch):c95f3f8b5b347f1b3e77d2d11063207ddb7dc5ec"
meta-fsl-demos= "(nobranch):f141c7d1158b8addbd6f1ed047a1b47c2ed85f8f"

NOTE: Preparing runqueue
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
WARNING: Checksum failure encountered with download of 
http://downloads.yoctoproject.org/releases/gnu-config/gnu-config-20120814.tar.bz2
 - will attempt other sources if available
WARNING: Renaming 
/home/charmi/charmi/charmi/Training/yocto/imx6/fsl-community-bsp/downloads/gnu-config-20120814.tar.bz2
 to 
/home/charmi/charmi/charmi/Training/yocto/imx6/fsl-community-bsp/downloads/gnu-config-20120814.tar.bz2_bad-checksum_550a1f90200546416f8d12b878edfb50
WARNING: Checksum failure encountered with download of 
http://download.savannah.gnu.org/releases/quilt/quilt-0.61.tar.gz - will 
attempt other sources if available
WARNING: Renaming 
/home/charmi/charmi/charmi/Training/yocto/imx6/fsl-community-bsp/downloads/quilt-0.61.tar.gz
 to 
/home/charmi/charmi/charmi/Training/yocto/imx6/fsl-community-bsp/downloads/quilt-0.61.tar.gz_bad-checksum_edff525cc95ce8932e66c2e2bfeabdbf
WARNING: Checksum failure encountered with download of 
ftp://ftp.gnu.org/gnu/automake/automake-1.14.tar.gz - will attempt other 
sources if available
WARNING: Renaming 
/home/charmi/charmi/charmi/Training/yocto/imx6/fsl-community-bsp/downloads/automake-1.14.tar.gz
 to 
/home/charmi/charmi/charmi/Training/yocto/imx6/fsl-community-bsp/downloads/automake-1.14.tar.gz_bad-checksum_1ada9887dbde94d6fbda52bd91543738
WARNING: Checksum failure encountered with download of 
ftp://ftp.gnu.org/gnu/libtool/libtool-2.4.2.tar.gz - will attempt other sources 
if available
WARNING: Renaming 
/home/charmi/charmi/charmi/Training/yocto/imx6/fsl-community-bsp/downloads/libtool-2.4.2.tar.gz
 to 
/home/charmi/charmi/charmi/Training/yocto/imx6/fsl-community-bsp/downloads/libtool-2.4.2.tar.gz_bad-checksum_9546fcbc4c15aada3464891bfe3f484b
WARNING: Failed to fetch URL 
http://download.gna.org/cryptodev-linux/cryptodev-linux-1.6.tar.gz, attempting 
MIRRORS if available
WARNING: Failed to fetch URL 
http://gnome-build-stage-1.googlecode.com/files/uuid-1.6.2.tar.gz, attempting 
MIRRORS if available
WARNING: Checksum failure encountered with download of 
http://download.oracle.com/berkeley-db/db-5.3.21.tar.gz - will attempt other 
sources if available
WARNING: Renaming 
/home/charmi/charmi/charmi/Training/yocto/imx6/fsl-community-bsp/downloads/db-5.3.21.tar.gz
 to 
/home/charmi/charmi/charmi/Training/yocto/imx6/fsl-community-bsp/downloads/db-5.3.21.tar.gz_bad-checksum_49429d4ac8880348db65209c82fd2549
WARNING: Failed to fetch URL http://zlib.net/pigz/pigz-2.3.1.tar.gz, attempting 
MIRRORS if available
WARNING: Failed to fetch URL 
http://downloads.sourceforge.net/libusb/libusb-1.0.9.tar.bz2, attempting 
MIRRORS if available
WARNING: Failed to fetch URL 
git://git.freescale.com/imx/linux-2.6-imx.git;branch=imx_3.10.17_1.0.1_ga 
 , 
attempting MIRRORS if available
ERROR: Fetcher failure: Fetch command failed with exit code 128, output:
fatal: Not a git repository (or any of the parent directories): .git

ERROR: Function failed: Fetcher failure for URL: 
'git://git.freescale.com/imx/linux-2.6-imx.git;branch=imx_3.10.17_1.0.1_ga 
 '. 
Unable to fetch URL from any source.
ERROR: Logfile of failure stored 

[yocto] [meta-freescale] Kernel module vermagic error

2017-04-10 Thread chandrasekhar c
Hi,I am trying to load a kernel module through modprobe. I am using bitbake to 
build the kernel. When I try to load the kernel in my Custom hardware I am 
getting following errors.
modprobe g_serial
configfs: version magic 3.14.38-6UL_ga+ge4944a5 SMP preempt mod_unload 
modversions ARMv7 p2v8  should be 3.14.38-6UL_ga+ge4944a5 SMP preempt 
mod_unload ARMv7 p2v8 
modprobe: cant load module configfs (kernel/fs/configfs/configfs.ko): 
invalid module formatbelow is the dmesg log
configfs: version magic 3.14.38-6UL_ga+ge4944a5 SMP preempt mod_unload 
modversions ARMv7 p2v8  should be 3.14.38-6UL_ga+ge4944a5 SMP preempt 
mod_unload ARMv6 p2v8 and uname -a output isLinux imx6ulevk 
3.14.38-6UL_ga+ge4944a5 #11 PREEMPT Fri Apr 7 12:35:50 IST 2017 armv7l 
GNU/Linuxwhat is the wrong with the module.Thanks and Regards,Chandrasekhar-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] unable to create softlink for precompilied libraries

2017-04-07 Thread Chandrasekhar S
Thank you Khem, it worked.

Regards,
Chandrasekhar

-Original Message-
From: Khem Raj [mailto:raj.k...@gmail.com] 
Sent: Thursday, April 06, 2017 7:18 PM
To: chandrasekhar c <chandrasek...@evolute-sys.com>
Cc: yocto@yoctoproject.org
Subject: Re: [yocto] unable to create softlink for precompilied libraries

On Thu, Apr 6, 2017 at 2:16 AM, chandrasekhar c <chandrasek...@evolute-sys.com> 
wrote:
> Hi,
> I have added this FILES_${PN} += " ${libdir}/libMSOComm.so " line in 
> my recipe still the issue is present
>

that may not be enough. .so are treated as symlinks and shoved into -dev 
packages by default. if you need unversioned libraries then you have to let the 
system know that its not a dev library symlink

FILES_${PN} += "${libdir}/*.so"
FILES_SOLIBSDEV = ""
INSANE_SKIP_${PN} += "dev-so"

> Thanks
> Chandra
>
> From: chandrasekhar c <chandrasek...@evolute-sys.com>
> Sent: Thu, 6 Apr 2017 14:39:04 GMT+0530
> To: "Fabien Lahoudere " <fabien.lahoud...@collabora.co.uk>
> Cc: "yocto@yoctoproject.org" <yocto@yoctoproject.org>
>
> Subject: Re: [yocto] unable to create softlink for precompilied 
> libraries
>
> Hi ,
> No, I will do the changes and let you know the result.
>
> Regards,
> Chandrasekhar
>
> From: Fabien Lahoudere <fabien.lahoud...@collabora.co.uk>
> Sent: Thu, 6 Apr 2017 14:10:30 GMT+0530
> To: yocto@yoctoproject.org
> Subject: Re: [yocto] unable to create softlink for precompilied 
> libraries
>
> On Thu, 2017-04-06 at 08:08 +, chandrasekhar c wrote:
>> Hi,
>> I have a third party precompilied libraries. I erota a recipe to copy to
>> rootfs and create   soft
>> links for the same. After doing bitbake it didnt throw any errors, 
>> but when I check th rootfs it didn't create any link file.
>> Below is my recipe
>>
>> do_install_append() {
>>   install -d ${D}${libdir}/
>> install -m 0777 ${S}/libMSO.so.1.2
>> ${D}${libdir}/libMSO.so.1.2
>> ln -sf libMSO.so.1.2 ${D}${libdir}/libMSO.so
>> install -m 0777 ${S}/libMSOComm.so.1.2
>> ${D}${libdir}/libMSOComm.so.1.2 //This is success
>> ln -sf libMSOComm.so.1.2 
>> ${D}${libdir}/libMSOComm.so.1 //This is success
>> ln -sf libMSOComm.so.1  ${D}${libdir}/libMSOComm.so 
>> //This is not happening } Can any one tell me a solution for this.
>
> Did you ship it with FILES_${PN} += " ${libdir}/libMSOComm.so " ?
>
>
>>
>> Thanks and Regards,
>> Chandrasekhar
> --
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto --
>
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
> --
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>

-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] unable to create softlink for precompilied libraries

2017-04-06 Thread chandrasekhar c
Hi,I have added thisFILES_${PN} +=  
${libdir}/libMSOComm.so line in my recipe still the issue is 
presentThanksChandraFrom: chandrasekhar c 
chandrasek...@evolute-sys.comSent: Thu, 6 Apr 2017 14:39:04 GMT+0530To: 
Fabien Lahoudere  fabien.lahoud...@collabora.co.ukCc: 
yocto@yoctoproject.org yocto@yoctoproject.orgSubject: Re: 
[yocto] unable to create softlink for precompilied librariesHi ,No, I will do 
the changes and let you know the result.Regards,ChandrasekharFrom: Fabien 
Lahoudere fabien.lahoud...@collabora.co.ukSent: Thu, 6 Apr 2017 
14:10:30 GMT+0530To: yocto@yoctoproject.orgSubject: Re: [yocto] unable to 
create softlink for precompilied librariesOn Thu, 2017-04-06 at 08:08 +, 
chandrasekhar c wrote: Hi,  I have a third party precompilied 
libraries. I erota a recipe to copy to rootfs and create  soft links 
for the same. After doing bitbake it didnt throw any errors
 , but when I check th rootfs it didnt create any link file. Below 
is my recipe  do_install_append() {
  install -d ${D}${libdir}/  
   install -m 0777 
${S}/libMSO.so.1.2 ${D}${libdir}/libMSO.so.1.2 
ln -sf libMSO.so.1.2 ${D}${libdir}/libMSO.so 
install -m 0777 
${S}/libMSOComm.so.1.2 ${D}${libdir}/libMSOComm.so.1.2 //This is success 
ln -sf 
libMSOComm.so.1.2 ${D}${libdir}/libMSOComm.so.1 //This is success  
   ln -sf libMSOComm.so.1 
${D}${libdir}/libMSOComm.so //This is not happening } Can any one 
tell me a solution for this.Did you ship it with FILES_${PN} +=  
${libdir}/libMSOComm.so
   ?  Thanks and Regards, 
Chandrasekhar--___yocto mailing 
listyocto@yoctoproject.orghttps://lists.yoctoproject.org/listinfo/yocto 
--___yocto mailing 
listyocto@yoctoproject.orghttps://lists.yoctoproject.org/listinfo/yocto-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] unable to create softlink for precompilied libraries

2017-04-06 Thread chandrasekhar c
Hi ,No, I will do the changes and let you know the 
result.Regards,ChandrasekharFrom: Fabien Lahoudere 
fabien.lahoud...@collabora.co.ukSent: Thu, 6 Apr 2017 14:10:30 
GMT+0530To: yocto@yoctoproject.orgSubject: Re: [yocto] unable to create 
softlink for precompilied librariesOn Thu, 2017-04-06 at 08:08 +, 
chandrasekhar c wrote: Hi,  I have a third party precompilied 
libraries. I erota a recipe to copy to rootfs and create  soft links 
for the same. After doing bitbake it didnt throw any errors, but when I check 
th rootfs it didnt create any link file. Below is my recipe 
 do_install_append() {   
   install -d ${D}${libdir}/ 
install -m 0777 ${S}/libMSO.so.1.2 
${D}${libdir}/libMSO.so.1.2   
  ln -sf libMSO.so.1.2 ${D}${libdir}/libMSO.so  
install -m 0777 
${S}/libMSOComm.so.1.2 ${D}${libdir}/libMSOComm.so.1.2 //This is success 
ln -sf 
libMSOComm.so.1.2 ${D}${libdir}/libMSOComm.so.1 //This is success  
   ln -sf libMSOComm.so.1 
${D}${libdir}/libMSOComm.so //This is not happening } Can any one 
tell me a solution for this.Did you ship it with FILES_${PN} +=  
${libdir}/libMSOComm.so  ?  Thanks and Regards, 
Chandrasekhar--___yocto mailing 
listyocto@yoctoproject.orghttps://lists.yoctoproject.org/listinfo/yocto-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] unable to create softlink for precompilied libraries

2017-04-06 Thread chandrasekhar c
Hi,I have a third party precompilied libraries. I erota a recipe to copy 
to rootfs and create soft links for the same. After doing bitbake it 
didnt throw any errors, but when I check th rootfs it didnt create any 
link file.Below is my recipedo_install_append() 
{install -d 
${D}${libdir}/  install -m 0777 
${S}/libMSO.so.1.2 ${D}${libdir}/libMSO.so.1.2 
 ln -sf libMSO.so.1.2 
${D}${libdir}/libMSO.so  install -m 
0777 ${S}/libMSOComm.so.1.2 ${D}${libdir}/libMSOComm.so.1.2 //This is 
success  ln -sf libMSOComm.so.1.2 
${D}${libdir}/libMSOComm.so.1 //This is success 
 ln -sf 
libMSOComm.so.1${D}${libdir}/libMSOComm.so //This is not happening}
Can any one tell me a solution for this.
Thanks and Regards,Chandrasekhar-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] Adding autologin to yocto

2016-08-10 Thread Chandrasekhar S
Hi, 

How to remove login prompt after booting completes. I am using 3.14.38
kernel version and using poky version 1.8. 

 

Thanks and Regards,

Chandrasekhar

-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto