Re: [yocto] [meta-raspberrypi] How to set the kernel config variables in the recipe?

2016-12-15 Thread Piotr Lewicki
On 14.12.2016 21:26, Khem Raj wrote: On Wed, Dec 14, 2016 at 3:14 AM, Piotr Lewicki wrote: Hi, I need to set some kernel parameters and I thought that it would work with "do_configure_prepend()" task in my "linux-raspberrypi_%.bbappend" file. I have do configure like so: do_configure_prepend

Re: [yocto] [meta-raspberrypi] How to set the kernel config variables in the recipe?

2016-12-14 Thread Khem Raj
On Wed, Dec 14, 2016 at 3:14 AM, Piotr Lewicki wrote: > Hi, > > I need to set some kernel parameters and I thought that it would work with > "do_configure_prepend()" task in my "linux-raspberrypi_%.bbappend" file. > > I have do configure like so: > > do_configure_prepend() { > > kernel_configu

[yocto] [meta-raspberrypi] How to set the kernel config variables in the recipe?

2016-12-14 Thread Piotr Lewicki
Hi, I need to set some kernel parameters and I thought that it would work with "do_configure_prepend()" task in my "linux-raspberrypi_%.bbappend" file. I have do configure like so: do_configure_prepend() { kernel_configure_variable USB_PRINTER n # and some other variables } Now I ha