|
Error during linux booting
Hi Vaibhav, Out of curiosity which image did you build? Kind regards, Laurent. <vdeshpande@...> wrote:
Hi Vaibhav, Out of curiosity which image did you build? Kind regards, Laurent. <vdeshpande@...> wrote:
|
By
Laurent Gauthier
· #58385
·
|
|
OS-less SDK
Hi Alessio, Have you had a look at crosstool-ng? Best regards, Laurent.
Hi Alessio, Have you had a look at crosstool-ng? Best regards, Laurent.
|
By
Laurent Gauthier
· #56954
·
|
|
what to include in a "hardware bringup image"?
Hi Robert, Having the device tree compiler on the target has been useful for me in the past to check the actual content of the device tree using commands such as: * dtc -I fs -O dts /sys/firmware/devi
Hi Robert, Having the device tree compiler on the target has been useful for me in the past to check the actual content of the device tree using commands such as: * dtc -I fs -O dts /sys/firmware/devi
|
By
Laurent Gauthier
· #53172
·
|
|
Swap management: vm.swappiness best values?
Hi again, kswapd is triggered (even when there is no swap space) to reclaim some space when the memory runs low. There is no way to turn it completely off, with the swappiness parameter you can contro
Hi again, kswapd is triggered (even when there is no swap space) to reclaim some space when the memory runs low. There is no way to turn it completely off, with the swappiness parameter you can contro
|
By
Laurent Gauthier
· #52634
·
|
|
Swap management: vm.swappiness best values?
Ciao Mauro, Sounds more like a pure Linux/UNIX question than a yocto one :-) As you most likely know on an embedded system which uses permanent storage (NAND flash or eMMC) that is subject to wear it
Ciao Mauro, Sounds more like a pure Linux/UNIX question than a yocto one :-) As you most likely know on an embedded system which uses permanent storage (NAND flash or eMMC) that is subject to wear it
|
By
Laurent Gauthier
· #52618
·
|
|
File collision: same path from 2 recipes
Hehe, who needs a new command when you have already have "echo" :-)
Hehe, who needs a new command when you have already have "echo" :-)
|
By
Laurent Gauthier
· #50873
·
|
|
File collision: same path from 2 recipes
I would guess so. Here is a way to figure out all the packages in which your file is delivered (small trick that has proven quite useful for me to figure out which recipe/package provides a specific f
I would guess so. Here is a way to figure out all the packages in which your file is delivered (small trick that has proven quite useful for me to figure out which recipe/package provides a specific f
|
By
Laurent Gauthier
· #50871
·
|
|
File collision: same path from 2 recipes
Hi Mauro, From my experience there should be an error reported during the image creation as long as the two *packages* that contain a file with the same name are BOTH installed in the root filesystem.
Hi Mauro, From my experience there should be an error reported during the image creation as long as the two *packages* that contain a file with the same name are BOTH installed in the root filesystem.
|
By
Laurent Gauthier
· #50868
·
|
|
Recipe do_install priority
Hi Mauro, all, During the creation of the rootfs of your image yocto will try to install both packages, and should complain loudly because the same file is provided by two packages. There are a few wa
Hi Mauro, all, During the creation of the rootfs of your image yocto will try to install both packages, and should complain loudly because the same file is provided by two packages. There are a few wa
|
By
Laurent Gauthier
· #49589
·
|
|
How to PROVIDE boost-python
Also as Quentin suggested it might be needed to remove the "-mt" suffix, but I see it in the do_install() method of the "boost" recipe for revision 1.64. Kind regards, Laurent. On Tue, Mar 17, 2020 at
Also as Quentin suggested it might be needed to remove the "-mt" suffix, but I see it in the do_install() method of the "boost" recipe for revision 1.64. Kind regards, Laurent. On Tue, Mar 17, 2020 at
|
By
Laurent Gauthier
· #48796
·
|
|
How to PROVIDE boost-python
Hi again Emily, You have put your finger on the core issue there. The name of the boost python library which is linked in your "opc-ua-server-gfex" recipe is "boost_python-mt" where it seems that it s
Hi again Emily, You have put your finger on the core issue there. The name of the boost python library which is linked in your "opc-ua-server-gfex" recipe is "boost_python-mt" where it seems that it s
|
By
Laurent Gauthier
· #48795
·
|
|
How to PROVIDE boost-python
Hi Emily, To find the solution to your issue in a rational and deterministic way we need to start from the error message. What I understand is that while build recipe "opc-ua-server-gfex" you get an e
Hi Emily, To find the solution to your issue in a rational and deterministic way we need to start from the error message. What I understand is that while build recipe "opc-ua-server-gfex" you get an e
|
By
Laurent Gauthier
· #48788
·
|
|
Uboot NetBoot IMX8
Hi all, I would second what Nicolas pointed out: * on the server side you want to make sure that you extract the rootfs tar file as user root. Kind Regards, Laurent.
Hi all, I would second what Nicolas pointed out: * on the server side you want to make sure that you extract the rootfs tar file as user root. Kind Regards, Laurent.
|
By
Laurent Gauthier
· #48735
·
|
|
IMX6DL: Rename dtb in boot partition
Hi Mauro, Glad this helps. Another option I thought of after replying was to change which dtb is loaded by u-boot at boot time. This would involve changes to u-boot-imx. Kind regards, Laurent.
Hi Mauro, Glad this helps. Another option I thought of after replying was to change which dtb is loaded by u-boot at boot time. This would involve changes to u-boot-imx. Kind regards, Laurent.
|
By
Laurent Gauthier
· #48676
·
|
|
IMX6DL: Rename dtb in boot partition
Ciao Mauro, My best guess is that you should do the following: 1. Create a linux-imx_%.bbappend recipe in your layer (assuming you have one). 2. Add a do_install_append function which overrides $D/boo
Ciao Mauro, My best guess is that you should do the following: 1. Create a linux-imx_%.bbappend recipe in your layer (assuming you have one). 2. Add a do_install_append function which overrides $D/boo
|
By
Laurent Gauthier
· #48671
·
|
|
Modified GENIVI Cannelloni recipe with strange side effects
Hi Zoran, I just saw your reply now. I think that you might want to remove the INHIBIT_SYSROOT_STRIP and other INHIBIT_* options from your recipe. For reference a message from Khem warning that this o
Hi Zoran, I just saw your reply now. I think that you might want to remove the INHIBIT_SYSROOT_STRIP and other INHIBIT_* options from your recipe. For reference a message from Khem warning that this o
|
By
Laurent Gauthier
· #48483
·
|
|
Modified GENIVI Cannelloni recipe with strange side effects
Hi Zoran, You are almost there! I can feel it... :-) The issue I see is that the following files have been build but NOTinstalled: * libcannelloni-common.so.0 * libcannelloni-common.so.0.0.1 If you ma
Hi Zoran, You are almost there! I can feel it... :-) The issue I see is that the following files have been build but NOTinstalled: * libcannelloni-common.so.0 * libcannelloni-common.so.0.0.1 If you ma
|
By
Laurent Gauthier
· #48419
·
|
|
Modified GENIVI Cannelloni recipe with strange side effects
Hi Zoran, The issue seems to be that the executable /usr/bin/cannelloni has a reference to a shared library (libcannelloni-common.so.0) for which the Yocto build system is not able to determine automa
Hi Zoran, The issue seems to be that the executable /usr/bin/cannelloni has a reference to a shared library (libcannelloni-common.so.0) for which the Yocto build system is not able to determine automa
|
By
Laurent Gauthier
· #48415
·
|
|
lost busybox mysteriously
Hi JH, As you are not providing enough details in your request we have to guess the nature of the issue you are seeing. I will just point out a few things that could help in your situation. If this is
Hi JH, As you are not providing enough details in your request we have to guess the nature of the issue you are seeing. I will just point out a few things that could help in your situation. If this is
|
By
Laurent Gauthier
· #48162
·
|
|
zeus build errors
Hi there, Questions based on experience: * Doesn't your network require you to use a network proxy to access URLs that are external to your network? If so: * Do you have the right environment variable
Hi there, Questions based on experience: * Doesn't your network require you to use a network proxy to access URLs that are external to your network? If so: * Do you have the right environment variable
|
By
Laurent Gauthier
· #47953
·
|