Re: [linux-yocto] [PATCH 07/10] stmicro: Add support for the STMMAC Ethernet controller family

2015-07-06 Thread Darren Hart
On 7/5/15, 8:50 PM, "Bruce Ashfield" wrote: >> >>Bruce, any preference? I think we need a couple of READMEs in the > >No strong preference. The current structure has been needs driven >and gets refactored as new fragments and use cases are added. > >No objection to the above proposal. With the on

[linux-yocto] [PATCH v4 14/14] x86* BSPs: Add AMD and Intel vendor .SCC

2015-07-06 Thread Saul Wold
For the common-pc* add both AMD and Intel vendor specific .scc file to enable those CPU features For the intel-common BSPs just add the Intel vendor specific .scc file. Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/bsp/common-pc-64/common-pc-64.scc | 2 ++ meta/cfg/kernel-cache/bsp/common-

[linux-yocto] [PATCH v4 03/14] cfg/x86_base: Create new base config for x86 Architectures

2015-07-06 Thread Saul Wold
Place the core x86 architecture kernel config items into a new base config that the other x86 related architectures will use CONFIG_MTRR_SANITIZER is left as not set to match the same kernel.org defconfig default. Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/cfg/x86_base.cfg | 7 +++

[linux-yocto] [PATCH v4 11/14] features/misc/bosch-pressure-sensor: Add config fragment

2015-07-06 Thread Saul Wold
Add the config fragments for the Bosch Pressure Sensor, since this driver is contained in drivers/misc add it here as features/misc. Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/features/misc/bosch-pressure-sensor-i2c.cfg | 2 ++ meta/cfg/kernel-cache/features/misc/bosch-pressure-sensor-i2

[linux-yocto] [PATCH v4 12/14] Quark/X1000: Add new SOC and BSP

2015-07-06 Thread Saul Wold
Add the new intel-quark bsp type using the refactored x86_base and Intel Vendor enablers. Create a new soc for the x1000 SOC package. Signed-off-by: Saul Wold --- .../bsp/intel-common/intel-quark-standard.scc | 14 + .../kernel-cache/bsp/intel-common/intel-quark.cfg | 7 + ...

[linux-yocto] [PATCH v4 02/14] cfg/intel: Add Intel Vendor Specific enabler

2015-07-06 Thread Saul Wold
As part of the larger breaking up of x86 put the Intel Vendor Enablers in their own file Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/cfg/intel.cfg | 16 meta/cfg/kernel-cache/cfg/intel.scc | 1 + 2 files changed, 17 insertions(+) create mode 100644 meta/cfg/kernel-cache

[linux-yocto] [PATCH v4 13/14] pci: use the new pci config fragment in common-pc and intel-common

2015-07-06 Thread Saul Wold
This allows for the PCI config to be handled in a common feature rather than from 2 or 3 different locations. Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/bsp/common-pc-64/common-pc-64.scc | 1 + meta/cfg/kernel-cache/bsp/common-pc/common-pc-drivers.cfg | 3 --- meta/cfg/kern

[linux-yocto] [PATCH v4 05/14] features/debug: Create a new feature for early printk debug

2015-07-06 Thread Saul Wold
Add new .scc and .cfg for enabling early printk debugging from one place. Other general kernel debugging could also be placed here, but subsystem or driver specific debug configuration items should be in their respecitive subsystem or driver .cfg (or additioanl dbg.cfg or what ever you choose) S

[linux-yocto] [PATCH v4 09/14] features/usb/serial-all: Add new set of configs for USB_SERIAL devices

2015-07-06 Thread Saul Wold
This config fragment will enable the various vendor module code for different USB serial devices to enable serial over usb. Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/features/usb/serial-all.cfg | 17 + meta/cfg/kernel-cache/features/usb/serial-all.scc | 4 2 files

[linux-yocto] [PATCH v4 06/14] features/net: Add a features/net heirarchy

2015-07-06 Thread Saul Wold
This will allow additional configuration options and then within the features/net enable various driver and vendor specific configurations Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/features/net/net-all.scc | 2 ++ meta/cfg/kernel-cache/features/net/net.cfg | 3 +++ meta/cfg/kernel-c

[linux-yocto] [PATCH v4 10/14] features/pci/pci.cfg: Extend to be more complete

2015-07-06 Thread Saul Wold
This will allow for more sharing as part of the upcoming refactor of core x86 and x86_64. The HOTPLUG_PCI_PCIE is left not set as this is the default way the kernel.org defconfig settings are. Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/features/pci/pci.cfg | 10 ++ 1 file change

[linux-yocto] [PATCH v4 07/14] features/net/stmicro: Add the STMICRO networking drivers

2015-07-06 Thread Saul Wold
This adds the stmicro networking drivers to the net feature, this is the first example of using the features/net to enable vendor configurations and drivers Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/features/net/net-all.scc| 1 + meta/cfg/kernel-cache/features/net/stmicro/stmmac

[linux-yocto] [PATCH v4 04/14] cfg/x86*: refactor to use x86_base

