[yocto] /etc/passwd root login issue.

2024-01-24 Thread sateesh m
I have created MP.appl, MP.prod, MP.serv three users and root user. After 
compile my recipe my order is coming as mentioned below /etc/passwd
MP.appl:x:0:1000::/home/MP.appl:/bin/sh
MP.prod:x:0:1001::/home/MP.prod:/bin/sh
MP.serv:x:0:1002::/home/MP.serv:/bin/sh
root:x:0:0:root:/home/root:/bin/sh

Because of this reason my credentials login is correct root & my password.  But 
it is entering to MP.appl@ even root.
So manually I rearrange oder as mentioned below root@  its coming. I want this 
order and why it is changing. if I want to get as mentioned below How can I 
rectify it.
root:x:0:0:root:/home/root:/bin/sh
MP.appl:x:0:1000::/home/MP.appl:/bin/sh
MP.prod:x:0:1001::/home/MP.prod:/bin/sh
MP.serv:x:0:1002::/home/MP.serv:/bin/sh

Thanks & Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#62281): https://lists.yoctoproject.org/g/yocto/message/62281
Mute This Topic: https://lists.yoctoproject.org/mt/103948839/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [yocto] Error while testing "bitbake core-image-base -c testimage -v" #bitbake #dunfell

2023-06-16 Thread sateesh m
Very helpful! Issue fixed.

Thank you Khem Raj.


Regards,
Sateesh


On Thu, 15 Jun, 2023, 10:37 pm Khem Raj,  wrote:

