All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arch: mips: fix unmet dependency for DEBUG_INFO
@ 2021-03-26  5:20 Julian Braha
  2021-03-29  9:25 ` Thomas Bogendoerfer
  0 siblings, 1 reply; 2+ messages in thread
From: Julian Braha @ 2021-03-26  5:20 UTC (permalink / raw)
  To: tsbogend; +Cc: linux-kernel, linux-mips, fazilyildiran

When SB1XXX_CORELIS is enabled, COMPILE_TEST is disabled,
and DEBUG_KERNEL is disabled, Kbuild gives the
following warning:

WARNING: unmet direct dependencies detected for DEBUG_INFO
  Depends on [n]: DEBUG_KERNEL [=n] && !COMPILE_TEST [=n]
  Selected by [y]:
  - SB1XXX_CORELIS [=y] && SIBYTE_SB1xxx_SOC [=y] && !COMPILE_TEST [=n]

This is because SB1XXX_CORELIS selects DEBUG_INFO without
selecting or depending on DEBUG_KERNEL, despite DEBUG_INFO
depending on DEBUG_KERNEL.

Signed-off-by: Julian Braha <julianbraha@gmail.com>
---
 arch/mips/Kconfig.debug | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/mips/Kconfig.debug b/arch/mips/Kconfig.debug
index 7a8d94cdd493..f5832a49a881 100644
--- a/arch/mips/Kconfig.debug
+++ b/arch/mips/Kconfig.debug
@@ -77,6 +77,7 @@ config CMDLINE_OVERRIDE
 config SB1XXX_CORELIS
 	bool "Corelis Debugger"
 	depends on SIBYTE_SB1xxx_SOC
+	select DEBUG_KERNEL if !COMPILE_TEST
 	select DEBUG_INFO if !COMPILE_TEST
 	help
 	  Select compile flags that produce code that can be processed by the
-- 
2.25.1


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

* Re: [PATCH] arch: mips: fix unmet dependency for DEBUG_INFO
  2021-03-26  5:20 [PATCH] arch: mips: fix unmet dependency for DEBUG_INFO Julian Braha
@ 2021-03-29  9:25 ` Thomas Bogendoerfer
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Bogendoerfer @ 2021-03-29  9:25 UTC (permalink / raw)
  To: Julian Braha; +Cc: linux-kernel, linux-mips, fazilyildiran

On Fri, Mar 26, 2021 at 01:20:33AM -0400, Julian Braha wrote:
> When SB1XXX_CORELIS is enabled, COMPILE_TEST is disabled,
> and DEBUG_KERNEL is disabled, Kbuild gives the
> following warning:
> 
> WARNING: unmet direct dependencies detected for DEBUG_INFO
>   Depends on [n]: DEBUG_KERNEL [=n] && !COMPILE_TEST [=n]
>   Selected by [y]:
>   - SB1XXX_CORELIS [=y] && SIBYTE_SB1xxx_SOC [=y] && !COMPILE_TEST [=n]
> 
> This is because SB1XXX_CORELIS selects DEBUG_INFO without
> selecting or depending on DEBUG_KERNEL, despite DEBUG_INFO
> depending on DEBUG_KERNEL.
> 
> Signed-off-by: Julian Braha <julianbraha@gmail.com>
> ---
>  arch/mips/Kconfig.debug | 1 +
>  1 file changed, 1 insertion(+)

applied to mips-next.

Thomas.

-- 
Crap can work. Given enough thrust pigs will fly, but it's not necessarily a
good idea.                                                [ RFC1925, 2.3 ]

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

end of thread, other threads:[~2021-03-29  9:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-26  5:20 [PATCH] arch: mips: fix unmet dependency for DEBUG_INFO Julian Braha
2021-03-29  9:25 ` Thomas Bogendoerfer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.