[yocto] Uninstall the installed files using bbappend file

2017-07-07 Thread Aravindhlal G . S . S
Hi, One of the configuration files is installed in the recipe which is present in the generic layer. I cannot directly remove the install in the recipe present in generic layer as it would affect the other platforms. I would like to define a new bbappend file, which should be uninstalling that

[yocto] How to Skip recipes ?

2018-03-16 Thread Aravindhlal G . S . S
Yocto Gurus, I am trying to Skip running a recipe for a particular machine configuration and I am using the below statement in recipe to accomplish it, however I am getting the below errors. python () { if : raise bb.parse.SkipRecipe("Message") } Errors: NOTE: Runtime target 'arris

Re: [yocto] How to Skip recipes ?

2018-03-19 Thread Aravindhlal G . S . S
Thanks Khem. Got it working now ! -Aravindh -Original Message- From: Khem Raj Sent: Saturday, March 17, 2018 8:48 PM To: Aravindhlal G.S.S Cc: yocto@yoctoproject.org Subject: Re: [yocto] How to Skip recipes ? On Fri, Mar 16, 2018 at 10:22 PM, Aravindhlal G.S.S wrote: > Yocto Gurus,

[yocto] Recipe changes to pull/fetch the source code from local instead of a remote server.

2017-04-26 Thread Aravindhlal G . S . S
Hi Experts, I am trying to make changes in the bitbake files(recipes) to pull/fetch the source code from the local instead of the remote server. The SRC_URI points to the local workspace, however I see that while building the source code is pulled from a remote repository. Do I need to make an

Re: [yocto] Recipe changes to pull/fetch the source code from local instead of a remote server.

2017-05-02 Thread Aravindhlal G . S . S
[Gentle reminder] Can someone help me here, please ? Thanks -Aravindh From: Aravindhlal G.S.S Sent: 26 April 2017 20:29 To: yocto@yoctoproject.org Subject: Recipe changes to pull/fetch the source code from local instead of a remote server. Hi Experts, I am trying to make changes in the bitbak

Re: [yocto] Recipe changes to pull/fetch the source code from local instead of a remote server.

2017-05-03 Thread Aravindhlal G . S . S
Alex, Please see the recipe here. SUMMARY = "HAL for RDK CCSP components" HOMEPAGE = "http://github.com/belvedere-yocto/hal"; LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=175792518e4ac015ab6696d16c4f607e" PROVIDES = "virtual/ccsp-hal" SRC_URI = "${RDKB_CCSP_ROOT_G

[yocto] SOLVED RE: Recipe changes to pull/fetch the source code from local instead of a remote server.

2017-05-04 Thread Aravindhlal G . S . S
Alex, I went through all the variables and found that it is fetching the source code from the remote server. Thanks for your help, appreciate it. Best -Aravindh -Original Message- From: Alexander Kanavin [mailto:alexander.kana...@linux.intel.com] Sent: 03 May 2017 14:17 To: Aravindhlal

[yocto] nostamp is not working as expected

2019-07-25 Thread Aravindhlal G . S . S
Hi Yocto Experts, I wanted to run do_compile task every time and should not fetch from the sstate cache for the incremental builds. In the correspond recipe, I had set do_compile[nostamp] = "1" and still it does not run every time. It is re-run only after clean sstate. Am I missing something