> for real targets. You need to do some steps
>
> add following to conf/local.conf
>
> TEST_SERVER_IP = ""
> MAGE_FEATURES:append = " debug-tweaks"
> DISTRO_FEATURES:append = " ptest"
> TEST_TARGET_IP = ""
> TEST_TARGET = "simpleremote"
>
> 2. Build image
> 3. flash this image on to target ( different boards may need different
> instructions )
> 4. boot the target and ensure its connected to network and has IP address
> 5. run bitbake -ctestimage 
>
> On Thu, Jun 15, 2023 at 9:42 AM sateesh m  wrote:
> >
> > We don't want to build qemu at all. We are building  for our custom
> target machine.
> >
> > Same commands we have executed we want to exclude qemu test running.
> Only our target  testimage should pass .
> >
> >
> > Regards,
> > Sateesh
> >
> > On Thu, 15 Jun, 2023, 10:10 pm Khem Raj,  wrote:
> >>
> >> On Wed, Jun 14, 2023 at 1:49 AM  wrote:
> >> >
> >> > Hi all,
> >> >
> >> > I was testing my core-image-base -c testimage with test-suit and
> getting error:-
> >> >
> >> > ERROR: core-image-base-1.0-r0 do_testimage: Output from runqemu:
> >> > runqemu - WARNING -
> /home/kush/khu/sources/build/tmp-glibc/deploy/images/board/core-image-base-board.qemuboot.conf
> doesn't exist
> >>
> >> You do not have image built. So first build the image then run tests.
> >>
> >> bitbake core-image-base
> >> bitbake core-image-base  -ctestimage
> >>
> >> Or you can add TESTIMAGE_AUTO:qemuall = "1" to local.conf  which will
> run
> >> the tests automatically when doing bitbake core-image-base for any
> >> qemu based machine target and second step is not needed.
> >>
> >> > ls: cannot access
> '/home/kush/khu/sources/build/tmp-glibc/deploy/images/board/*.qemuboot.conf':
> No such file or directory
> >> > runqemu - ERROR - Command 'ls -t
> /home/kush/khu/sources/build/tmp-glibc/deploy/images/board/*.qemuboot.conf'
> returned non-zero exit status 2.
> >> > runqemu - INFO - Cleaning up
> >> >
> >> >
> >> > WARNING: core-image-base-1.0-r0 do_testimage: Qemu ended
> unexpectedly, dump data from host is in
> /home/integration-team/kush/khu/sources/build/tmp-glibc/log/runtime-hostdump/202306141146_qemu
> >> > ERROR: core-image-base-1.0-r0 do_testimage: Error executing a python
> function in exec_python_func() autogenerated:
> >> >
> >> > The stack trace of python calls that resulted in this
> exception/failure was:
> >> > File: 'exec_python_func() autogenerated', lineno: 2, function:
> 
> >> >  0001:
> >> >  *** 0002:do_testimage(d)
> >> >  0003:
> >> > File:
> '/home/integration-team/kush/khu/sources/openembedded-core/meta/classes/testimage.bbclass',
> lineno: 129, function: do_testimage
> >> >  0125:netstat -an
> >> >  0126:}
> >> >  0127:
> >> >  0128:python do_testimage() {
> >> >  *** 0129:testimage_main(d)
> >> >  0130:}
> >> >  0131:
> >> >  0132:addtask testimage
> >> >  0133:do_testimage[nostamp] = "1"
> >> > File:
> '/home/integration-team/kush/khu/sources/openembedded-core/meta/classes/testimage.bbclass',
> lineno: 371, function: testimage_main
> >> >  0367:orig_sigterm_handler = signal.signal(signal.SIGTERM,
> sigterm_exception)
> >> >  0368:try:
> >> >  0369:# We need to check if runqemu ends unexpectedly
> >> >  0370:# or if the worker send us a SIGTERM
> >> >  *** 0371:tc.target.start(params=d.getVar("TEST_QEMUPARAMS"),
> runqemuparams=d.getVar("TEST_RUNQEMUPARAMS"))
> >> >  0372:import threading
> >> >  0373:try:
> >> >  0374:
> threading.Timer(int(d.getVar("TEST_OVERALL_TIMEOUT")), handle_test_timeout,
> (int(d.getVar("TEST_OVERALL_TIMEOUT")),)).start()
> >> >  0375:except ValueError:
> >> > File:
> '/home/integration-team/kush/khu/sources/openembedded-core/meta/lib/oeqa/core/target/qemu.py',
> lineno: 67, function: start
> >> >  0063:if self.runner.server_ip:
> >> >  0064:self.server_ip = self.runner.server_ip
> &g

Re: [yocto] Error while testing "bitbake core-image-base -c testimage -v" #bitbake #dunfell

2023-06-15 Thread sateesh m
We don't want to build qemu at all. We are building  for our custom target
machine.

Same commands we have executed we want to exclude qemu test running. Only
our target  testimage should pass .


Regards,
Sateesh

On Thu, 15 Jun, 2023, 10:10 pm Khem Raj,  wrote:

> On Wed, Jun 14, 2023 at 1:49 AM  wrote:
> >
> > Hi all,
> >
> > I was testing my core-image-base -c testimage with test-suit and getting
> error:-
> >
> > ERROR: core-image-base-1.0-r0 do_testimage: Output from runqemu:
> > runqemu - WARNING -
> /home/kush/khu/sources/build/tmp-glibc/deploy/images/board/core-image-base-board.qemuboot.conf
> doesn't exist
>
> You do not have image built. So first build the image then run tests.
>
> bitbake core-image-base
> bitbake core-image-base  -ctestimage
>
> Or you can add TESTIMAGE_AUTO:qemuall = "1" to local.conf  which will run
> the tests automatically when doing bitbake core-image-base for any
> qemu based machine target and second step is not needed.
>
> > ls: cannot access
> '/home/kush/khu/sources/build/tmp-glibc/deploy/images/board/*.qemuboot.conf':
> No such file or directory
> > runqemu - ERROR - Command 'ls -t
> /home/kush/khu/sources/build/tmp-glibc/deploy/images/board/*.qemuboot.conf'
> returned non-zero exit status 2.
> > runqemu - INFO - Cleaning up
> >
> >
> > WARNING: core-image-base-1.0-r0 do_testimage: Qemu ended unexpectedly,
> dump data from host is in
> /home/integration-team/kush/khu/sources/build/tmp-glibc/log/runtime-hostdump/202306141146_qemu
> > ERROR: core-image-base-1.0-r0 do_testimage: Error executing a python
> function in exec_python_func() autogenerated:
> >
> > The stack trace of python calls that resulted in this exception/failure
> was:
> > File: 'exec_python_func() autogenerated', lineno: 2, function: 
> >  0001:
> >  *** 0002:do_testimage(d)
> >  0003:
> > File:
> '/home/integration-team/kush/khu/sources/openembedded-core/meta/classes/testimage.bbclass',
> lineno: 129, function: do_testimage
> >  0125:netstat -an
> >  0126:}
> >  0127:
> >  0128:python do_testimage() {
> >  *** 0129:testimage_main(d)
> >  0130:}
> >  0131:
> >  0132:addtask testimage
> >  0133:do_testimage[nostamp] = "1"
> > File:
> '/home/integration-team/kush/khu/sources/openembedded-core/meta/classes/testimage.bbclass',
> lineno: 371, function: testimage_main
> >  0367:orig_sigterm_handler = signal.signal(signal.SIGTERM,
> sigterm_exception)
> >  0368:try:
> >  0369:# We need to check if runqemu ends unexpectedly
> >  0370:# or if the worker send us a SIGTERM
> >  *** 0371:tc.target.start(params=d.getVar("TEST_QEMUPARAMS"),
> runqemuparams=d.getVar("TEST_RUNQEMUPARAMS"))
> >  0372:import threading
> >  0373:try:
> >  0374:
> threading.Timer(int(d.getVar("TEST_OVERALL_TIMEOUT")), handle_test_timeout,
> (int(d.getVar("TEST_OVERALL_TIMEOUT")),)).start()
> >  0375:except ValueError:
> > File:
> '/home/integration-team/kush/khu/sources/openembedded-core/meta/lib/oeqa/core/target/qemu.py',
> lineno: 67, function: start
> >  0063:if self.runner.server_ip:
> >  0064:self.server_ip = self.runner.server_ip
> >  0065:else:
> >  0066:self.stop()
> >  *** 0067:raise RuntimeError("FAILED to start qemu - check
> the task log and the boot log")
> >  0068:
> >  0069:def stop(self):
> >  0070:self.runner.stop()
> > Exception: RuntimeError: FAILED to start qemu - check the task log and
> the boot log
> >
> > ERROR: Logfile of failure stored in:
> /home/kush/khu/sources/build/tmp-glibc/work/board-oe-linux/core-image-base/1.0-r0/temp/log.do_testimage.17255
> > ERROR: Task
> (/home/kush/khu/sources/meta-exaleap/recipes-images/images/core-image-base.bb:do_testimage)
> failed with exit code '1'
> >
> > Can anyone help me in this, where i am doing wrong.
> >
> > T
> > luvkhush
> >
> >
> >
>
> 
>
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#60319): https://lists.yoctoproject.org/g/yocto/message/60319
Mute This Topic: https://lists.yoctoproject.org/mt/99523749/21656
Mute #bitbake:https://lists.yoctoproject.org/g/yocto/mutehashtag/bitbake
Mute #dunfell:https://lists.yoctoproject.org/g/yocto/mutehashtag/dunfell
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] firewalld isssue #yocto

2022-03-28 Thread sateesh m
Hi Team,

I have built a custom image core-image-base on riscv target machine installed 
nftables,firewalld,JSON packages support. I am using firewalld_0.9.3 sources 
depends nftables-python is present. But I am getting error python-nftables. Can 
you please guide me on what dependent I missed here? If suppose firewalld 
should work means, What packages should  I install?

But while running firewalld status is always failed mode.
Using $firewall-cmd --reload  I am facing a  problem

Error: COMMAND_FAILED: 'python-nftables' failed: internal:0:0-0: Error: Could 
not process rule: No such file or directory

JSON blob:
{"nftables": [{"metainfo": {"json_schema_version": 1}}, {"add": {"chain": 
{"family": "inet", "table": "firewalld", "name": "raw_PREROUTING", "type": 
"filter", "hook": "prerouting", "prio": -290}}}, {"add": {"chain": {"family": 
"inet", "table": "firewalld", "name": "mangle_PREROUTING", "type": "filter", 
"hook": "prerouting", "prio": -140}}}, {"add": {"chain": {"family": "inet", 
"table": "firewalld", "name": "mangle_PREROUTING_POLICIES_pre"}}}, {"add": 
{"rule": {"family": "inet", "table": "firewalld", "chain": "mangle_PREROUTING", 
"expr": [{"jump": {"target": "mangle_PREROUTING_POLICIES_pre"}}]}}}, {"add": 
{"chain": {"family": "inet", "table": "firewalld", "name": 
"mangle_PREROUTING_ZONES"}}}, {"add": {"rule": {"family": "inet", "table": 
"firewalld", "chain": "mangle_PREROUTING", "expr": [{"jump": {"target": 
"mangle_PREROUTING_ZONES"}}]}}}, {"add": {"chain": {"family": "inet", "table": 
"firewalld", "name": "mangle_PREROUTING_POLICIES_post"}}}, {"add": {"rule": 
{"family": "inet", "table": "firewalld", "chain": "mangle_PREROUTING", "expr": 
[{"jump": {"target": "mangle_PREROUTING_POLICIES_post"}}]}}}, {"add": {"chain": 
{"family": "ip", "table": "firewalld", "name": "nat_PREROUTING", "type": "nat", 
"hook": "prerouting", "prio": -90}}}, {"add": {"chain": {"family": "ip", 
"table": "firewalld", "name": "nat_PREROUTING_POLICIES_pre"}}}, {"add": 
{"rule": {"family": "ip", "table": "firewalld", "chain": "nat_PREROUTING", 
"expr": [{"jump": {"target": "nat_PREROUTING_POLICIES_pre"}}]}}}, {"add": 
{"chain": {"family": "ip", "table": "firewalld", "name": 
"nat_PREROUTING_ZONES"}}}, {"add": {"rule": {"family": "ip", "table": 
"firewalld", "chain": "nat_PREROUTING", "expr": [{"jump": {"target": 
"nat_PREROUTING_ZONES"}}]}}}, {"add": {"chain": {"family": "ip", "table": 
"firewalld", "name": "nat_PREROUTING_POLICIES_post"}}}, {"add": {"rule": 
{"family": "ip", "table": "firewalld", "chain": "nat_PREROUTING", "expr": 
[{"jump": {"target": "nat_PREROUTING_POLICIES_post"}}]}}}, {"add": {"chain": 
{"family": "ip", "table": "firewalld", "name": "nat_POSTROUTING", "type": 
"nat", "hook": "postrouting", "prio": 110}}}, {"add": {"chain": {"family": 
"ip", "table": "firewalld", "name": "nat_POSTROUTING_POLICIES_pre"}}}, {"add": 
{"rule": {"family": "ip", "table": "firewalld", "chain": "nat_POSTROUTING", 
"expr": [{"jump": {"target": "nat_POSTROUTING_POLICIES_pre"}}]}}}, {"add": 
{"chain": {"family": "ip", "table": "firewalld", "name": 
"nat_POSTROUTING_ZONES"}}}, {"add": {"rule": {"family": "ip", "table": 
"firewalld", "chain": "nat_POSTROUTING", "expr": [{"jump": {"target": 
"nat_POSTROUTING_ZONES"}}]}}}, {"add": {"chain": {"family": "ip", "table": 
"firewalld", "name": "nat_POSTROUTING_POLICIES_post"}}}, {"add": {"rule": 
{"family": "ip", "table": "firewalld", "chain": "nat_POSTROUTING", "expr": 
[{"jump": {"target": "nat_POSTROUTING_POLICIES_post"}}]}}}, {"add": {"chain": 
{"family": "ip6", "table": "firewalld", "name": "nat_PREROUTING", "type": 
"nat", "hook": "prerouting", "prio": -90}}}, {"add": {"chain": {"family": 
"ip6", "table": "firewalld", "name": "nat_PREROUTING_POLICIES_pre"}}}, {"add": 
{"rule": {"family": "ip6", "table": "firewalld", "chain": "nat_PREROUTING", 
"expr": [{"jump": {"target": "nat_PREROUTING_POLICIES_pre"}}]}}}, {"add": 
{"chain": {"family": "ip6", "table": "firewalld", "name": 
"nat_PREROUTING_ZONES"}}}, {"add": {"rule": {"family": "ip6", "table": 
"firewalld", "chain": "nat_PREROUTING", "expr": [{"jump": {"target": 
"nat_PREROUTING_ZONES"}}]}}}, {"add": {"chain": {"family": "ip6", "table": 
"firewalld", "name": "nat_PREROUTING_POLICIES_post"}}}, {"add": {"rule": 
{"family": "ip6", "table": "firewalld", "chain": "nat_PREROUTING", "expr": 
[{"jump": {"target": "nat_PREROUTING_POLICIES_post"}}]}}}, {"add": {"chain": 
{"family": "ip6", "table": "firewalld", "name": "nat_POSTROUTING", "type": 
"nat", "hook": "postrouting", "prio": 110}}}, {"add": {"chain": {"family": 
"ip6", "table": "firewalld", "name": "nat_POSTROUTING_POLICIES_pre"}}}, {"add": 
{"rule": {"family": "ip6", "table": "firewalld", "chain": "nat_POSTROUTING", 
"expr": [{"jump": {"target": "nat_POSTROUTING_POLICIES_pre"}}]}}}, {"add": 
{"chain": {"family": "ip6", "table": "firewalld", "name": 
"nat_POSTROUTING_ZONES"}}}, {"add": {"rule": {"family": "ip6", "table": 
"firewalld", "chain": "nat_POSTROUTING", "expr": 

[yocto] firewalld isssue #yocto

2022-03-28 Thread sateesh m
Hi Team,

I have built a custom image core-image-base with nftables,firewalld,json 
packages support. I am using firewalld_0.9.3 sources depends nftables-python is 
present. But I am getting error python-nftables. Can you please guide me on 
what dependent I missed here? If suppose firewalld should work means, What 
packages should  I install?

But while running firewalld status is always failed mode.
Using $firewall-cmd --reload  I am facing a  problem

Error: COMMAND_FAILED: 'python-nftables' failed: internal:0:0-0: Error: Could 
not process rule: No such file or directory

JSON blob:
{"nftables": [{"metainfo": {"json_schema_version": 1}}, {"add": {"chain": 
{"family": "inet", "table": "firewalld", "name": "raw_PREROUTING", "type": 
"filter", "hook": "prerouting", "prio": -290}}}, {"add": {"chain": {"family": 
"inet", "table": "firewalld", "name": "mangle_PREROUTING", "type": "filter", 
"hook": "prerouting", "prio": -140}}}, {"add": {"chain": {"family": "inet", 
"table": "firewalld", "name": "mangle_PREROUTING_POLICIES_pre"}}}, {"add": 
{"rule": {"family": "inet", "table": "firewalld", "chain": "mangle_PREROUTING", 
"expr": [{"jump": {"target": "mangle_PREROUTING_POLICIES_pre"}}]}}}, {"add": 
{"chain": {"family": "inet", "table": "firewalld", "name": 
"mangle_PREROUTING_ZONES"}}}, {"add": {"rule": {"family": "inet", "table": 
"firewalld", "chain": "mangle_PREROUTING", "expr": [{"jump": {"target": 
"mangle_PREROUTING_ZONES"}}]}}}, {"add": {"chain": {"family": "inet", "table": 
"firewalld", "name": "mangle_PREROUTING_POLICIES_post"}}}, {"add": {"rule": 
{"family": "inet", "table": "firewalld", "chain": "mangle_PREROUTING", "expr": 
[{"jump": {"target": "mangle_PREROUTING_POLICIES_post"}}]}}}, {"add": {"chain": 
{"family": "ip", "table": "firewalld", "name": "nat_PREROUTING", "type": "nat", 
"hook": "prerouting", "prio": -90}}}, {"add": {"chain": {"family": "ip", 
"table": "firewalld", "name": "nat_PREROUTING_POLICIES_pre"}}}, {"add": 
{"rule": {"family": "ip", "table": "firewalld", "chain": "nat_PREROUTING", 
"expr": [{"jump": {"target": "nat_PREROUTING_POLICIES_pre"}}]}}}, {"add": 
{"chain": {"family": "ip", "table": "firewalld", "name": 
"nat_PREROUTING_ZONES"}}}, {"add": {"rule": {"family": "ip", "table": 
"firewalld", "chain": "nat_PREROUTING", "expr": [{"jump": {"target": 
"nat_PREROUTING_ZONES"}}]}}}, {"add": {"chain": {"family": "ip", "table": 
"firewalld", "name": "nat_PREROUTING_POLICIES_post"}}}, {"add": {"rule": 
{"family": "ip", "table": "firewalld", "chain": "nat_PREROUTING", "expr": 
[{"jump": {"target": "nat_PREROUTING_POLICIES_post"}}]}}}, {"add": {"chain": 
{"family": "ip", "table": "firewalld", "name": "nat_POSTROUTING", "type": 
"nat", "hook": "postrouting", "prio": 110}}}, {"add": {"chain": {"family": 
"ip", "table": "firewalld", "name": "nat_POSTROUTING_POLICIES_pre"}}}, {"add": 
{"rule": {"family": "ip", "table": "firewalld", "chain": "nat_POSTROUTING", 
"expr": [{"jump": {"target": "nat_POSTROUTING_POLICIES_pre"}}]}}}, {"add": 
{"chain": {"family": "ip", "table": "firewalld", "name": 
"nat_POSTROUTING_ZONES"}}}, {"add": {"rule": {"family": "ip", "table": 
"firewalld", "chain": "nat_POSTROUTING", "expr": [{"jump": {"target": 
"nat_POSTROUTING_ZONES"}}]}}}, {"add": {"chain": {"family": "ip", "table": 
"firewalld", "name": "nat_POSTROUTING_POLICIES_post"}}}, {"add": {"rule": 
{"family": "ip", "table": "firewalld", "chain": "nat_POSTROUTING", "expr": 
[{"jump": {"target": "nat_POSTROUTING_POLICIES_post"}}]}}}, {"add": {"chain": 
{"family": "ip6", "table": "firewalld", "name": "nat_PREROUTING", "type": 
"nat", "hook": "prerouting", "prio": -90}}}, {"add": {"chain": {"family": 
"ip6", "table": "firewalld", "name": "nat_PREROUTING_POLICIES_pre"}}}, {"add": 
{"rule": {"family": "ip6", "table": "firewalld", "chain": "nat_PREROUTING", 
"expr": [{"jump": {"target": "nat_PREROUTING_POLICIES_pre"}}]}}}, {"add": 
{"chain": {"family": "ip6", "table": "firewalld", "name": 
"nat_PREROUTING_ZONES"}}}, {"add": {"rule": {"family": "ip6", "table": 
"firewalld", "chain": "nat_PREROUTING", "expr": [{"jump": {"target": 
"nat_PREROUTING_ZONES"}}]}}}, {"add": {"chain": {"family": "ip6", "table": 
"firewalld", "name": "nat_PREROUTING_POLICIES_post"}}}, {"add": {"rule": 
{"family": "ip6", "table": "firewalld", "chain": "nat_PREROUTING", "expr": 
[{"jump": {"target": "nat_PREROUTING_POLICIES_post"}}]}}}, {"add": {"chain": 
{"family": "ip6", "table": "firewalld", "name": "nat_POSTROUTING", "type": 
"nat", "hook": "postrouting", "prio": 110}}}, {"add": {"chain": {"family": 
"ip6", "table": "firewalld", "name": "nat_POSTROUTING_POLICIES_pre"}}}, {"add": 
{"rule": {"family": "ip6", "table": "firewalld", "chain": "nat_POSTROUTING", 
"expr": [{"jump": {"target": "nat_POSTROUTING_POLICIES_pre"}}]}}}, {"add": 
{"chain": {"family": "ip6", "table": "firewalld", "name": 
"nat_POSTROUTING_ZONES"}}}, {"add": {"rule": {"family": "ip6", "table": 
"firewalld", "chain": "nat_POSTROUTING", "expr": [{"jump": {"target": 

[yocto] bus service inactive issue #yocto

2022-03-24 Thread sateesh m
Hi Team,

I am trying to start service dbus. I have built an image on riscv target 
machine. I want to access firewalld , firewalld service is running but 
dbus-deamon service also should be start to get a client response.
I have built packages using gatesgarth branch  systemd,dbus, firewalld 
installed. But facing problems.

So natively installed systemd,dbus,dbus-broker but still service is inactive 
state only using systemctl I am trying to start services.

issue :

aded: loaded 
([]8;;file://Unmatched-2.0.2/lib/systemd/system/dbus-broker.serviceG/lib/systemd/system/dbus-broker.service[]8;;G;
 enabled; vendor preset: enable
d)
Active: inactive (dead)
TriggeredBy: ○ dbus.socket
Docs: []8;;man:dbus-broker-launch(1)Gman:dbus-broker-launch(1)[]8;;G

Can anybody know this please guide me.
Thanking you in advance.

--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#56560): https://lists.yoctoproject.org/g/yocto/message/56560
Mute This Topic: https://lists.yoctoproject.org/mt/90016293/21656
Mute #yocto:https://lists.yoctoproject.org/g/yocto/mutehashtag/yocto
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] pkg_postinst_ontarget issue firewalld

2022-03-24 Thread sateesh m
Hi Team,

I am facing the issue pkg_postinit. I tried to delete this on firewalld recipe 
side but I have not identified it. Can you please anybody know this issue 
please guide me.
ERROR: core-image-base-1.0-r0 do_rootfs: Postinstall scriptlets of 
['firewalld'] have failed. If the intention is to defer them to first boot,
then please place them into pkg_postinst_ontarget_${PN} ().
--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#56547): https://lists.yoctoproject.org/g/yocto/message/56547
Mute This Topic: https://lists.yoctoproject.org/mt/89994568/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] freecell-solver fetch issue

2022-02-11 Thread sateesh m
Hi Team,

I am trying to install the Freecell-solver package. I am facing a problem 
fetcher issue. Can anybody know how to fix this issue? please guide me.

WARNING: 
/home/integration-team/kde2/meta-qt5-extra/recipes-kde/packagegroups/kde-games.bb:do_build
 is tainted from a forced run                              | ETA:  0:00:00
Initialising tasks: 100% 
||
 Time: 0:00:01
Sstate summary: Wanted 12 Found 0 Missed 12 Current 1387 (0% match, 99% 
complete)
NOTE: Executing Tasks
WARNING: freecell-solver-5.24.0-r0 do_fetch: Failed to fetch URL 
http://fc-solve.shlomifish.org/downloads/fc-solve/freecell-solver-5.24.0.tar.xz,
 attempting MIRRORS if available
ERROR: freecell-solver-5.24.0-r0 do_fetch: Fetcher failure: Fetch command 
export PSEUDO_DISABLED=1; export 
DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1001/bus"; export 
PATH="/home/integration-team/kde2/build/tmp-glibc/work/riscv64-oe-linux/freecell-solver/5.24.0-r0/recipe-sysroot-native/usr/bin/perl-native:/home/integration-team/kde2/build/tmp-glibc/work/riscv64-oe-linux/freecell-solver/5.24.0-r0/recipe-sysroot-native/usr/bin/python3-native:/home/integration-team/kde2/openembedded-core/scripts:/home/integration-team/kde2/build/tmp-glibc/work/riscv64-oe-linux/freecell-solver/5.24.0-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux:/home/integration-team/kde2/build/tmp-glibc/work/riscv64-oe-linux/freecell-solver/5.24.0-r0/recipe-sysroot/usr/bin/crossscripts:/home/integration-team/kde2/build/tmp-glibc/work/riscv64-oe-linux/freecell-solver/5.24.0-r0/recipe-sysroot-native/usr/sbin:/home/integration-team/kde2/build/tmp-glibc/work/riscv64-oe-linux/freecell-solver/5.24.0-r0/recipe-sysroot-native/usr/bin:/home/integration-team/kde2/exaleap-build/tmp-glibc/work/riscv64-oe-linux/freecell-solver/5.24.0-r0/recipe-sysroot-native/sbin:/home/integration-team/kde2/build/tmp-glibc/work/riscv64-oe-linux/freecell-solver/5.24.0-r0/recipe-sysroot-native/bin:/home/integration-team/kde2/bitbake/bin:/home/integration-team/kde2/build/tmp-glibc/hosttools";
 export HOME="/home/integration-team"; /usr/bin/env wget -t 2 -T 30 
--passive-ftp --no-check-certificate -P 
/home/integration-team/kde2/build/downloads 
'http://fc-solve.shlomifish.org/downloads/fc-solve/freecell-solver-5.24.0.tar.xz'
 --progress=dot -v failed with exit code 8, no output
ERROR: freecell-solver-5.24.0-r0 do_fetch: Fetcher failure for URL: 
'http://fc-solve.shlomifish.org/downloads/fc-solve/freecell-solver-5.24.0.tar.xz'.
 Unable to fetch URL from any source.
ERROR: Logfile of failure stored in: 
/home/integration-team/kde2/build/tmp-glibc/work/riscv64-oe-linux/freecell-solver/5.24.0-r0/temp/log.do_fetch.22394
ERROR: Task 
(/home/integration-team/kde2/meta-qt5-extra/recipes-support/shlomif/freecell-solver.bb:do_fetch)
 failed with exit code '1'
NOTE: Tasks Summary: Attempted 4421 tasks of which 4420 didn't need to be rerun 
and 1 failed.

Summary: 1 task failed:
/home/integration-team/kde2/meta-qt5-extra/recipes-support/shlomif/freecell-solver.bb:do_fetch
Summary: There were 2 WARNING messages shown.
Summary: There were 2 ERROR messages shown, returning a non-zero exit code.

--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#56157): https://lists.yoctoproject.org/g/yocto/message/56157
Mute This Topic: https://lists.yoctoproject.org/mt/89070237/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] The "/etc/resolv.conf" file becomes empty after each restart #yocto

2022-01-13 Thread sateesh m
Hi,

I assume it shouldn't be empty resov. conf. Manually I am updating nameserver 
always. but when I reboot my machine it's empty. So for this, I want to make 
permanent my nameserver always. I have added packages support 
IMAGE_INSTALL_append = " resolvconf" but I am not able to fix this solution. 
Can anybody know this issue please guide me. How always will be automatically 
set without manual effort?

--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#55832): https://lists.yoctoproject.org/g/yocto/message/55832
Mute This Topic: https://lists.yoctoproject.org/mt/88392943/21656
Mute #yocto:https://lists.yoctoproject.org/g/yocto/mutehashtag/yocto
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] libsdl2 virtual/nativesdk-libgles2 issue

2021-12-13 Thread sateesh m
Hi Team,

I am facing a problem libsdl2 while building the core-image-base. Can anybody 
know this please suggest me.

NOTE: Resolving any missing task queue dependencies
ERROR: Nothing PROVIDES 'virtual/nativesdk-libgles2' (but 
virtual:nativesdk:/home/sateesh/sample-kde/openembedded-core/meta/recipes-graphics/libsdl2/libsdl2_2.0.12.bb
 DEPENDS on or otherwise requires it). Close matches:
virtual/nativesdk-libgl
virtual/nativesdk-libsdl
virtual/nativesdk-libsdl2
NOTE: Runtime target 'nativesdk-qemu' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['nativesdk-qemu', 
'nativesdk-libsdl2', 'virtual/nativesdk-libgles2']
NOTE: Runtime target 'nativesdk-packagegroup-sdk-host' is unbuildable, 
removing...
Missing or unbuildable dependency chain was: 
['nativesdk-packagegroup-sdk-host', 'nativesdk-qemu', 'nativesdk-libsdl2', 
'virtual/nativesdk-libgles2']
ERROR: Required build target 'core-image-base' has no buildable providers.
Missing or unbuildable dependency chain was: ['core-image-base', 
'nativesdk-packagegroup-sdk-host', 'nativesdk-qemu', 'nativesdk-libsdl2', 
'virtual/nativesdk-libgles2']

--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#55573): https://lists.yoctoproject.org/g/yocto/message/55573
Mute This Topic: https://lists.yoctoproject.org/mt/87716731/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] kwayland-server-5.23.1

2021-12-09 Thread sateesh m
Hi Team,

I am facing a problem with the Kwayland-server package issue. Can anybody know 
about this package issue or patchwork can you please guide me.

ERROR: kwayland-server-5.23.1-r0 do_compile: Execution of 
'/home/sample-kde/build/tmp-glibc/work/riscv64-oe-linux/kwayland-server/5.23.1-r0/temp/run.do_compile.23397'
 failed with exit code 1:
ninja: error: '/usr/share/wayland/wayland.xml', needed by 
'src/server/qwayland-server-wayland.cpp', missing and no known rule to make it
WARNING: exit code 1 from a shell command.

ERROR: Logfile of failure stored in: 
/home/sample-kde/build/tmp-glibc/work/riscv64-oe-linux/kwayland-server/5.23.1-r0/temp/log.do_compile.23397
Log data follows:
| DEBUG: Executing shell function do_compile
| NOTE: VERBOSE=1 cmake --build 
/home/sateesh/sample-kde/build/tmp-glibc/work/riscv64-oe-linux/kwayland-server/5.23.1-r0/build
 --target all --
| ninja: error: '/usr/share/wayland/wayland.xml', needed by 
'src/server/qwayland-server-wayland.cpp', missing and no known rule to make it
| WARNING: exit code 1 from a shell command.
| ERROR: Execution of 
'/home/sample-kde/build/tmp-glibc/work/riscv64-oe-linux/kwayland-server/5.23.1-r0/temp/run.do_compile.23397'
 failed with exit code 1:
| ninja: error: '/usr/share/wayland/wayland.xml', needed by 
'src/server/qwayland-server-wayland.cpp', missing and no known rule to make it
| WARNING: exit code 1 from a shell command.
|
ERROR: Task 
(/home/sample-kde/yocto-meta-kde/recipes-plasma/kwayland-server_5.23.1.bb:do_compile)
 failed with exit code '1'
NOTE: Tasks Summary: Attempted 3506 tasks of which 3500 didn't need to be rerun 
and 1 failed.

Summary: 1 task failed:
/home/sample-kde/yocto-meta-kde/recipes-plasma/kwayland-server_5.23.1.bb:do_compile
Summary: There was 1 ERROR message shown, returning a non-zero exit code.

--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#55534): https://lists.yoctoproject.org/g/yocto/message/55534
Mute This Topic: https://lists.yoctoproject.org/mt/87611519/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] Using meta-qt5-extra layer build KDE support on riscv target #yocto

2021-10-12 Thread sateesh m
Hi Guys,

I am facing bellow error while building KDE support using meta-qt5-extra 
layer.can any body know please suggest me how can i fix this problem.

I have added already qttools -> this will provide Qt5LinguistTools but getting 
below error.

Error displayed:
 CMake Error at /usr/share/ECM/modules/ECMPoQmTools.cmake:144 (find_package): 
Could not find a package configuration file provided by "Qt5LinguistTools"  
with any of the following names:

    Qt5LinguistToolsConfig.cmake
    qt5linguisttools-config.cmake

Add the installation prefix of "Qt5LinguistTools" to CMAKE_PREFIX_PATH or  set 
"Qt5LinguistTools_DIR" to a directory containing one of the above
files.  If "Qt5LinguistTools" provides a separate development package or  SDK, 
be sure it has been installed.
Call Stack (most recent call first):
/usr/share/ECM/modules/ECMPoQmTools.cmake:234 (ecm_process_po_files_as_qm)  
CMakeLists.txt:317 (ecm_install_po_files_as_qm)

-- Configuring incomplete, errors occurred!
See also "/usr/src/kde/phonon-4.10.3/build/CMakeFiles/CMakeOutput.log".

--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#55035): https://lists.yoctoproject.org/g/yocto/message/55035
Mute This Topic: https://lists.yoctoproject.org/mt/86260799/21656
Mute #yocto:https://lists.yoctoproject.org/g/yocto/mutehashtag/yocto
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] extra-cmake-modules-native-5.81.0 Package porting on riscv target using meta-qt5-extra layer #yocto

2021-10-11 Thread sateesh m
Hi Guys,

I am facing compile-time issue (extra-cmake-modules-native-5.81.0 ). Using 
bitbake extra-cmake-modules it's compiled fine. It is dependent on other 
packages. Using bitbake extra-cmake-modules is compiled success. other 
dependent package expecting extra-cmake-modules-native.

build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.81.0-r0/temp/run.do_compile.21147'
 failed with exit code 1:
build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.81.0-r0/build/docs/html
 > build-html.log
*FAILED: docs/doc_format_html*
*Could not import extension ecm (exception: cannot import name 'htmlescape')

* How can I fix this issue or build time it is going to docs so how I can 
disable it.  or any patch available gives some suggestions to fix this issue.

Thanks & Regards,
Sateesh

Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#55029): https://lists.yoctoproject.org/g/yocto/message/55029
Mute This Topic: https://lists.yoctoproject.org/mt/86256016/21656
Mute #yocto:https://lists.yoctoproject.org/g/yocto/mutehashtag/yocto
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] extra-cmake-modules #yocto

2021-09-09 Thread sateesh m
Hi All,

I am trying to build an extra-cmake-modules package. Using bitbake command 
"bitbake extra-cmake-modules" compiled succuss. But using bitbake 
core-image-plasma-mobile throwing error. So I want to disable native build on 
the x86 platform is it possible? or else can anybody know how to fix this issue 
suggest me any corrections required.

ERROR: extra-cmake-modules-native-5.79.0-r0 do_compile: Execution of 
'/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/temp/run.do_compile.20787'
 failed with exit code 1:
[1/2] cd 
/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/build/docs
 && /usr/local/bin/sphinx-build -c 
/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/build/docs
 -d 
/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/build/docs/doctrees
 -b html 
/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/git/docs
 
/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/build/docs/html
 > build-html.log
FAILED: docs/doc_format_html
cd 
/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/build/docs
 && /usr/local/bin/sphinx-build -c 
/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/build/docs
 -d 
/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/build/docs/doctrees
 -b html 
/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/git/docs
 
/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/build/docs/html
 > build-html.log

Extension error:
Could not import extension ecm (exception: cannot import name 'htmlescape')
ninja: build stopped: subcommand failed.
WARNING: exit code 1 from a shell command.

ERROR: Logfile of failure stored in: 
/home/sateesh/KDE/sources/fu540-build/tmp-glibc/work/x86_64-linux/extra-cmake-modules-native/5.79.0-r0/temp/log.do_compile.20787

--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#54679): https://lists.yoctoproject.org/g/yocto/message/54679
Mute This Topic: https://lists.yoctoproject.org/mt/85478700/21656
Mute #yocto:https://lists.yoctoproject.org/g/yocto/mutehashtag/yocto
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] kcrash package compile issue

2021-08-29 Thread sateesh m
Hi Team,

I am trying to build kcrash package. I got below error.Can anybody know how to 
fix this please guide me.

ERROR: kcrash-5.85.0-r0 do_configure: Execution of 
'/home/yocto/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/kcrash/5.85.0-r0/temp/run.do_configure.12650'
 failed with exit code 1:

-- The C compiler identification is GNU 10.2.0

-- The CXX compiler identification is GNU 10.2.0

-- Detecting C compiler ABI info

-- Detecting C compiler ABI info - done

-- Check for working C compiler: 
/home/yocto/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/kcrash/5.85.0-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-gcc
 - skipped

-- Detecting C compile features

-- Detecting C compile features - done

-- Detecting CXX compiler ABI info

-- Detecting CXX compiler ABI info - done

-- Check for working CXX compiler: 
/home/yocto/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/kcrash/5.85.0-r0/recipe-sysroot-native/usr/bin/riscv64-oe-linux/riscv64-oe-linux-g++
 - skipped

-- Detecting CXX compile features

-- Detecting CXX compile features - done

--

Installing in /usr. Run 
/home/yocto/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/kcrash/5.85.0-r0/build/prefix.sh
 to set the environment for KCrash.

-- Looking for __GLIBC__

-- Looking for __GLIBC__ - found

-- Performing Test _OFFT_IS_64BIT

-- Performing Test _OFFT_IS_64BIT - Success

-- Performing Test HAVE_DATE_TIME

-- Performing Test HAVE_DATE_TIME - Success

-- Performing Test BSYMBOLICFUNCTIONS_AVAILABLE

-- Performing Test BSYMBOLICFUNCTIONS_AVAILABLE - Success

fatal: not a git repository (or any of the parent directories): .git

-- Found X11: 
/home/yocto/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/kcrash/5.85.0-r0/recipe-sysroot/usr/include

-- Looking for XOpenDisplay in 
/home/yocto/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/kcrash/5.85.0-r0/recipe-sysroot/usr/lib/libX11.so;/home/sateesh/yocto/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/kcrash/5.85.0-r0/recipe-sysroot/usr/lib/libXext.so

-- Looking for XOpenDisplay in 
/home/yocto/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/kcrash/5.85.0-r0/recipe-sysroot/usr/lib/libX11.so;/home/sateesh/yocto/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/kcrash/5.85.0-r0/recipe-sysroot/usr/lib/libXext.so
 - found

-- Looking for gethostbyname

-- Looking for gethostbyname - found

-- Looking for connect

-- Looking for connect - found

-- Looking for remove

-- Looking for remove - found

-- Looking for shmat

-- Looking for shmat - found

-- Looking for IceConnectionNumber in ICE

-- Looking for IceConnectionNumber in ICE - found

-- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY

-- Performing Test COMPILER_HAS_HIDDEN_VISIBILITY - Success

-- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY

-- Performing Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY - Success

-- Performing Test COMPILER_HAS_DEPRECATED_ATTR

-- Performing Test COMPILER_HAS_DEPRECATED_ATTR - Success

-- The following features have been enabled:

* Core Pattern Raising, Raising signals to kernel core patterns (iff the 
pattern is a process). You may wish to not install drkonqi if this can cause a 
UI conflict.

-- The following OPTIONAL packages have been found:

* X11

-- The following REQUIRED packages have been found:

* ECM (required version >= 5.85.0), Extra CMake Modules., 


* Qt5 (required version >= 5.15.0)

* Qt5Core (required version >= 5.15.0)

* KF5CoreAddons (required version >= 5.85.0)

* Qt5Gui (required version >= 5.15.0)

* KF5WindowSystem (required version >= 5.85.0)

* Qt5X11Extras (required version >= 5.15.0)

-- The following features have been disabled:

* QCH, API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & 
KDevelop)

-- Configuring done

CMake Error in src/CMakeLists.txt:

Imported target "KF5::WindowSystem" includes non-existent path

"/home/yocto/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/kwindowsystem/5.85.0-r0/recipe-sysroot/usr/include"

in its INTERFACE_INCLUDE_DIRECTORIES. Possible reasons include:

* The path was deleted, renamed, or moved to another location.

* An install or uninstall procedure did not complete successfully.

* The installation package was faulty and references files it does not

provide.

CMake Error in src/CMakeLists.txt:

Imported target "KF5::WindowSystem" includes non-existent path

"/home/yocto/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/kwindowsystem/5.85.0-r0/recipe-sysroot/usr/include"

in its INTERFACE_INCLUDE_DIRECTORIES. Possible reasons include:

* The path was deleted, renamed, or moved to another location.

* An install or uninstall procedure did not complete successfully.

* The installation package was faulty and references files it does not

provide.

-- Generating done

CMake Warning:

Manually-specified variables were not used by the project:

BUILD_DESIGNERPLUGIN

LIB_SUFFIX

OE_KF5_PATH_HOST_ROOT


Re: [yocto] #yocto

2021-07-27 Thread sateesh m
Thanks, I'll check them out.

On Tue, 27 Jul 2021, 18:17 Nicolas Jeker,  wrote:

> On Thu, 2021-07-22 at 23:26 -0700, sateesh m wrote:
> > Hi Guys,
> >
> >   I am facing below error while compiling consul package.
> > can anybody know this issue please suggest me.
> > ERROR: consul-git-r0 do_compile: Execution of '/home/sources/fu540-
> > build/tmp-glibc/work/riscv64-oe-linux/consul/git-
> > r0/temp/run.do_compile.26832' failed with exit code 2:
> > internal/unsafeheader
> > unicode/utf16
> > container/list
> > internal/cpu
> >
> 
> > # github.com/hashicorp/consul/vendor/golang.org/x/sys/unix
> > src/github.com/hashicorp/consul/vendor/golang.org/x/sys/unix/syscall_
> > linux_gc.go:10:6: missing function body
> > src/github.com/hashicorp/consul/vendor/golang.org/x/sys/unix/syscall_
> > linux_gc.go:14:6: missing function body
> > src/github.com/hashicorp/consul/vendor/golang.org/x/sys/unix/syscall_
> > unix_gc.go:12:6: missing function body
> > src/github.com/hashicorp/consul/vendor/golang.org/x/sys/unix/syscall_
> > unix_gc.go:13:6: missing function body
> > src/github.com/hashicorp/consul/vendor/golang.org/x/sys/unix/syscall_
> > unix_gc.go:14:6: missing function body
> > src/github.com/hashicorp/consul/vendor/golang.org/x/sys/unix/syscall_
> > unix_gc.go:15:6: missing function body
>
> Searching for these error messages I found a comment on GitHub [1]
> which states that this is caused by missing assembly syscall wrappers.
>
> Experimental support for RISC-V was added in Go 1.14 [2] and improved
> in the next two versions, so make sure you use at least 1.14.
>
> If the problem persists, I suggest to ask in a dedicated RISC-V or Go
> forum/mailing list/chat.
>
> I don't have any experience with Go or RISC-V, so take this information
> with a grain of salt.
>
> [1]: https://github.com/golang/go/issues/27532#issuecomment-493384077
> [2]: https://golang.org/doc/go1.14#riscv
>
> > net/http/pprof
> > WARNING: exit code 2 from a shell command.
> >
> > ERROR: Logfile of failure stored in: /home/sources/fu540-build/tmp-
> > glibc/work/riscv64-oe-linux/consul/git-r0/temp/log.do_compile.26832
> >
> > --
> > Regards,
> > Sateesh
>
>
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#54238): https://lists.yoctoproject.org/g/yocto/message/54238
Mute This Topic: https://lists.yoctoproject.org/mt/84395975/21656
Mute #yocto:https://lists.yoctoproject.org/g/yocto/mutehashtag/yocto
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [yocto] #yocto

2021-07-27 Thread sateesh m
Hi,

 I have cleared my cache state but also it's not compiling. Can you
suggest any other way ? Or any patchwork.


Thanks & Regards,
Sateesh

On Fri, 23 Jul 2021, 15:27 Embedded Devel,  wrote:

> maybe clear your build tmp cache sstate and rebuild
>
>
> On Friday 23 July 2021 13:26:08 PM (+07:00), sateesh m wrote:
>
> Hi Guys,
>
>   I am facing below error while compiling consul package. can
> anybody know this issue please suggest me.
> ERROR: consul-git-r0 do_compile: Execution of
> '/home/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/consul/git-r0/temp/run.do_compile.26832'
> failed with exit code 2:
> internal/unsafeheader
> unicode/utf16
> container/list
> internal/cpu
> crypto/internal/subtle
> crypto/subtle
> vendor/golang.org/x/crypto/cryptobyte/asn1
> internal/nettrace
> vendor/golang.org/x/crypto/internal/subtle
> internal/race
> unicode/utf8
> runtime/internal/atomic
> sync/atomic
> internal/testlog
> runtime/internal/sys
> runtime/internal/math
> internal/bytealg
> encoding
> unicode
> math/bits
> math
> runtime
> internal/reflectlite
> sync
> errors
> internal/singleflight
> sort
> math/rand
> strconv
> internal/oserror
> io
> vendor/golang.org/x/net/dns/dnsmessage
> container/heap
> crypto/rc4
> reflect
> strings
> bytes
> syscall
> hash
> crypto
> crypto/internal/randutil
> crypto/hmac
> hash/crc32
> vendor/golang.org/x/crypto/hkdf
> bufio
> vendor/golang.org/x/text/transform
> path
> text/tabwriter
> regexp/syntax
> encoding/base32
> html
> hash/crc64
> hash/fnv
> internal/fmtsort
> hash/adler32
> encoding/binary
> regexp
> time
> internal/syscall/unix
> internal/syscall/execenv
> encoding/base64
> crypto/cipher
> crypto/sha512
> crypto/ed25519/internal/edwards25519
> crypto/md5
> crypto/aes
> crypto/des
> context
> crypto/sha1
> internal/poll
> crypto/sha256
> encoding/pem
> vendor/golang.org/x/crypto/chacha20
> vendor/golang.org/x/crypto/poly1305
> vendor/golang.org/x/crypto/chacha20poly1305
> os
> fmt
> path/filepath
> net
> io/ioutil
> encoding/json
> encoding/hex
> vendor/golang.org/x/net/http2/hpack
> mime
> mime/quotedprintable
> vendor/golang.org/x/crypto/curve25519
> os/signal
> log
> compress/flate
> vendor/golang.org/x/text/unicode/norm
> vendor/golang.org/x/text/unicode/bidi
> compress/gzip
> runtime/debug
> net/http/internal
> math/big
> net/textproto
> net/url
> go/token
> compress/lzw
> encoding/gob
> os/exec
> github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket
> vendor/golang.org/x/text/secure/bidirule
> vendor/golang.org/x/net/idna
> github.com/hashicorp/consul/vendor/golang.org/x/sys/unix
> flag
> runtime/trace
> testing
> os/user
> encoding/asn1
> crypto/elliptic
> text/template/parse
> crypto/rand
> vendor/golang.org/x/crypto/cryptobyte
> crypto/ed25519
> crypto/rsa
> crypto/dsa
> crypto/x509/pkix
> mime/multipart
> vendor/golang.org/x/net/http/httpproxy
> vendor/golang.org/x/net/http/httpguts
> internal/lazyregexp
> go/scanner
> crypto/ecdsa
> text/template
> compress/zlib
> crypto/x509
> go/ast
> archive/tar
> github.com/hashicorp/consul/vendor/github.com/boltdb/bolt
> html/template
> github.com/hashicorp/consul/vendor/github.com/shirou/gopsutil/host
> go/parser
> go/doc
> crypto/tls
> net/mail
> log/syslog
>
> encoding/xml
> # github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket
> src/
> github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket/cmsghdr.go:9:10:
> undefined: cmsghdr
> src/
> github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket/cmsghdr.go:10:10:
> undefined: cmsghdr
> src/
> github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket/cmsghdr.go:11:10:
> undefined: cmsghdr
> src/
> github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket/mmsghdr_unix.go:11:17:
> undefined: mmsghdr
> encoding/csv
> net/http/httptrace
> internal/profile
> runtime/pprof
> net/http
> # github.com/hashicorp/consul/vendor/github.com/shirou/gopsutil/host
> src/
> github.com/hashicorp/consul/vendor/github.com/shirou/gopsutil/host/host_linux.go:208:22:
> undefined: sizeOfUtmp
> src/
> github.com/hashicorp/consul/vendor/github.com/shirou/gopsutil/host/host_linux.go:213:14:
> undefined: sizeOfUtmp
> src/
> github.com/hashicorp/consul/vendor/github.com/shirou/gopsutil/host/host_linux.go:215:9:
> undefined: utmp
> # github.com/hashicorp/consul/vendor/github.com/boltdb/bolt
> src/
> github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/bo

[yocto] #yocto

2021-07-23 Thread sateesh m
Hi Guys,

I am facing below error while compiling consul package. can anybody know this 
issue please suggest me.
ERROR: consul-git-r0 do_compile: Execution of 
'/home/sources/fu540-build/tmp-glibc/work/riscv64-oe-linux/consul/git-r0/temp/run.do_compile.26832'
 failed with exit code 2:
internal/unsafeheader
unicode/utf16
container/list
internal/cpu
crypto/internal/subtle
crypto/subtle
vendor/golang.org/x/crypto/cryptobyte/asn1
internal/nettrace
vendor/golang.org/x/crypto/internal/subtle
internal/race
unicode/utf8
runtime/internal/atomic
sync/atomic
internal/testlog
runtime/internal/sys
runtime/internal/math
internal/bytealg
encoding
unicode
math/bits
math
runtime
internal/reflectlite
sync
errors
internal/singleflight
sort
math/rand
strconv
internal/oserror
io
vendor/golang.org/x/net/dns/dnsmessage
container/heap
crypto/rc4
reflect
strings
bytes
syscall
hash
crypto
crypto/internal/randutil
crypto/hmac
hash/crc32
vendor/golang.org/x/crypto/hkdf
bufio
vendor/golang.org/x/text/transform
path
text/tabwriter
regexp/syntax
encoding/base32
html
hash/crc64
hash/fnv
internal/fmtsort
hash/adler32
encoding/binary
regexp
time
internal/syscall/unix
internal/syscall/execenv
encoding/base64
crypto/cipher
crypto/sha512
crypto/ed25519/internal/edwards25519
crypto/md5
crypto/aes
crypto/des
context
crypto/sha1
internal/poll
crypto/sha256
encoding/pem
vendor/golang.org/x/crypto/chacha20
vendor/golang.org/x/crypto/poly1305
vendor/golang.org/x/crypto/chacha20poly1305
os
fmt
path/filepath
net
io/ioutil
encoding/json
encoding/hex
vendor/golang.org/x/net/http2/hpack
mime
mime/quotedprintable
vendor/golang.org/x/crypto/curve25519
os/signal
log
compress/flate
vendor/golang.org/x/text/unicode/norm
vendor/golang.org/x/text/unicode/bidi
compress/gzip
runtime/debug
net/http/internal
math/big
net/textproto
net/url
go/token
compress/lzw
encoding/gob
os/exec
github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket
vendor/golang.org/x/text/secure/bidirule
vendor/golang.org/x/net/idna
github.com/hashicorp/consul/vendor/golang.org/x/sys/unix
flag
runtime/trace
testing
os/user
encoding/asn1
crypto/elliptic
text/template/parse
crypto/rand
vendor/golang.org/x/crypto/cryptobyte
crypto/ed25519
crypto/rsa
crypto/dsa
crypto/x509/pkix
mime/multipart
vendor/golang.org/x/net/http/httpproxy
vendor/golang.org/x/net/http/httpguts
internal/lazyregexp
go/scanner
crypto/ecdsa
text/template
compress/zlib
crypto/x509
go/ast
archive/tar
github.com/hashicorp/consul/vendor/github.com/boltdb/bolt
html/template
github.com/hashicorp/consul/vendor/github.com/shirou/gopsutil/host
go/parser
go/doc
crypto/tls
net/mail
log/syslog

encoding/xml
# github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket
src/github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket/cmsghdr.go:9:10:
 undefined: cmsghdr
src/github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket/cmsghdr.go:10:10:
 undefined: cmsghdr
src/github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket/cmsghdr.go:11:10:
 undefined: cmsghdr
src/github.com/hashicorp/consul/vendor/golang.org/x/net/internal/socket/mmsghdr_unix.go:11:17:
 undefined: mmsghdr
encoding/csv
net/http/httptrace
internal/profile
runtime/pprof
net/http
# github.com/hashicorp/consul/vendor/github.com/shirou/gopsutil/host
src/github.com/hashicorp/consul/vendor/github.com/shirou/gopsutil/host/host_linux.go:208:22:
 undefined: sizeOfUtmp
src/github.com/hashicorp/consul/vendor/github.com/shirou/gopsutil/host/host_linux.go:213:14:
 undefined: sizeOfUtmp
src/github.com/hashicorp/consul/vendor/github.com/shirou/gopsutil/host/host_linux.go:215:9:
 undefined: utmp
# github.com/hashicorp/consul/vendor/github.com/boltdb/bolt
src/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/bolt_unix.go:62:15:
 undefined: maxMapSize
src/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/bucket.go:135:15: 
undefined: brokenUnaligned
src/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/db.go:101:13: 
undefined: maxMapSize
src/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/db.go:317:12: 
undefined: maxMapSize
src/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/db.go:335:10: 
undefined: maxMapSize
src/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/db.go:336:8: 
undefined: maxMapSize
src/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/freelist.go:169:19:
 undefined: maxAllocSize
src/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/freelist.go:176:14:
 undefined: maxAllocSize
src/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/freelist.go:204:17:
 undefined: maxAllocSize
src/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/freelist.go:207:7:
 undefined: maxAllocSize
src/github.com/hashicorp/consul/vendor/github.com/boltdb/bolt/freelist.go:207:7:
 too many errors
expvar
net/http/httptest
net/rpc
net/http/httputil
net/http/cookiejar
# github.com/hashicorp/consul/vendor/golang.org/x/sys/unix

[yocto] consul

2021-07-22 Thread sateesh m
Hi Guys,

I am trying to integrate consul package to my image.facing issue while fetching 
the sources.

WARNING: consul-git-r0 do_fetch: Failed to fetch URL 
git://github.com/hashicorp/consul.git, attempting MIRRORS if available
ERROR: consul-git-r0 do_fetch: Fetcher failure: Unable to find revision 
944cc71026c007e7de9467ec3f38f0ad14464fcc in branch master even from upstream
ERROR: consul-git-r0 do_fetch: Fetcher failure for URL: 
'git://github.com/hashicorp/consul.git'. Unable to fetch URL from any source.

Can anybody know please  tell  which revision ID i need to used to fix this 
issue. or any patch available suggest me.

Thanking you in advance.
--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#54200): https://lists.yoctoproject.org/g/yocto/message/54200
Mute This Topic: https://lists.yoctoproject.org/mt/84395535/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] man package issue

2021-06-30 Thread sateesh m
Hi Guys,

I am building core-image-sato image. i am facing issue rootfs creation. can 
anybody know give suggition how we can solve this issue.

ERROR: core-image-sato-1.0-r0 do_rootfs: Postinstall scriptlets of 
['man-pages'] have failed. If the intention is to defer them to first boot,
then please place them into pkg_postinst_ontarget_${PN} ().
Deferring to first boot via 'exit 1' is no longer supported.

--
Thanks & Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#54015): https://lists.yoctoproject.org/g/yocto/message/54015
Mute This Topic: https://lists.yoctoproject.org/mt/83889069/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] gstreamerfdkaacenc/gstreamerfdkaacdec plugin support #gstreamer

2021-06-07 Thread sateesh m
Hi Guys,

I  wan to build  gstreamerfdkaccenc/gstreamerfdkdec plugin support,gstreamer 
version 16.0.1  version. can anybody know proper sources link and build 
procedure . help me to get this feature.

Thanks & Regards,
Sateesh

--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#53784): https://lists.yoctoproject.org/g/yocto/message/53784
Mute This Topic: https://lists.yoctoproject.org/mt/83390092/21656
Mute #gstreamer:https://lists.yoctoproject.org/g/yocto/mutehashtag/gstreamer
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] live555 package issue #yocto

2021-06-07 Thread sateesh m
Hi Guys,

I am working on live555 package.have compiled on  live555_20210406.bb 
successfully. finally created  debs. through apt-get server I am trying to 
install live555 package I am facing issue live555-dev is not installed. so I 
got libcrypto issue & libopenssl issue.

Manually on target Board ,I clone the sources using bellow steps compiled 
successfully and finally generated binaries.

Same steps I have created  my own recipe and try to build package it was build 
successfully.
live555.bb file
/***/
DEPENDS = "openssl"

