All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST
@ 2021-10-20 19:11 Guenter Roeck
  2021-10-20 20:15 ` Randy Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Guenter Roeck @ 2021-10-20 19:11 UTC (permalink / raw)
  To: Dinh Nguyen; +Cc: linux-kernel, Guenter Roeck

nios2:allmodconfig builds fail with

make[1]: *** No rule to make target 'arch/nios2/boot/dts/""',
	needed by 'arch/nios2/boot/dts/built-in.a'.  Stop.
make: [Makefile:1868: arch/nios2/boot/dts] Error 2 (ignored)

This is seen with compile tests since those enable NIOS2_DTB_SOURCE_BOOL,
which in turn enables NIOS2_DTB_SOURCE. This causes the build error
because the default value for NIOS2_DTB_SOURCE is an empty string.
Disable NIOS2_DTB_SOURCE_BOOL for compile tests to avoid the error.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
v2: Include error message

 arch/nios2/platform/Kconfig.platform | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/nios2/platform/Kconfig.platform b/arch/nios2/platform/Kconfig.platform
index 9e32fb7f3d4c..e849daff6fd1 100644
--- a/arch/nios2/platform/Kconfig.platform
+++ b/arch/nios2/platform/Kconfig.platform
@@ -37,6 +37,7 @@ config NIOS2_DTB_PHYS_ADDR
 
 config NIOS2_DTB_SOURCE_BOOL
 	bool "Compile and link device tree into kernel image"
+	depends on !COMPILE_TEST
 	help
 	  This allows you to specify a dts (device tree source) file
 	  which will be compiled and linked into the kernel image.
-- 
2.33.0


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

* Re: [PATCH v2] nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST
  2021-10-20 19:11 [PATCH v2] nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST Guenter Roeck
@ 2021-10-20 20:15 ` Randy Dunlap
  2021-10-21 14:01   ` Dinh Nguyen
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2021-10-20 20:15 UTC (permalink / raw)
  To: Guenter Roeck, Dinh Nguyen; +Cc: linux-kernel

On 10/20/21 12:11 PM, Guenter Roeck wrote:
> nios2:allmodconfig builds fail with
> 
> make[1]: *** No rule to make target 'arch/nios2/boot/dts/""',
> 	needed by 'arch/nios2/boot/dts/built-in.a'.  Stop.
> make: [Makefile:1868: arch/nios2/boot/dts] Error 2 (ignored)
> 
> This is seen with compile tests since those enable NIOS2_DTB_SOURCE_BOOL,
> which in turn enables NIOS2_DTB_SOURCE. This causes the build error
> because the default value for NIOS2_DTB_SOURCE is an empty string.
> Disable NIOS2_DTB_SOURCE_BOOL for compile tests to avoid the error.
> 
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>

Thanks, I've seen this problem also.

Reviewed-by: Randy Dunlap <rdunlap@infradead.org>

> ---
> v2: Include error message
> 
>   arch/nios2/platform/Kconfig.platform | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/arch/nios2/platform/Kconfig.platform b/arch/nios2/platform/Kconfig.platform
> index 9e32fb7f3d4c..e849daff6fd1 100644
> --- a/arch/nios2/platform/Kconfig.platform
> +++ b/arch/nios2/platform/Kconfig.platform
> @@ -37,6 +37,7 @@ config NIOS2_DTB_PHYS_ADDR
>   
>   config NIOS2_DTB_SOURCE_BOOL
>   	bool "Compile and link device tree into kernel image"
> +	depends on !COMPILE_TEST
>   	help
>   	  This allows you to specify a dts (device tree source) file
>   	  which will be compiled and linked into the kernel image.
> 


-- 
~Randy

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

* Re: [PATCH v2] nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST
  2021-10-20 20:15 ` Randy Dunlap
@ 2021-10-21 14:01   ` Dinh Nguyen
  0 siblings, 0 replies; 3+ messages in thread
From: Dinh Nguyen @ 2021-10-21 14:01 UTC (permalink / raw)
  To: Randy Dunlap, Guenter Roeck; +Cc: linux-kernel



On 10/20/21 3:15 PM, Randy Dunlap wrote:
> On 10/20/21 12:11 PM, Guenter Roeck wrote:
>> nios2:allmodconfig builds fail with
>>
>> make[1]: *** No rule to make target 'arch/nios2/boot/dts/""',
>>     needed by 'arch/nios2/boot/dts/built-in.a'.  Stop.
>> make: [Makefile:1868: arch/nios2/boot/dts] Error 2 (ignored)
>>
>> This is seen with compile tests since those enable NIOS2_DTB_SOURCE_BOOL,
>> which in turn enables NIOS2_DTB_SOURCE. This causes the build error
>> because the default value for NIOS2_DTB_SOURCE is an empty string.
>> Disable NIOS2_DTB_SOURCE_BOOL for compile tests to avoid the error.
>>
>> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> 
> Thanks, I've seen this problem also.
> 
> Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
> 

Does this need a Fixes tag?

Fixes: 2fc8483fdcde ("nios2: Build infrastructure")

Dinh

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

end of thread, other threads:[~2021-10-21 14:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-20 19:11 [PATCH v2] nios2: Make NIOS2_DTB_SOURCE_BOOL depend on !COMPILE_TEST Guenter Roeck
2021-10-20 20:15 ` Randy Dunlap
2021-10-21 14:01   ` Dinh Nguyen

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.