Re: Question about savedefconfig warnings

2020-01-09 Thread Adam Feuer
Thanks. I didn't have to use the imply, but it's good to know about. cheers adam On Thu, Jan 9, 2020 at 1:05 PM Gregory Nutt wrote: > > The "imply BAZ" method seems like a way to have a permanent solution to > > this. > > > > I'll try to track this down. If I do that, is it something that can w

Re: Question about savedefconfig warnings

2020-01-09 Thread Adam Feuer
The Kconfig for ARCH_BOARD_SAMA5D3_XPLAINED had this: select ARCH_PHY_INTERRUPT if NETDEVICES > Since now NETDEVICES can include CDC ECM Ethernet over USB which does not have a PHY interrupt, I solved the conflict like this: select ARCH_PHY_INTERRUPT if NETDEVICES && (SAMA5_EMACA || SAMA5_EMAC0

Re: Question about savedefconfig warnings

2020-01-09 Thread Gregory Nutt
The "imply BAZ" method seems like a way to have a permanent solution to this. I'll try to track this down. If I do that, is it something that can would be accepted as part of a PR? I don't see why not.  'imply' is only available in the newest version of Kconfig-frontends so it is possible it c

Re: Question about savedefconfig warnings

2020-01-09 Thread Adam Feuer
The "imply BAZ" method seems like a way to have a permanent solution to this. I'll try to track this down. If I do that, is it something that can would be accepted as part of a PR? cheers adam On Thu, Jan 9, 2020 at 6:10 AM Gregory Nutt wrote: > > >> This is an error in the Kconfig files. Thi

Re: Question about savedefconfig warnings

2020-01-09 Thread Adam Feuer
Greg, Thanks for explaining that the defconfig attachment got removed, here it is. > # > # Automatically generated file; DO NOT EDIT. > # Nuttx/ Configuration > # > > # > # Build Setup > # > # CONFIG_EXPERIMENTAL is not set > # CONFIG_DEFAULT_SMALL is not set > CONFIG_HOST_LINUX=y > # CONFIG_HOS

Re: Question about savedefconfig warnings

2020-01-09 Thread Gregory Nutt
This is an error in the Kconfig files.  This one is complex because a lot of settings are involved.  This kind of error occurs because you are auto-selecting a setting that has dependencies that are not selected.  A simple example would be like config FOO     bool "Foo"     depends on BAR

Re: Question about savedefconfig warnings

2020-01-09 Thread Gregory Nutt
When I do 'make savedefconfig' I get the following message twice: warning: (IMXRT_ENET && TIVA_PHY_INTERRUPTS && ARCH_BOARD_SAMA5D3X_EK && ARCH_BOARD_SAMA5D3_XPLAINED && ARCH_BOARD_SAMA5D4_EK && ARCH_BOARD_SAM4EEK && ARCH_BOARD_SAME70_XPLAINED && ARCH_BOARD_SAMV71_XULT && BOARD_CUSTOM_INTERRUPT

Re: Question about savedefconfig warnings

2020-01-09 Thread Gregory Nutt
I cant see any config ! heck what selects those options and why they are not selected NETDEVICES ARCH_HAVE_PHY dev@nuttx.apache.org scrapes more attachments.  You could change it to config.txt and it would come through.

Re: Question about savedefconfig warnings

2020-01-09 Thread Nathan Hartman
On Thu, Jan 9, 2020 at 7:36 AM Alin Jerpelea wrote: > I cant see any config ! > > heck what selects those options and why they are not selected > NETDEVICES > ARCH_HAVE_PHY I get this warning whenever I configure or try to savedefconfig. In my case it is because I'm using a Tiva MCU, which has

Re: Question about savedefconfig warnings

2020-01-09 Thread Alin Jerpelea
I cant see any config ! heck what selects those options and why they are not selected NETDEVICES ARCH_HAVE_PHY On Thu, Jan 9, 2020 at 8:23 AM Adam Feuer wrote: > I forgot to attach the config file. Here it is. > > -adam > > On Wed, Jan 8, 2020 at 7:57 PM Adam Feuer wrote: > >> Hi, >> >> I'm t

Re: Question about savedefconfig warnings

2020-01-08 Thread Adam Feuer
I forgot to attach the config file. Here it is. -adam On Wed, Jan 8, 2020 at 7:57 PM Adam Feuer wrote: > Hi, > > I'm trying to save a defconfig, so I can put together an example for USB > over Ethernet example I'm working on. It's working on the SAMA5D36-Xplained > via USB 2.0 HS, by the way– v

Question about savedefconfig warnings

2020-01-08 Thread Adam Feuer
Hi, I'm trying to save a defconfig, so I can put together an example for USB over Ethernet example I'm working on. It's working on the SAMA5D36-Xplained via USB 2.0 HS, by the way– very nice. When I do 'make savedefconfig' I get the following message twice: warning: (IMXRT_ENET && TIVA_PHY_INTER