SRC_URI = "file://live555-latest.tar.gz \
file://config.linux-cross \
"

S = "${WORKDIR}/live"

TARGET_CC_ARCH += "${LDFLAGS}"

do_configure() {
cp ${WORKDIR}/config.linux-cross .
echo "COMPILE_OPTS+=" -fPIC -DXLOCALE_NOT_USED"" >> config.linux-cross
./genMakefiles linux-cross
}
do_install() {
install -d ${D}${includedir}/BasicUsageEnvironment
install -d ${D}${includedir}/groupsock
install -d ${D}${includedir}/liveMedia
install -d ${D}${includedir}/UsageEnvironment
install -d ${D}${libdir}
cp -R --no-dereference --preserve=mode,links -v 
${S}/BasicUsageEnvironment/include/*.hh ${D}${includedir}/BasicUsageEnvironment/
cp -R --no-dereference --preserve=mode,links -v ${S}/groupsock/include/*.h 
${D}${includedir}/groupsock/
cp -R --no-dereference --preserve=mode,links -v ${S}/groupsock/include/*.hh 
${D}${includedir}/groupsock/
cp -R --no-dereference --preserve=mode,links -v ${S}/liveMedia/include/*.hh 
${D}${includedir}/liveMedia/
cp -R --no-dereference --preserve=mode,links -v 
${S}/UsageEnvironment/include/*.hh ${D}${includedir}/UsageEnvironment/
for i in $(find . -name "*.hh") $(find . -name "*.h") ; do
install ${i} ${D}${includedir}
done
cp ${S}/*/*.a ${D}${libdir}
install -d ${D}${bindir}
for i in MPEG2TransportStreamIndexer openRTSP playSIP sapWatch 
testMPEG1or2ProgramToTransportStream testMPEG1or2Splitter 
testMPEG1or2VideoReceiver testMPEG2TransportStreamTrickPlay 
testOnDemandRTSPServer testRelay testAMRAudioStreamer testDVVideoStreamer 
testMP3Receiver testMP3Streamer testMPEG1or2AudioVideoStreamer 
testMPEG1or2VideoStreamer testMPEG2TransportStreamer testMPEG4VideoStreamer 
testWAVAudioStreamer vobStreamer; do
install -m 0755 ${S}/testProgs/${i} ${D}${bindir}/
done
install -m 0755 ${S}/mediaServer/live555MediaServer ${D}${bindir}/
}