2015-07-06 Thread Saul Wold
Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/cfg/x86.cfg| 14 -- meta/cfg/kernel-cache/cfg/x86.scc| 4 +--- meta/cfg/kernel-cache/cfg/x86_64.cfg | 13 - meta/cfg/kernel-cache/cfg/x86_64.scc | 4 +--- 4 files changed, 2 insertions(+), 33 deletions(-) diff -

[linux-yocto] [PATCH v4 01/14] cfg/amd: Add AMD Vendor Specific enabler

2015-07-06 Thread Saul Wold
As part of the larger breaking up of x86 put the AMD CPU Enablers in their own file Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/cfg/amd.cfg | 11 +++ meta/cfg/kernel-cache/cfg/amd.scc | 1 + 2 files changed, 12 insertions(+) create mode 100644 meta/cfg/kernel-cache/cfg/amd.cfg

[linux-yocto] [PATCH v4 08/14] features/pwm: Create new feature for PWM

2015-07-06 Thread Saul Wold
This will enable PWM Subsystem and adds a selection of drivers for Intel devices. Signed-off-by: Saul Wold --- meta/cfg/kernel-cache/features/pwm/intel_pwm.cfg | 6 ++ meta/cfg/kernel-cache/features/pwm/intel_pwm.scc | 5 + meta/cfg/kernel-cache/features/pwm/pwm.cfg | 3 +++ meta/c

[linux-yocto] [PATCH v4 00/14] Introduce new Quark BSP with refactor of x86 and associted features

2015-07-06 Thread Saul Wold
Bruce: This patch set introduces several new feautres and refactors the the x86 cfg files to have a common base. This also introduces the Quark/X1000 BSP with basic drivers enabled. Updates in v4 - Use new x86_base and pci for the x86 based BSP - Moved stmicro to features/net heirarchy Updates

Re: [linux-yocto] [PATCH v2 06/11] stmicro: Add support for the STMMAC Ethernet controller family

2015-07-06 Thread Bruce Ashfield
On 2015-07-06 12:16 PM, Saul Wold wrote: On 07/06/2015 07:18 AM, Bruce Ashfield wrote: On 2015-07-06 9:55 AM, Paul Gortmaker wrote: [Re: [PATCH v2 06/11] stmicro: Add support for the STMMAC Ethernet controller family] On 05/07/2015 (Sun 22:30) Saul Wold wrote: On 07/05/2015 08:52 PM, Bruce As

Re: [linux-yocto] [PATCH v2 06/11] stmicro: Add support for the STMMAC Ethernet controller family

2015-07-06 Thread Saul Wold
On 07/06/2015 07:18 AM, Bruce Ashfield wrote: On 2015-07-06 9:55 AM, Paul Gortmaker wrote: [Re: [PATCH v2 06/11] stmicro: Add support for the STMMAC Ethernet controller family] On 05/07/2015 (Sun 22:30) Saul Wold wrote: On 07/05/2015 08:52 PM, Bruce Ashfield wrote: On 2015-07-01 7:15 PM, Darr

Re: [linux-yocto] With my layer, Systemd not invoking my application at startup

2015-07-06 Thread Saul Wold
On 07/04/2015 06:42 AM, Vipin Nair wrote: Any help on this problem ? Vipin, I relied to you and suggested sending it to the yo...@yoctoproject.org list, which it appears you did. I also gave you some specific suggestions about using the useradd and systemd bbclasses. Sau! On Sat, Jun 27

Re: [linux-yocto] With my layer, Systemd not invoking my application at startup

2015-07-06 Thread Vipin Nair
Any help on this problem ? On Sat, Jun 27, 2015 at 7:09 PM, Vipin Nair wrote: > Hi All, > > I have created a layer (my first layer) and have build it with WindRiver > media which uses Systemd for the startup services. > > As per my application need, I have to create a new user on the final imag

Re: [linux-yocto] [PATCH v2 06/11] stmicro: Add support for the STMMAC Ethernet controller family

2015-07-06 Thread Bruce Ashfield
On 2015-07-06 9:55 AM, Paul Gortmaker wrote: [Re: [PATCH v2 06/11] stmicro: Add support for the STMMAC Ethernet controller family] On 05/07/2015 (Sun 22:30) Saul Wold wrote: On 07/05/2015 08:52 PM, Bruce Ashfield wrote: On 2015-07-01 7:15 PM, Darren Hart wrote: On 7/1/15 4:06 PM, Saul Wold w

Re: [linux-yocto] [PATCH v2 06/11] stmicro: Add support for the STMMAC Ethernet controller family

2015-07-06 Thread Paul Gortmaker
[Re: [PATCH v2 06/11] stmicro: Add support for the STMMAC Ethernet controller family] On 05/07/2015 (Sun 22:30) Saul Wold wrote: > On 07/05/2015 08:52 PM, Bruce Ashfield wrote: > >On 2015-07-01 7:15 PM, Darren Hart wrote: > >>On 7/1/15 4:06 PM, Saul Wold wrote: > >>>This is needed for the meta-qu