Re: U-Boot sama5d3 xplained issue
David Novak <david.novak@...>
I'm
working on this project with Pratham. Let me provide a few more
details.
We've defined
UBOOT_MACHINE ?= "sama5d3_xplained_nandflash_config"
Inside
u-boot-at91/sama5d3_xplained_nandflash_config
we change CONFIG_BOOTDELAY, but it has no effect on the newly
built image. The boot delay remains the same as it was before we
changed it.
Based on the UBOOT_MACHINE, can we be certain we are changing the
correct file?
How do we get the build process to include our changes?
Thanks,
David
toggle quoted messageShow quoted text
On 11/19/2020 5:37 PM, Prathamesh
Ovalekar wrote:
Hello everyone,
System: sama5d3_xplained board
I have a question regarding the configuration and build of u-boot.
We have a build that was implemented earlier. I am trying to make
some changes to it.
Change 1: Change the auto boot
delay to 1 second.
Change 2: Add an auto boot command to set a gpio.
I am aware of the environment variables: CONFIG_BOOTDELAY and CONFIG_BOOTCOMMAND
(needed for the changes above.)
I tried modifying the "
configs/sama5d3_xplained_nandflash_defconfig "
Question 1: Do I need to create an *.config file using the make
menuconfig?
Question 2: How do I create the u-boot.bin . Does this depend on
the Linux build?
I know that there is an environment variable:
CONFIG_BOOTARGS that needs to be populated.
--
Pratham Ovalekar
|
|
Re: [yocto-autobuilder2 PATCH] config.json: drop redundant meta-kernel mentions
I was wrong. :). The change to the controller has been reverted, and will be restarted tomorrow if that is okay.
Sorry about that, Ross
toggle quoted messageShow quoted text
On Thu, 19 Nov 2020 at 15:45, Ross Burton <ross@...> wrote: Yes. My understanding is that there's separate branches for each target? This is for master and not gatesgarth.
Ross
On Thu, 19 Nov 2020 at 03:32, Mittal, Anuj <anuj.mittal@...> wrote:
Hi Ross
On Mon, 2020-11-16 at 14:59 +0000, Ross Burton wrote:
From: Ross Burton <ross.burton@...>
For gatesgarth, this is causing:
FileNotFoundError: [Errno 2] No such file or directory: '/home/pokybuild/yocto-worker/meta-arm/build/repos/meta-kernel'
https://autobuilder.yoctoproject.org/typhoon/#/builders/113/builds/472
meta-arm gatesgarth needs meta-kernel?
Thanks,
Anuj
Signed-off-by: Ross Burton <ross.burton@...> --- config.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/config.json b/config.json index 11a2664..c57260a 100644 --- a/config.json +++ b/config.json @@ -275,9 +275,8 @@ "TEMPLATE" : "ltp-qemu" }, "meta-arm" : { - "NEEDREPOS" : ["poky", "meta-arm", "meta-kernel"], + "NEEDREPOS" : ["poky", "meta-arm"], "ADDLAYER" : [ - "${BUILDDIR}/../meta-kernel", "${BUILDDIR}/../meta-arm/meta-arm-toolchain", "${BUILDDIR}/../meta-arm/meta-arm", "${BUILDDIR}/../meta-arm/meta-arm-bsp"
|
|
U-Boot sama5d3 xplained issue
Prathamesh Ovalekar <pratham.ovalekar@...>
Hello everyone,
System: sama5d3_xplained board
I have a question regarding the configuration and build of u-boot.
We have a build that was implemented earlier. I am trying to make
some changes to it.
Change 1: Change the auto boot delay to 1 second.
Change 2: Add an auto boot command to set a gpio.
I am aware of the environment variables: CONFIG_BOOTDELAY and CONFIG_BOOTCOMMAND
(needed for the changes above.)
I tried modifying the "
configs/sama5d3_xplained_nandflash_defconfig "
Question 1: Do I need to create an *.config file using the make
menuconfig?
Question 2: How do I create the u-boot.bin . Does this depend on
the Linux build?
I know that there is an environment variable:
CONFIG_BOOTARGS that needs to be populated.
--
Pratham Ovalekar
|
|
yocto recipt from host ide
Sergey Ivanov <icegood1980@...>
Hi there.
Could anyone share a good approach/documentation/etc on how to
properly configure and use sysroot and sdk for a specific cmake - based c++ receipt
to be able to build it from IDE (vscode, qtcreator) on linux host i.e. 1) ide's --sysroot will be taken from yocto-root/build/tmp/work/aarch64-poky-linux/<my_recipe>1.0.0-r0/recipe-sysroot 2) compilers and cmake (i believe) will be taken from yocto-root/build/tmp/work/aarch64-poky-linux/<my_recipe>1.0.0-r0/recipe-sysroot-native 3) no mix of includes from host will be taken into account during the compilation
If none of ide above could do this stuff, then please recommend your one For this moment i don't want run/debug the application right from ide, i just want to have all symbols be correctly resolved from there. -- Kind regards, Sergey Ivanov
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|
Re: Enaable to add binary in /usr/bin using .bb file
NIKHIL PATIL <nikhilvp29@...>
Hi , for these issue we got solution , obexpushd binary interpreter is on /lib64 folder , but in our custom image /lib64 support is not there . so we are trying to add lib64 support for our custom image .
For sato image by default it is taking lib64 support , so it work there.
toggle quoted messageShow quoted text
Hi , Thank You very much , we are able to copy obexpushd to /usr/bin using .bb file.
I have one more dout ; 1) We created our own custom image (bitbake core-image-xxxx) , after flashing image to board . when we run obexpushd binary it shows as follows :- root@intel-corei7-64:~# root@intel-corei7-64:~# obexpushd -sh: /usr/bin/obexpushd: No such file or directory root@intel-corei7-64:~# cd /usr/bin root@intel-corei7-64:/usr/bin# ls | grep obexpush obexpushd root@intel-corei7-64:/usr/bin# Even though binary is there it shows no such file or directory.
2) But when we are flashing a sato image (bitbake core-image-sato-sdk ) , that time obexpushd binary is working fine . Why it is happening like these ? Is there any permission related issue with custom image and sato image ?
Hi,
On Thu, Nov 19, 2020 at 04:45:19PM +0530, NIKHIL PATIL wrote:
> Hi ,
> Yours correct only , but the thing is we are taking* binary(obexpushd)*
> from other source and only need to copy that binary into* /usr/bin* of our
> platform(*intel board*).
>
> Hence how we can achieve these using .bb file ? is there any sample
> example .
>
I gave you what you have to do in the previous mail. Remove the last two
lines of your bb file.
If it does not work, give the full error logs and what you're trying to
achieve and what you have.
Quentin
|
|