Re: [yocto] how to create symlink in dunfell after compilation of library file

2023-12-15 Thread Khem Raj
On Fri, Dec 15, 2023 at 10:01 AM Ron Eggler wrote: > > > On 2023-12-14 5:25 p.m., Khem Raj wrote: > > > > On Thu, Dec 14, 2023 at 5:13 PM Ron Eggler wrote: >> >> >> On 2023-12-14 5:00 p.m., Khem Raj wrote: >> >> On Thu, Dec 14, 2023 at 4:26 PM Mistyron wrote: >> >> Hi, >> >> I'm working with dun

Re: [yocto] how to create symlink in dunfell after compilation of library file

2023-12-15 Thread Mistyron
On 2023-12-14 5:25 p.m., Khem Raj wrote: On Thu, Dec 14, 2023 at 5:13 PM Ron Eggler wrote: On 2023-12-14 5:00 p.m., Khem Raj wrote: On Thu, Dec 14, 2023 at 4:26 PM Mistyron wrote: Hi, I'm working with dunfell and want to create a sym

Re: [yocto] how to create symlink in dunfell after compilation of library file

2023-12-14 Thread Mistyron
HI Eric, Thank you! I tried that as well: with ${D}/usr/lib but got: ERROR: aziot-keys-1.4.7.AUTOINC+91e058880c-r0 do_package: QA Issue: aziot-keys: Files/directories were installed but not shipped in any package:   /usr/lib   /usr/lib/libaziot_keys.so Please set FILES such that these items a

Re: [yocto] how to create symlink in dunfell after compilation of library file

2023-12-14 Thread Khem Raj
On Thu, Dec 14, 2023 at 5:13 PM Ron Eggler wrote: > > On 2023-12-14 5:00 p.m., Khem Raj wrote: > > On Thu, Dec 14, 2023 at 4:26 PM Mistyron > wrote: > > Hi, > > I'm working with dunfell and want to create a symlink after compilation > of the library: > > I added the following in aziot-keys_%.b

Re: [yocto] how to create symlink in dunfell after compilation of library file

2023-12-14 Thread Mistyron
On 2023-12-14 5:00 p.m., Khem Raj wrote: On Thu, Dec 14, 2023 at 4:26 PM Mistyron wrote: Hi, I'm working with dunfell and want to create a symlink after compilation of the library: I added the following in aziot-keys_%.bbapend: do_install_append() { install -d ${D}/usr/lib lnr $

Re: [yocto] how to create symlink in dunfell after compilation of library file

2023-12-14 Thread Eric Schwarz
Hi Ron, Am 15.12.2023 um 01:26 schrieb Mistyron: Hi, I'm working with dunfell and want to create a symlink after compilation of the library: I added the following in aziot-keys_%.bbapend: do_install_append() {     install -d ${D}/usr/lib     lnr ${D}/usr/lib64/rust/libaziot_keys.so ${D}/u

Re: [yocto] how to create symlink in dunfell after compilation of library file

2023-12-14 Thread Khem Raj
On Thu, Dec 14, 2023 at 4:26 PM Mistyron wrote: > > Hi, > > I'm working with dunfell and want to create a symlink after compilation > of the library: > > I added the following in aziot-keys_%.bbapend: > > do_install_append() { > install -d ${D}/usr/lib > lnr ${D}/usr/lib64/rust/libaziot_

[yocto] how to create symlink in dunfell after compilation of library file

2023-12-14 Thread Mistyron
Hi, I'm working with dunfell and want to create a symlink after compilation of the library: I added the following in aziot-keys_%.bbapend: do_install_append() {     install -d ${D}/usr/lib     lnr ${D}/usr/lib64/rust/libaziot_keys.so ${D}/usr/lib/libaziot_keys.so } Yet, after building the im