PACKAGES =+ "live555-openrtsp live555-playsip live555-mediaserver 
live555-examples"
FILES_live555-openrtsp = "${bindir}/openRTSP"
FILES_live555-playsip = "${bindir}/playSIP"
FILES_live555-mediaserver = "${bindir}/live555MediaServer"
FILES_live555-examples = "${bindir}/*"
/***/

I have created deb file  while installing this package from apt-get server I am 
facing problem.
using dpkg command I am trying to install package on target baord. I am facing 
bellow problem.
using dpkg -i live555
dpkg : dependency problems prevent configuration of live555-dev. live555-dev 
depends on live555.pacakge live555 not installed.
dpkg : dependency problems prevent configuration of live555-staticdev: package 
live555-dev is not configured yet.

dpkg: error processing package package live555-staticdev (--installed): 
dependency problems -leaving unconfigured. Error: were encountered while 
processing : live555-dev ,live555-static.

Can anybody know please help to me. Is I missed anything please give response 
ASAP. it will helpful to fix this issue.

--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#53783): https://lists.yoctoproject.org/g/yocto/message/53783
Mute This Topic: https://lists.yoctoproject.org/mt/83389300/21656
Mute #yocto:https://lists.yoctoproject.org/g/yocto/mutehashtag/yocto
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] gstreamer-emements support fdkaacenc/fdkaacdec #yocto

