Re: [yocto] DEPENDS=libusb1 | libusb-compat not building package

2018-10-04 Thread Tim Hammer
pe-sysroot/... I am not getting any libusb stuff there with libusb1 in DEPENDS. On Thu, Oct 4, 2018 at 2:01 PM Burton, Ross wrote: > The recipe you're after for DEPENDS is libusb1. If that doesn't work > then there's a bug in the configure script. > > Ross > On Thu, 4 Oct 2018 at

[yocto] DEPENDS=libusb1 | libusb-compat not building package

2018-10-04 Thread Tim Hammer
I am trying to write a recipe for cc-tool ( https://sourceforge.net/projects/cctool/) and ran into the following error during the build: | checking for libusb-1.0 >= 1.0.0... no | configure: error: Package requirements (libusb-1.0 >= 1.0.0) were not met: | | No package 'libusb-1.0' found I have

Re: [yocto] (still) struggling with initramfs

2018-07-07 Thread Tim Hammer
On Sat, Jul 7, 2018 at 12:37 PM, Tim Hammer wrote: > > > On Fri, Jul 6, 2018 at 6:02 PM, Andre McCurdy wrote: > >> On Fri, Jul 6, 2018 at 1:22 PM, Tim Hammer wrote: >> > >> > Thanks for the responses to my first email. I was able to get a working >> &

Re: [yocto] (still) struggling with initramfs

2018-07-07 Thread Tim Hammer
On Fri, Jul 6, 2018 at 6:02 PM, Andre McCurdy wrote: > On Fri, Jul 6, 2018 at 1:22 PM, Tim Hammer wrote: > > > > Thanks for the responses to my first email. I was able to get a working > > initramfs in my kernel image that allowed me to do the initial > evaluation of &

Re: [yocto] (still) struggling with initramfs

2018-07-06 Thread Tim Hammer
On Tue, Jul 3, 2018 at 2:02 PM, Tim Hammer wrote: > > ... > Any help would be greatly appreciated. > Thanks for the responses to my first email. I was able to get a working initramfs in my kernel image that allowed me to do the initial evaluation of my solution. Now I am workin

Re: [yocto] Keeping and modifying Source code in Yocto

2018-07-06 Thread Tim Hammer
On Fri, Jul 6, 2018 at 11:20 AM, Simon Chamlian wrote: > Hi, > > Is there a way to keep the source code of a package to be able to modify > it and then compile? > > For example, with LTIB ( Linux Target Image Builder ), it was possible > with a command to extract the source code from a package,

[yocto] struggling with initramfs

2018-07-03 Thread Tim Hammer
Can anyone point me to a step-by-step tutorial or simple how-to on creating and using an initramfs with my kernel for ARM aarch64? I have tried creating my own: - boot-image.bb file with IMAGE_FSTYPES = "cpio.gz". - local.conf has INITRAMFS_IMAGE_BUNDLE = "1" - linux.bbappend has

[yocto] devtool finish & patch order

2018-06-13 Thread Tim Hammer
My changes for U-Boot are not working as expected. I am wondering- did I use devtool incorrectly? I used 'devtool modify' to create a working copy of the vendor's u-boot and copied & modified files to add support for my custom board. I did my work in 3 distinct and commitable steps, resulting in

[yocto] /boot/ content into root filesystem?

2018-06-13 Thread Tim Hammer
I would like to include the kernel Image and DTB files in the /boot/ directory of the root filesystem that will be installed in flash memory ( *vs.* a separate partition with the /boot/ content). I am working with the meta-freescale layer, with MACHINE=ls1012afrdm and core-image-minimal. The