|
Re: Debugging a build issue in an isolated enviroment
Opa! Great command for the future, tnx.
Strange that it isn't listed here and is greppable in bitbake -e
u-boot-fw-utils-senic...
Here it is:
u-boot-fw-utils-senic-v2017.03+git999-r0 do_listtasks:
Opa! Great command for the future, tnx.
Strange that it isn't listed here and is greppable in bitbake -e
u-boot-fw-utils-senic...
Here it is:
u-boot-fw-utils-senic-v2017.03+git999-r0 do_listtasks:
|
By
Alan
·
#38627
·
|
|
Re: Debugging a build issue in an isolated enviroment
Whhhaaaaat.
Can your paste the output of this please:
$ bitbake u-boot-fw-utils-senic -c listtasks
Ross
Whhhaaaaat.
Can your paste the output of this please:
$ bitbake u-boot-fw-utils-senic -c listtasks
Ross
|
By
Burton, Ross <ross.burton@...>
·
#38626
·
|
|
Re: Debugging a build issue in an isolated enviroment
Found what I was asking for with:
bitbake -e <package>
going through the output, there are mentions of patch_do_patch().
I've traced it to meta/classes/patch.bbclass.
However, trying to execute just
Found what I was asking for with:
bitbake -e <package>
going through the output, there are mentions of patch_do_patch().
I've traced it to meta/classes/patch.bbclass.
However, trying to execute just
|
By
Alan
·
#38625
·
|
|
Re: Debugging a build issue in an isolated enviroment
That I can't see the changes for that particular patch in the source (by manually checking the source for the changes).
Other patches are applied correctly, I can trace them in the sources.
I have no
That I can't see the changes for that particular patch in the source (by manually checking the source for the changes).
Other patches are applied correctly, I can trace them in the sources.
I have no
|
By
Alan
·
#38624
·
|
|
[Yocto pyro] username adding via recipe in capital letters allowed?
Hi ,
I am using yocto pyro and for creating users via recipe using inherit useradd, followed
Hi ,
I am using yocto pyro and for creating users via recipe using inherit useradd, followed
|
By
Shrikant Bobade <bobadeshrikant@...>
·
#38623
·
|
|
Re: Debugging a build issue in an isolated enviroment
What do you mean by patches not being applied correctly? temp/log.do_patch has the output from patch so that might show that you've a patch that applies with lots of fuzz and is applied
What do you mean by patches not being applied correctly? temp/log.do_patch has the output from patch so that might show that you've a patch that applies with lots of fuzz and is applied
|
By
Burton, Ross <ross.burton@...>
·
#38622
·
|
|
Re: Debugging a build issue in an isolated enviroment
I see, so I can't use the devshell to debug why the patch hasn't been correctly applied.
The answer you gave help for debugging actual build and configure problems.
Debugging patching seems to be
I see, so I can't use the devshell to debug why the patch hasn't been correctly applied.
The answer you gave help for debugging actual build and configure problems.
Debugging patching seems to be
|
By
Alan
·
#38621
·
|
|
Re: Debugging a build issue in an isolated enviroment
The patching is done by a bbclass (patch.bbclass) and helper modules (meta/oe/lib/patch.py), so you can't execute it like a shell task (such as do_compile).
Ross
The patching is done by a bbclass (patch.bbclass) and helper modules (meta/oe/lib/patch.py), so you can't execute it like a shell task (such as do_compile).
Ross
|
By
Burton, Ross <ross.burton@...>
·
#38620
·
|
|
Re: Debugging a build issue in an isolated enviroment
Thanks for the suggestions
Am currently implementing both of them and am trying to understand how the patching is done.
In the temp directory I can see all the tasks.
For some reasons the patch
Thanks for the suggestions
Am currently implementing both of them and am trying to understand how the patching is done.
In the temp directory I can see all the tasks.
For some reasons the patch
|
By
Alan
·
#38619
·
|
|
Re: Slightly varying builds
Rootfs changes I can certainly do with different image recipes.
Am I right though in thinking that - because they'll have different variants of u-boot - I'll need to use separate build directories for
Rootfs changes I can certainly do with different image recipes.
Am I right though in thinking that - because they'll have different variants of u-boot - I'll need to use separate build directories for
|
By
Colin Helliwell <colin.helliwell@...>
·
#38618
·
|
|
Re: linux-firmware: build failure
Alexander Kanavin wrote:
Sorry, I made a mistake. I had a bbappend for linux-firmware in my layer, which retrieved an older revision from a year ago (at the time I wrote the bbappend, it was to
Alexander Kanavin wrote:
Sorry, I made a mistake. I had a bbappend for linux-firmware in my layer, which retrieved an older revision from a year ago (at the time I wrote the bbappend, it was to
|
By
Craig McQueen
·
#38617
·
|
|
Re: Checking for xwayland
Ah, meta-arago sets PACCKAGECONFIG_pn-weston without xwayland.
PACKAGECONFIG_pn-weston = "egl kms launch clients"
Ah, meta-arago sets PACCKAGECONFIG_pn-weston without xwayland.
PACKAGECONFIG_pn-weston = "egl kms launch clients"
|
By
Adam Lee <adam.yh.lee@...>
·
#38616
·
|
|
Re: Checking for xwayland
Hi Raj,
These are my DISTRO_FEATURES:
DISTRO_FEATURES="alsa argp bluetooth ext2 irda largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc x11 ipv4 ipv6 libc-backtrace libc-big-macros
Hi Raj,
These are my DISTRO_FEATURES:
DISTRO_FEATURES="alsa argp bluetooth ext2 irda largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g nfc x11 ipv4 ipv6 libc-backtrace libc-big-macros
|
By
Adam Lee <adam.yh.lee@...>
·
#38615
·
|
|
Re: Checking for xwayland
you need opengl in DISTRO_FEATURES as well. additionally
weston-xwayland would need wayland and x11 in DISTRO_FEATURES
you need opengl in DISTRO_FEATURES as well. additionally
weston-xwayland would need wayland and x11 in DISTRO_FEATURES
|
By
Khem Raj
·
#38614
·
|
|
Re: Checking for xwayland
I believe something is incorrect in my distro level configuration. Apart from including x11 and wayland in DISTRO_FEATURES, what else can I check to build
I believe something is incorrect in my distro level configuration. Apart from including x11 and wayland in DISTRO_FEATURES, what else can I check to build
|
By
Adam Lee <adam.yh.lee@...>
·
#38613
·
|
|
Re: Debugging a build issue in an isolated enviroment
Guessing... apply this in your recipe:
http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-bsp/u-boot/files/default-gcc.patch?h=pyro
--
Alex Kiernan
Senior Engineering
Guessing... apply this in your recipe:
http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-bsp/u-boot/files/default-gcc.patch?h=pyro
--
Alex Kiernan
Senior Engineering
|
By
Alex Kiernan <alex.kiernan@...>
·
#38612
·
|
|
Re: Debugging a build issue in an isolated enviroment
$ bitbake <recipe> -c devshell
This drops you in a new terminal with the same environment that bitbake sets up, and in ../temp/ you'll find run.do_compile and so on, which are the scripts that bitbake
$ bitbake <recipe> -c devshell
This drops you in a new terminal with the same environment that bitbake sets up, and in ../temp/ you'll find run.do_compile and so on, which are the scripts that bitbake
|
By
Burton, Ross <ross.burton@...>
·
#38611
·
|
|
Debugging a build issue in an isolated enviroment
I'm just upgrading to pyro and have some issues with u-boot-fw-utils.
The error fails at do_compile stage which looks like this:
do_compile () {
oe_runmake ${UBOOT_MACHINE}
I'm just upgrading to pyro and have some issues with u-boot-fw-utils.
The error fails at do_compile stage which looks like this:
do_compile () {
oe_runmake ${UBOOT_MACHINE}
|
By
Alan
·
#38610
·
|
|
Re: Slightly varying builds
Image, certainly. Put the common bits into an include, and specific bits into image-production|development.bb files. Poky has plenty of examples for this.
Alex
Image, certainly. Put the common bits into an include, and specific bits into image-production|development.bb files. Poky has plenty of examples for this.
Alex
|
By
Alexander Kanavin <alexander.kanavin@...>
·
#38609
·
|
|
Re: Checking for xwayland
Are you refering to DISTRO_FEATURES? That just controls what is *available*, not what goes into a particular image. As Fabien said, core-image-weston is the classic example of an image that has
Are you refering to DISTRO_FEATURES? That just controls what is *available*, not what goes into a particular image. As Fabien said, core-image-weston is the classic example of an image that has
|
By
Burton, Ross <ross.burton@...>
·
#38608
·
|