2021-05-26 Thread sateesh m
Hi Guys,

I need some support for gstreamer elements support fdkaacenc/fdkaacdec . 
Currently I am using gstreamer 16.0.1 version OE sources. I have added 
gstreamer bad,good,base,libav plugins Added in my image.gstreamer-plugins-bad 
its not providing fdkaac support I tried to enable but its not compiling my 
sources.
I am using risc-v target machine . I am looking for  where I can get sources 
can anybody knows please give suggestions  build procedure steps . is i need to 
add any package related configuration in my local.conf please suggest me.

Thanking you in advance.
--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#53652): https://lists.yoctoproject.org/g/yocto/message/53652
Mute This Topic: https://lists.yoctoproject.org/mt/83098697/21656
Mute #yocto:https://lists.yoctoproject.org/g/yocto/mutehashtag/yocto
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] vlc 3.0.11 package issue

2021-05-17 Thread sateesh m
Hi ,

I am trying to run vlc-3.0.11 media player on my riscv target board.  I am 
facing problem this package

[cli] lua interface error: Error loading script /usr/lib/vlc/lua/intf/cli.luac: 
../../vlc-3.0.11.1/share/lua/modules/common.lua:3: attempt to call a nil value 
(global 'module')

lua package also I installed version is 5.3.6 .

How can I fix this issue. Is I need to apply patch for this?if patch is present 
please give me guidance. Can anybody knows this problem help me.

Thanking you in advance.
--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#53555): https://lists.yoctoproject.org/g/yocto/message/53555
Mute This Topic: https://lists.yoctoproject.org/mt/82905741/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] vlc 3.0.11 package issue

2021-05-17 Thread sateesh m
Hi ,

I am trying to run vlc-3.0.11 media player on my riscv target board.  I am 
facing problem this package

[cli] lua interface error: Error loading script /usr/lib/vlc/lua/intf/cli.luac: 
../../vlc-3.0.11.1/share/lua/modules/common.lua:3: attempt to call a nil value 
(global 'module')

lua package also I installed version is 5.3.6 .

How can I fix this issue. Is I need to apply patch for this?if patch is present 
please give me guidance. Can anybody knows this problem help me.

Thanking you in advance.
--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#53554): https://lists.yoctoproject.org/g/yocto/message/53554
Mute This Topic: https://lists.yoctoproject.org/mt/82905734/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [yocto] core-image-sato -staticdev issue

2021-04-25 Thread sateesh m
Hi Guys,

I am facing one more issue No eligible RPROVIDERs exist for
'core-image-sato'

Thanks & Regards,
Sateesh


On Sun, Apr 25, 2021 at 10:00 PM sateesh m via lists.yoctoproject.org
 wrote:

> Hi Guys,
>
> I am newly facing this when I want to build
> core-image-sato image. how can I fix this issue can anybody know please
> suggest me.
>
> local.conf I enabled EXTRA_IMAGE_FEATURES +=  "staticdev-pkgs"  but same
> issue I am facing.
>
> Loading cache: 100% |
>
>
> Loaded 0 entries from dependency cache.
> Parsing recipes: 100%
> |###|
> Time: 0:00:17
> Parsing of 3450 .bb files complete (0 cached, 3450 parsed). 5058 targets,
> 469 skipped, 0 masked, 0 errors.
> NOTE: Resolving any missing task queue dependencies
> ERROR: Nothing RPROVIDES '-staticdev'
> (sources/openembedded-core/meta/recipes-sato/images/core-image-sato.bb
> RDEPENDS on or otherwise requires it)
> NOTE: Runtime target '-staticdev' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['-staticdev']
> ERROR: Required build target 'core-image-sato' has no buildable providers.
> Missing or unbuildable dependency chain was: ['core-image-sato',
> '-staticdev']
>
> Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
>
> --
> Regards,
> Sateesh
> 
>
>

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#53260): https://lists.yoctoproject.org/g/yocto/message/53260
Mute This Topic: https://lists.yoctoproject.org/mt/82357653/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] core-image-sato -staticdev issue

2021-04-25 Thread sateesh m
Hi Guys,

I am newly facing this when I want to build core-image-sato image. how can I 
fix this issue can anybody know please suggest me.

local.conf I enabled EXTRA_IMAGE_FEATURES +=  "staticdev-pkgs"  but same issue 
I am facing.

Loading cache: 100% |
Loaded 0 entries from dependency cache.
Parsing recipes: 100% 
|###|
 Time: 0:00:17
Parsing of 3450 .bb files complete (0 cached, 3450 parsed). 5058 targets, 469 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES '-staticdev' 
(sources/openembedded-core/meta/recipes-sato/images/core-image-sato.bb RDEPENDS 
on or otherwise requires it)
NOTE: Runtime target '-staticdev' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['-staticdev']
ERROR: Required build target 'core-image-sato' has no buildable providers.
Missing or unbuildable dependency chain was: ['core-image-sato', '-staticdev']

Summary: There were 2 ERROR messages shown, returning a non-zero exit code.

--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#53259): https://lists.yoctoproject.org/g/yocto/message/53259
Mute This Topic: https://lists.yoctoproject.org/mt/82357653/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] core-image-sato -staticdev

2021-04-25 Thread sateesh m
Hi Guys,

I am newly facing this when I want to build core-image-sato image. how can I 
fix this issue can anybody know please suggest me.

Loading cache: 100% |
Loaded 0 entries from dependency cache.
Parsing recipes: 100% 
|###|
 Time: 0:00:17
Parsing of 3450 .bb files complete (0 cached, 3450 parsed). 5058 targets, 469 
skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES '-staticdev' 
(sources/openembedded-core/meta/recipes-sato/images/core-image-sato.bb RDEPENDS 
on or otherwise requires it)
NOTE: Runtime target '-staticdev' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['-staticdev']
ERROR: Required build target 'core-image-sato' has no buildable providers.
Missing or unbuildable dependency chain was: ['core-image-sato', '-staticdev']

Summary: There were 2 ERROR messages shown, returning a non-zero exit code.

--
Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#53257): https://lists.yoctoproject.org/g/yocto/message/53257
Mute This Topic: https://lists.yoctoproject.org/mt/82349239/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] avahi_0.8 issue with latest version

2021-03-12 Thread sateesh m
Hi Guys,

I  have installed avahi_0.8 version using gatesgreath version.  its compiled 
successfully .but  i am facing issue  with  pid is remove automatically when i 
restart my service.

avahi configuration : hostname,domain name, allow ipv4, allow eth0,reflector 
=yes i did all this avahi-daemon.conf
dependencies: gtk+3,gtk,dbus,avahi-daemon,avahi-utils ,libnss-mdns.
is i miss any configuration or any patchwork work for this packages  please 
update me i will modify it.

( avahi-daemon[625]: Process 592 died: No such process; trying to remove PID 
file. (/run/avahi-daemon//pid))

0;1;32m*[[0m avahi-daemon.service - Avahi mDNS/DNS-SD Stack
Loaded: loaded (/lib/systemd/system/avahi-daemon.service; enabled; vendor 
preset: enabled)
Active: [[0;1;32mactive (running)[[0m since Fri 2021-03-05 13:12:17 UTC; 7min 
ago
TriggeredBy: [[0;1;32m*[[0m avahi-daemon.socket
Main PID: 625 (avahi-daemon)
Status: "avahi-daemon 0.8 starting up."
Tasks: 2 (limit: 9561)
Memory: 620.0K
CGroup: /system.slice/avahi-daemon.service
|-625 avahi-daemon: running [foo.local]
`-626 avahi-daemon: chroot helper

Mar 05 13:12:17 mysystem systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Mar 05 13:12:17 mysystem avahi-daemon[625]: Process 592 died: No such process; 
trying to remove PID file. (/run/avahi-daemon//pid)
Mar 05 13:12:17 my system systemd[1]: Started Avahi mDNS/DNS-SD Stack.

root@mysystem:~# pgrep -f -l avahi
192 systemctl
200 systemctl
210 systemctl
216 journalctl
503 systemctl
539 systemctl
547 systemctl
559 systemctl
575 systemctl
582 systemctl
594 systemctl
625 avahi-daemon: running [foo.local]
626 avahi-daemon: chroot helper

Thanks & Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#52682): https://lists.yoctoproject.org/g/yocto/message/52682
Mute This Topic: https://lists.yoctoproject.org/mt/81276221/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] avahi_0.8 issue with latest version

2021-03-05 Thread sateesh m
Hi Guys,

I  have installed avahi_0.8 version using gatesgreath version.  its compiled 
successfully .but  i am facing issue  with  pid is remove automatically when i 
restart my service.

avahi configuration : hostname,domain name, allow ipv4, allow eth0,reflector 
=yes i did all this avahi-daemon.conf
dependencies: gtk+3,gtk,dbus,avahi-daemon,avahi-utils ,libnss-mdns.
is i miss any configuration or any patchwork work for this packages  please 
update me i will modify it.

( avahi-daemon[625]: Process 592 died: No such process; trying to remove PID 
file. (/run/avahi-daemon//pid))

0;1;32m*[[0m avahi-daemon.service - Avahi mDNS/DNS-SD Stack
Loaded: loaded (/lib/systemd/system/avahi-daemon.service; enabled; vendor 
preset: enabled)
Active: [[0;1;32mactive (running)[[0m since Fri 2021-03-05 13:12:17 UTC; 7min 
ago
TriggeredBy: [[0;1;32m*[[0m avahi-daemon.socket
Main PID: 625 (avahi-daemon)
Status: "avahi-daemon 0.8 starting up."
Tasks: 2 (limit: 9561)
Memory: 620.0K
CGroup: /system.slice/avahi-daemon.service
|-625 avahi-daemon: running [foo.local]
`-626 avahi-daemon: chroot helper

Mar 05 13:12:17 mysystem systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Mar 05 13:12:17 mysystem avahi-daemon[625]: Process 592 died: No such process; 
trying to remove PID file. (/run/avahi-daemon//pid)
Mar 05 13:12:17 my system systemd[1]: Started Avahi mDNS/DNS-SD Stack.

root@mysystem:~# pgrep -f -l avahi
192 systemctl
200 systemctl
210 systemctl
216 journalctl
503 systemctl
539 systemctl
547 systemctl
559 systemctl
575 systemctl
582 systemctl
594 systemctl
625 avahi-daemon: running [foo.local]
626 avahi-daemon: chroot helper

Thanks & Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#52590): https://lists.yoctoproject.org/g/yocto/message/52590
Mute This Topic: https://lists.yoctoproject.org/mt/81106365/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] quit-native issue #yocto #yocto

2020-12-29 Thread sateesh m
Hi Guys,

I am trying to build core-image-sato using dunfell sources. i am facing bug 
quilt-native configure issue. its present in meta/recipes-devtools.

Below i am attaching  my issue odt file. can please check it . help me to solve 
this issue.


quilt-issue.odt
Description: application/vnd.oasis.opendocument.text

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#51859): https://lists.yoctoproject.org/g/yocto/message/51859
Mute This Topic: https://lists.yoctoproject.org/mt/79308134/21656
Mute #yocto:https://lists.yoctoproject.org/g/yocto/mutehashtag/yocto
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] quit-native issue #yocto

2020-12-29 Thread sateesh m
Hi Guys,

I am trying to build core-image-sato image. but i am facing issue with " 
quilt-native_0.66.bb:do_configure" . I installed host dependencies. even Am 
facing same issue. can anybody know this issue. please help to me.

Thanks & Regards,
Satish


quilt-issue.odt
Description: application/vnd.oasis.opendocument.text

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#51858): https://lists.yoctoproject.org/g/yocto/message/51858
Mute This Topic: https://lists.yoctoproject.org/mt/79308066/21656
Mute #yocto:https://lists.yoctoproject.org/g/yocto/mutehashtag/yocto
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] cpu_count() got an unexpected keyword argument 'at_least'

2020-12-11 Thread sateesh m
Hi Guys,

I got expansion error during parsing. I want to fix this bug. can anybody know 
this issue please Update me.

Traceback (most recent call last):
File "Var ", line 1, in 
bb.data_smart.ExpansionError: Failure expanding variable PIGZ, expression was 
-p ${@oe.utils.cpu_count(at_least=2)} which triggered exception TypeError: 
cpu_count() got an unexpected keyword argument 'at_least'

thanking you in advance.

Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#51719): https://lists.yoctoproject.org/g/yocto/message/51719
Mute This Topic: https://lists.yoctoproject.org/mt/78880957/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] qt5 directory not creating using qt5.15.0 master branch

2020-12-01 Thread sateesh m
Hi Guys,

I am trying to build qt support image to  my yocto .I am using meta-qt5 master 
sources,after build its not creating qt5 directory path in the /usr/lib path as 
well as /usr/share/path but . but when i build x86 its created
x86 i got :
$ /usr/share/qt5$ ls
$usr/lib/qt5/bin$ ls

can you please help me if anyone knows this issue.

thanks in advance.

Regards,
Sateesh

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#51610): https://lists.yoctoproject.org/g/yocto/message/51610
Mute This Topic: https://lists.yoctoproject.org/mt/78652720/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] qtwayland compile issue 5.15 #dunfell

2020-11-19 Thread sateesh m
Hi Guys,

I am getting qtwayland building issue using dunfell version. can  anybody help 
me to solve this issue.

Regards,
Sateesh





qtwayland_issue.odt
Description: application/vnd.oasis.opendocument.text

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#51466): https://lists.yoctoproject.org/g/yocto/message/51466
Mute This Topic: https://lists.yoctoproject.org/mt/78332911/21656
Mute #dunfell:https://lists.yoctoproject.org/g/yocto/mutehashtag/dunfell
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] qtwayland compile issue 5.15 #dunfell

2020-11-19 Thread sateesh m
Hi Guys,

I am getting qtwayland building issue using dunfell version. can  anybody help 
me to solve this issue.

Regards,
Sateesh





qtwayland_issue.odt
Description: application/vnd.oasis.opendocument.text

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#51461): https://lists.yoctoproject.org/g/yocto/message/51461
Mute This Topic: https://lists.yoctoproject.org/mt/78332911/21656
Mute #dunfell:https://lists.yoctoproject.org/g/yocto/mutehashtag/dunfell
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] qtwayland compile issue 5.15 #dunfell

2020-11-19 Thread sateesh m
Hi Guys,

I am getting qtwayland building issue using dunfell version. can  anybody help 
me to solve this issue.

Regards,
Sateesh








qtwayland_issue.odt
Description: application/vnd.oasis.opendocument.text

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#51448): https://lists.yoctoproject.org/g/yocto/message/51448
Mute This Topic: https://lists.yoctoproject.org/mt/78332911/21656
Mute #dunfell:https://lists.yoctoproject.org/g/yocto/mutehashtag/dunfell
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] qtwayland compile issue 5.15 #dunfell

2020-11-18 Thread sateesh m
Hi Guys,

I am getting qtwayland building issue using dunfell version. can  anybody help 
me to solve this issue.

Regards,
Sateesh





qtwayland_issue.odt
Description: application/vnd.oasis.opendocument.text

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#51419): https://lists.yoctoproject.org/g/yocto/message/51419
Mute This Topic: https://lists.yoctoproject.org/mt/78332911/21656
Mute #dunfell:https://lists.yoctoproject.org/g/yocto/mutehashtag/dunfell
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] qtwayland compile issue 5.15 #dunfell

2020-11-17 Thread sateesh m
Hi Guys,

I am getting qtwayland building issue using dunfell version. can  anybody help 
me to solve this issue.

Regards,
Sateesh


qtwayland_issue.odt
Description: application/vnd.oasis.opendocument.text

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#51413): https://lists.yoctoproject.org/g/yocto/message/51413
Mute This Topic: https://lists.yoctoproject.org/mt/78332911/21656
Mute #dunfell:https://lists.yoctoproject.org/g/yocto/mutehashtag/dunfell
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[yocto] perf Makefile issue building with 5.6.2 kernel image

2020-05-08 Thread sateesh m
-- Forwarded message -
From: sateesh m 
Date: Thu, May 7, 2020 at 5:06 PM
Subject: perf Makefile issue building with 5.6.2 kernel image
To: Yocto discussion list , <
yocto@lists.yoctoproject.org>


Hi Sir,

   I am getting issue with perf tool building with 5.6.2 kernel
yocto image  .can anybody knows this issue can you give any suggestions or
any patch file.




Thanks & Regards,
Sateesh
Initialising tasks: 100% 
|###|
 Time: 0:00:05
Sstate summary: Wanted 287 Found 2 Missed 285 Current 1647 (0% match, 85% 
complete)
NOTE: Executing Tasks
NOTE: Setscene tasks completed
ERROR: perf-1.0-r9 do_compile: oe_runmake failed
ERROR: perf-1.0-r9 do_compile: Execution of 
'/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/temp/run.do_compile.19184'
 failed with exit code 1:
make: Entering directory 
'/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/tools/perf'
  BUILD:   Doing 'make -j20' parallel build
  HOSTCC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fixdep.o
  HOSTLD   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fixdep-in.o
  LINK 
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fixdep

Auto-detecting system features:
... dwarf: [ on  ]
...dwarf_getlocations: [ on  ]
... glibc: [ on  ]
...  gtk2: [ OFF ]
...  libaudit: [ OFF ]
...libbfd: [ on  ]
...libcap: [ OFF ]
...libelf: [ on  ]
...   libnuma: [ OFF ]
...numa_num_possible_cpus: [ OFF ]
...   libperl: [ OFF ]
... libpython: [ on  ]
... libcrypto: [ on  ]
... libunwind: [ OFF ]
...libdw-dwarf-unwind: [ on  ]
...  zlib: [ on  ]
...  lzma: [ on  ]
... get_cpuid: [ OFF ]
...   bpf: [ on  ]
...libaio: [ on  ]
...   libzstd: [ OFF ]
...disassembler-four-args: [ on  ]

Makefile.config:506: DWARF support is off, BPF prologue is disabled
Makefile.config:589: Disabling post unwind, no support found.
Makefile.config:714: Missing perl devel files. Disabling perl scripting 
support, please install perl-ExtUtils-Embed/libperl-dev
Makefile.config:843: No libzstd found, disables trace compression, please 
install libzstd-dev[el] and/or set LIBZSTD_DIR
Makefile.config:854: No libcap found, disables capability support, please 
install libcap-devel/libcap-dev
Makefile.config:922: No libbabeltrace found, disables 'perf data' CTF format 
support, please install libbabeltrace-dev[el]/libbabeltrace-ctf-dev
  GEN  /home/user/Build/5.6.2/o+

+




















+penembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/common-cmds.h
grep: 
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/tools/arch/riscv/include/uapi/asm//mman.h:
 No such file or directory
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/cpu.o
  MKDIR
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fs/
  MKDIR
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fd/
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/exec-cmd.o
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/debug.o
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/help.o
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fs/fs.o
  MKDIR
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fs/
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1

[yocto] perf Makefile issue building with 5.6.2 kernel image

2020-05-07 Thread sateesh m
Hi Sir,

   I am getting issue with perf tool building with 5.6.2 kernel
yocto image  .can anybody knows this issue can you give any suggestions or
any patch file.




Thanks & Regards,
Sateesh
Initialising tasks: 100% 
|###|
 Time: 0:00:05
Sstate summary: Wanted 287 Found 2 Missed 285 Current 1647 (0% match, 85% 
complete)
NOTE: Executing Tasks
NOTE: Setscene tasks completed
ERROR: perf-1.0-r9 do_compile: oe_runmake failed
ERROR: perf-1.0-r9 do_compile: Execution of 
'/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/temp/run.do_compile.19184'
 failed with exit code 1:
make: Entering directory 
'/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/tools/perf'
  BUILD:   Doing 'make -j20' parallel build
  HOSTCC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fixdep.o
  HOSTLD   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fixdep-in.o
  LINK 
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fixdep

Auto-detecting system features:
... dwarf: [ on  ]
...dwarf_getlocations: [ on  ]
... glibc: [ on  ]
...  gtk2: [ OFF ]
...  libaudit: [ OFF ]
...libbfd: [ on  ]
...libcap: [ OFF ]
...libelf: [ on  ]
...   libnuma: [ OFF ]
...numa_num_possible_cpus: [ OFF ]
...   libperl: [ OFF ]
... libpython: [ on  ]
... libcrypto: [ on  ]
... libunwind: [ OFF ]
...libdw-dwarf-unwind: [ on  ]
...  zlib: [ on  ]
...  lzma: [ on  ]
... get_cpuid: [ OFF ]
...   bpf: [ on  ]
...libaio: [ on  ]
...   libzstd: [ OFF ]
...disassembler-four-args: [ on  ]

Makefile.config:506: DWARF support is off, BPF prologue is disabled
Makefile.config:589: Disabling post unwind, no support found.
Makefile.config:714: Missing perl devel files. Disabling perl scripting 
support, please install perl-ExtUtils-Embed/libperl-dev
Makefile.config:843: No libzstd found, disables trace compression, please 
install libzstd-dev[el] and/or set LIBZSTD_DIR
Makefile.config:854: No libcap found, disables capability support, please 
install libcap-devel/libcap-dev
Makefile.config:922: No libbabeltrace found, disables 'perf data' CTF format 
support, please install libbabeltrace-dev[el]/libbabeltrace-ctf-dev
  GEN  /home/user/Build/5.6.2/o+

+




















+penembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/common-cmds.h
grep: 
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/tools/arch/riscv/include/uapi/asm//mman.h:
 No such file or directory
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/cpu.o
  MKDIR
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fs/
  MKDIR
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fd/
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/exec-cmd.o
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/debug.o
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/help.o
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fs/fs.o
  MKDIR
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fs/
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fd/array.o
  CC   
/home/user/Build/5.6.2/openembedded/openembedded-core/Test-build/tmp-glibc/work/riscv64-oe-linux/perf/1.0-r9/perf-1.0/fs/tracing_path.o
  CC   

[yocto] Distro testing #yocto

2020-04-23 Thread sateesh m
Hi Guys,

I want to test Distro testing in my yocto build image. for that I need setup 
configurations and how can i check results and where i can get results. can 
anybody knows please suggest me .
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#49220): https://lists.yoctoproject.org/g/yocto/message/49220
Mute This Topic: https://lists.yoctoproject.org/mt/73214956/21656
Mute #yocto: https://lists.yoctoproject.org/mk?hashtag=yocto=6691583
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


[yocto] perf-1.0 do complie issue

2020-04-23 Thread sateesh m
Hi Sir,

   I am trying to build yocto image target qemuriscv64 using
core-image-sato. But i am facing issue with this package how can i resolve
this issue . can you please suggest me solution.



Thanks & Regards,
Sateesh


perf-error.odt
Description: application/vnd.oasis.opendocument.text
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#49219): https://lists.yoctoproject.org/g/yocto/message/49219
Mute This Topic: https://lists.yoctoproject.org/mt/73214930/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub  
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-