Re: [yocto] [qa-build-notification] QA notification for completed autobuilder build (yocto-4.0.17.rc1)

2024-03-13 Thread Steve Sakoman
This was an all green build, so we are good to start QA. Steve On Wed, Mar 13, 2024 at 2:03 PM Pokybuild User wrote: > > > A build flagged for QA (yocto-4.0.17.rc1) was completed on the autobuilder > and is available at: > > > https://autobuilder.yocto.io/pub/releases/yocto-4.0.17.rc1 > > >

[yocto] QA notification for completed autobuilder build (yocto-4.0.17.rc1)

2024-03-13 Thread Pokybuild User
A build flagged for QA (yocto-4.0.17.rc1) was completed on the autobuilder and is available at: https://autobuilder.yocto.io/pub/releases/yocto-4.0.17.rc1 Build URL: https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/6676 Build hash information: bitbake: 40fd5f4eef7460c

[yocto] [yocto-autobuilder2][PATCH] schedulers: metrics: Start with master for the daily full download

2024-03-13 Thread Yoann Congal
Change the order of metrics branches: * First, master at 5am which may do the full CVE download (might take 1 hour to finish). * Then, the other branches starting at 6am to allow them to use the fresh download. Signed-off-by: Yoann Congal --- schedulers.py | 6 -- 1 file changed, 4 inser

[yocto] [yocto-autobuilder-helper][PATCH] config.json: metrics: Switch to daily CVE DB full-download

2024-03-13 Thread Yoann Congal
By using CVE_DB_INCR_UPDATE_AGE_THRES = CVE_DB_INCR_UPDATE_AGE_THRES = 6h, cve-check will do a NVD database full download if the database is older than 6h or reuse it un-updated if its younger than 6h. Since the metrics builder is scheduled every day, that will result in a daily full-download. Tha

Re: [yocto] PACKAGECONFIG variable related patches

2024-03-13 Thread Alexander Kanavin
The idiomatic pattern is to reject conditional patches in code review, Seriously, not a good idea - try to find a way to apply the patch without conditions, and trigger the condition through a configuration option, or runtime check. Alex On Wed, 13 Mar 2024 at 17:40, Joel Winarske wrote: > > Wh

[yocto] PACKAGECONFIG variable related patches

2024-03-13 Thread Joel Winarske
What's the idiomatic pattern for applying (a) patch(es) if a PACKAGECONFIG variable is set? -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#62751): https://lists.yoctoproject.org/g/yocto/message/62751 Mute This Topic: https://lists.yoctoproject.org/m

Re: [yocto] How to use a single directory in multiple layers.

2024-03-13 Thread Alexander Kanavin
Perhaps you can explain what is in that directory, and why do you need access to it from another layer. It's not a common scenario. Alex On Wed, 13 Mar 2024 at 11:38, Saswati Nayak wrote: > > Hello All, > > I require guidance on utilizing a file directory present in the > 'meta-x' laye

Re: [yocto] How to use a single directory in multiple layers.

2024-03-13 Thread Chen Qi via lists.yoctoproject.org
I haven't tested, but you can try: In meta-x's layer.conf: THIS_SPECIFIC_DIR = "${LAYERDIR}" Then use the variable THIS_SPECIFIC_DIR in other places including meta-y. Regards, Qi On 3/13/24 18:38, Saswati Nayak wrote: Hello All,          I require guidance on utilizing a file directory prese

[yocto] How to use a single directory in multiple layers.

2024-03-13 Thread Saswati Nayak
Hello All, I require guidance on utilizing a file directory present in the 'meta-x' layer while also needing access to the same directory within the 'meta-y' layer. How can I achieve this while keeping the directory centralized in one layer? Thanks & Regards Saswati -=-=-=-=-=-=-=-=-=