Re: [yocto] QtCreator +CMake + meta-toolchain-qt5

2019-03-04 Thread Ilya Kondrashkin
Hi,

Check your /usr/lib/libc.so in SDK’s target rootfs.
Last time I experienced this problem /usr/lib/libc.so script contained absolute 
paths to ld-linux-armhf.so and real libc.so.
Changing these paths to relative fixes the problem. Unfortunately, I do not 
have the common fix for this.

Regards,
IK

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


[yocto] Multiple ubifs partition

2019-03-04 Thread Gabriele Zampieri
Hi all,

I'm trying to build a distribution that has multiple partitions. The
desiderata is something like:

- rootfs.ubifs mounted on /
- data.ubifs mounted on /data
- opt.ubifs mounted on /opt

I was wondering if there is a standard way to achieve the goal. I see that
there is a tool called wic, but it does not seems to support ubifs. I could
post process the tarball image and doing stuff with my scripts, but I'd
prefer doing this in a single bitbake run. Can you suggest something?

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


[yocto] Yocto Project Unassigned Bugs - Help Needed

2019-03-04 Thread sjolley.yp.pm
All,

 

The triage team meets weekly and does its best to handle the bugs reported
into the Bugzilla. The number of people attending that meeting has fallen,
as have the number of people available to help fix bugs. One of the things
we hear users report is they don't know how to help. We (the triage team)
are therefore going to start reporting out the currently 296 unassigned
bugs.

 

We're hoping people may be able to spare some time now and again to help out
with these.

 

Bugs are split into two types, "true bugs" where things don't work as they
should and "enhancements" which are features we'd want to add to the system.

 

There are also roughly four different "priority" classes right now, "2.7",
"2.8", "2.99" and "Future", the more pressing/urgent issues being in "2.7"
and then "2.8".

 

Please review this link and if a bug is something you would be able to help
with either take ownership of the bug, or send me
(stephen.k.jol...@intel.com  ) an e-mail
with the bug number you would like and I will assign it to you (please make
sure you have a Bugzilla account).

 

The list is at:
https://wiki.yoctoproject.org/wiki/Bug_Triage#Unassigned_Bugs

 

Thanks,

 

Stephen K. Jolley

Yocto Project Program Manager

*Cell:(208) 244-4460

* Email:  sjolley.yp...@gmail.com
 

 

 

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


[yocto] Reminder: Yocto Project Technical Team Meeting @ Monthly from 8am to 8:30am on the first Tuesday (PST)

2019-03-04 Thread sjolley.yp.pm
All,

 

Just a reminder we will hold the monthly Yocto Project Technical Meeting at
8am PST tomorrow. (3/5)  

 

Yocto Project Technical Team Meeting: We encourage people attending the
meeting to logon and announce themselves on the Yocto Project IRC chancel
during the meeting (optional):

Yocto IRC: http://webchat.freenode.net/?channels=#yocto

 

Wiki: https://www.yoctoproject.org/public-virtual-meetings/

 

WhenMonthly from 8am to 8:30am on the first Tuesday Pacific Time

Where   Zoom Meeting: https://zoom.us/j/990892712 

 

I will be tracking the minutes at:
https://docs.google.com/document/d/1Y5IIuE-z0Ykdl-DwuzUJh52flOZuhN_TSAfw2tdU
9pg/edit?ts=5c06b22d  Please request access if you want to assist in editing
them.  The world should have view access. 

 

Thanks,

 

Stephen K. Jolley

Yocto Project Program Manager

*Cell:(208) 244-4460

* Email:  sjolley.yp...@gmail.com
 

 

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


[yocto] Best practice dynamic service file

2019-03-04 Thread Jonas Andersson
Hi,

I have an systemd recipe to start an application as a service, i have
included an service file.
Now I am looking for an solution to be able to set settings in the service
file from Yocto variables, i have found recipes that use python to build
files during build.

What is best practice for this?

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


Re: [yocto] Best practice dynamic service file

2019-03-04 Thread ChenQi

On 03/05/2019 05:46 AM, Jonas Andersson wrote:

Hi,

I have an systemd recipe to start an application as a service, i have 
included an service file.
Now I am looking for an solution to be able to set settings in the 
service file from Yocto variables, i have found recipes that use 
python to build files during build.


What is best practice for this?

/Jonas




Use placeholders like VAR_TO_SUBSTITUDE, and then use 'sed' command to 
replace it in do_install.

e.g.
sed -i -e 's/VAR_TO_SUBSTITUDE/${VAR_IN_RECIPE}/g' path/to/my.service

Best Regards,
Chen Qi
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] Best practice dynamic service file

2019-03-04 Thread Jonas Andersson
Thanks for the tip, it is a bit sleeker than pulling in an python script.

Den tis 5 mars 2019 kl 02:05 skrev ChenQi :

> On 03/05/2019 05:46 AM, Jonas Andersson wrote:
>
> Hi,
>
> I have an systemd recipe to start an application as a service, i have
> included an service file.
> Now I am looking for an solution to be able to set settings in the service
> file from Yocto variables, i have found recipes that use python to build
> files during build.
>
> What is best practice for this?
>
> /Jonas
>
>
>
> Use placeholders like VAR_TO_SUBSTITUDE, and then use 'sed' command to
> replace it in do_install.
> e.g.
> sed -i -e 's/VAR_TO_SUBSTITUDE/${VAR_IN_RECIPE}/g' path/to/my.service
>
> Best Regards,
> Chen Qi
>
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] [opkg-utils] Question: why update-alternatives from opkg-utils chooses /usr/lib to hold database?

2019-03-04 Thread ChenQi

Hi All,

Recently I'm dealing with issue from which some discussion raises.
I'd like to ask why update-alternatives from opkg-utils chooses /usr/lib 
to hold its alternatives database?

I looked into debian, its update-alternatives chooses /var/lib by default.
Is there some design consideration? Or some historical reason?

Best Regards,
Chen Qi
--
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto