Re: [yocto] File copy to bootfs

2018-07-28 Thread Karim Gillani
This commands places the file in the /boot directory but then a script used within rootfs can't see it. install -m 0644 ${WORKDIR}/config.txt ${DEPLOY_DIR_IMAGE}/boot/sbcconf/config.txt The next command puts it in a place where the rootfs can access it, but I can't access the file in the fat part

[yocto] File copy to bootfs

2018-07-28 Thread Karim Gillani
Is there an easy way to copy a couple of files to the $bootfs (/boot directory)? when I copy files there, they show as if they are in /boot but they are not on the bootfs partition. Thanks Karim -- ___ yocto mailing list yocto@yoctoproject.org https:/

Re: [yocto] Kernel configuration problems

2018-07-28 Thread Bruce Ashfield
On 7/27/2018 6:20 PM, Greg Wilson-Lindberg wrote: I'm trying to add a couple of drivers to the kernel in a Raspberry pi3 build. I've got the passing of the config options working, but I'm getting warnings from the kernel build that the options are not being applied: WARNING: linux-raspberryp

[yocto] Set recipe architecture different than the machine architecture

2018-07-28 Thread MOHAMMAD RASIM
Hi, My machine.conf is including the `conf/machine/include/arm/arch-armv7ve.inc` so it builds everything for arm (32bit)  but my kernel recipe doesn't compile for 32bit arm and can only be compiled with aarch64 cross compiler. So I want to set my kernel recipe to be built for aarch64 and all