linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* Kconfig errors
@ 2014-01-17  7:37 Prabhakar Lad
  2014-01-22 12:24 ` Prabhakar Lad
  0 siblings, 1 reply; 4+ messages in thread
From: Prabhakar Lad @ 2014-01-17  7:37 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On Linux-next branch I see following errors for davinci_all_defconfig
& da8xx_omapl_defconfig configs,

arch/arm/Kconfig:1966:error: recursive dependency detected!
arch/arm/Kconfig:1966:    symbol ZBOOT_ROM depends on AUTO_ZRELADDR
arch/arm/Kconfig:2154:    symbol AUTO_ZRELADDR is selected by ZBOOT_ROM
#
# configuration written to .config
#

Regards,
--Prabhakar Lad

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Kconfig errors
  2014-01-17  7:37 Kconfig errors Prabhakar Lad
@ 2014-01-22 12:24 ` Prabhakar Lad
  2014-01-22 12:26   ` Russell King - ARM Linux
  0 siblings, 1 reply; 4+ messages in thread
From: Prabhakar Lad @ 2014-01-22 12:24 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Russell,

On Fri, Jan 17, 2014 at 1:07 PM, Prabhakar Lad
<prabhakar.csengg@gmail.com> wrote:
> Hi,
>
> On Linux-next branch I see following errors for davinci_all_defconfig
> & da8xx_omapl_defconfig configs,
>
> arch/arm/Kconfig:1966:error: recursive dependency detected!
> arch/arm/Kconfig:1966:    symbol ZBOOT_ROM depends on AUTO_ZRELADDR
> arch/arm/Kconfig:2154:    symbol AUTO_ZRELADDR is selected by ZBOOT_ROM
> #
> # configuration written to .config
> #
>
I am seeing this errors on linux-next, with your recent patch,
"[PATCH] Fix select-induced Kconfig warning for ZBOOT_ROM"
and strangely I see that AUTO_ZRELADDR doesnt select ZBOOT_ROM
but still an error.

Note: For the davinci configs CONFIG_AUTO_ZRELADDR is not set and
CONFIG_ZBOOT_ROM_TEXT=0x0, CONFIG_ZBOOT_ROM_BSS=0x0

Regards,
--Prabhakar Lad

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Kconfig errors
  2014-01-22 12:24 ` Prabhakar Lad
@ 2014-01-22 12:26   ` Russell King - ARM Linux
  2014-01-23  5:21     ` Prabhakar Lad
  0 siblings, 1 reply; 4+ messages in thread
From: Russell King - ARM Linux @ 2014-01-22 12:26 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Jan 22, 2014 at 05:54:29PM +0530, Prabhakar Lad wrote:
> Hi Russell,
> 
> On Fri, Jan 17, 2014 at 1:07 PM, Prabhakar Lad
> <prabhakar.csengg@gmail.com> wrote:
> > Hi,
> >
> > On Linux-next branch I see following errors for davinci_all_defconfig
> > & da8xx_omapl_defconfig configs,
> >
> > arch/arm/Kconfig:1966:error: recursive dependency detected!
> > arch/arm/Kconfig:1966:    symbol ZBOOT_ROM depends on AUTO_ZRELADDR
> > arch/arm/Kconfig:2154:    symbol AUTO_ZRELADDR is selected by ZBOOT_ROM
> > #
> > # configuration written to .config
> > #
> >
> I am seeing this errors on linux-next, with your recent patch,
> "[PATCH] Fix select-induced Kconfig warning for ZBOOT_ROM"
> and strangely I see that AUTO_ZRELADDR doesnt select ZBOOT_ROM
> but still an error.
> 
> Note: For the davinci configs CONFIG_AUTO_ZRELADDR is not set and
> CONFIG_ZBOOT_ROM_TEXT=0x0, CONFIG_ZBOOT_ROM_BSS=0x0

I've killed off the "select AUTO_ZRELADDR if !ZBOOT_ROM" in the IMX
Kconfig now, so when linux-next picks up my tree, that should be gone.

-- 
FTTC broadband for 0.8mile line: 5.8Mbps down 500kbps up.  Estimation
in database were 13.1 to 19Mbit for a good line, about 7.5+ for a bad.
Estimate before purchase was "up to 13.2Mbit".

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Kconfig errors
  2014-01-22 12:26   ` Russell King - ARM Linux
@ 2014-01-23  5:21     ` Prabhakar Lad
  0 siblings, 0 replies; 4+ messages in thread
From: Prabhakar Lad @ 2014-01-23  5:21 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Jan 22, 2014 at 5:56 PM, Russell King - ARM Linux
<linux@arm.linux.org.uk> wrote:
> On Wed, Jan 22, 2014 at 05:54:29PM +0530, Prabhakar Lad wrote:
>> Hi Russell,
>>
>> On Fri, Jan 17, 2014 at 1:07 PM, Prabhakar Lad
>> <prabhakar.csengg@gmail.com> wrote:
>> > Hi,
>> >
>> > On Linux-next branch I see following errors for davinci_all_defconfig
>> > & da8xx_omapl_defconfig configs,
>> >
>> > arch/arm/Kconfig:1966:error: recursive dependency detected!
>> > arch/arm/Kconfig:1966:    symbol ZBOOT_ROM depends on AUTO_ZRELADDR
>> > arch/arm/Kconfig:2154:    symbol AUTO_ZRELADDR is selected by ZBOOT_ROM
>> > #
>> > # configuration written to .config
>> > #
>> >
>> I am seeing this errors on linux-next, with your recent patch,
>> "[PATCH] Fix select-induced Kconfig warning for ZBOOT_ROM"
>> and strangely I see that AUTO_ZRELADDR doesnt select ZBOOT_ROM
>> but still an error.
>>
>> Note: For the davinci configs CONFIG_AUTO_ZRELADDR is not set and
>> CONFIG_ZBOOT_ROM_TEXT=0x0, CONFIG_ZBOOT_ROM_BSS=0x0
>
> I've killed off the "select AUTO_ZRELADDR if !ZBOOT_ROM" in the IMX
> Kconfig now, so when linux-next picks up my tree, that should be gone.
>
Thanks that helps.

Regards,
--Prabhakar Lad

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-01-23  5:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-17  7:37 Kconfig errors Prabhakar Lad
2014-01-22 12:24 ` Prabhakar Lad
2014-01-22 12:26   ` Russell King - ARM Linux
2014-01-23  5:21     ` Prabhakar Lad

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).