All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kconfig: don't select 64 bit option on sparc32 all{yes,mod}config
@ 2010-10-22 15:48 Namhyung Kim
  2010-10-24 22:10 ` Michal Marek
  0 siblings, 1 reply; 3+ messages in thread
From: Namhyung Kim @ 2010-10-22 15:48 UTC (permalink / raw)
  To: Roman Zippel; +Cc: linux-kbuild, David S. Miller, linux-kernel

The SPARC architecture provides 64BIT config option to select
build type and it is set to 1 on ARCH=sparc64 as a default value.
But in case of 32-bit, it is also set to 1 by the allyesconfig
logic, end result would be the same as of sparc64. So I think
it would be better if plain ARCH=sparc all{yes,mod}config do not
set it then we can test 32-bit build by default.

Signed-off-by: Namhyung Kim <namhyung@gmail.com>
---
 scripts/kconfig/confdata.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c
index 515253f..9820c77 100644
--- a/scripts/kconfig/confdata.c
+++ b/scripts/kconfig/confdata.c
@@ -1018,6 +1018,10 @@ void conf_set_all_new_symbols(enum conf_def_mode mode)
 			break;
 		}
 
+		/* Do not set 64 bit option when sparc32 allyesconfig */
+		if (sym->name && strcmp(sym->name, "64BIT") == 0 &&
+		    strcmp(getenv("ARCH"), "sparc") == 0)
+			sym->def[S_DEF_USER].tri = no;
 	}
 
 	sym_clear_all_valid();
-- 
1.7.0.4


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

* Re: [PATCH] kconfig: don't select 64 bit option on sparc32 all{yes,mod}config
  2010-10-22 15:48 [PATCH] kconfig: don't select 64 bit option on sparc32 all{yes,mod}config Namhyung Kim
@ 2010-10-24 22:10 ` Michal Marek
  2010-10-25  5:48   ` Namhyung Kim
  0 siblings, 1 reply; 3+ messages in thread
From: Michal Marek @ 2010-10-24 22:10 UTC (permalink / raw)
  To: Namhyung Kim; +Cc: Roman Zippel, linux-kbuild, David S. Miller, linux-kernel

On 22.10.2010 17:48, Namhyung Kim wrote:
> The SPARC architecture provides 64BIT config option to select
> build type and it is set to 1 on ARCH=sparc64 as a default value.
> But in case of 32-bit, it is also set to 1 by the allyesconfig
> logic, end result would be the same as of sparc64. So I think
> it would be better if plain ARCH=sparc all{yes,mod}config do not
> set it then we can test 32-bit build by default.
> 
> Signed-off-by: Namhyung Kim <namhyung@gmail.com>
> ---
>  scripts/kconfig/confdata.c |    4 ++++

Can't this be fixed in the sparc Makefile/Kconfig instead? E.g. have
ARCH=sparc -> ask
ARCH=sparc64 -> CONFIG_64BIT=y
ARCH=sparc32 -> # CONFIG_64BIT is not set
like the x86/i386/x86_64 ARCH option for x86.

Michal

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

* Re: [PATCH] kconfig: don't select 64 bit option on sparc32 all{yes,mod}config
  2010-10-24 22:10 ` Michal Marek
@ 2010-10-25  5:48   ` Namhyung Kim
  0 siblings, 0 replies; 3+ messages in thread
From: Namhyung Kim @ 2010-10-25  5:48 UTC (permalink / raw)
  To: Michal Marek; +Cc: Roman Zippel, linux-kbuild, David S. Miller, linux-kernel

2010-10-25 (월), 00:10 +0200, Michal Marek:
> On 22.10.2010 17:48, Namhyung Kim wrote:
> > The SPARC architecture provides 64BIT config option to select
> > build type and it is set to 1 on ARCH=sparc64 as a default value.
> > But in case of 32-bit, it is also set to 1 by the allyesconfig
> > logic, end result would be the same as of sparc64. So I think
> > it would be better if plain ARCH=sparc all{yes,mod}config do not
> > set it then we can test 32-bit build by default.
> > 
> > Signed-off-by: Namhyung Kim <namhyung@gmail.com>
> > ---
> >  scripts/kconfig/confdata.c |    4 ++++
> 
> Can't this be fixed in the sparc Makefile/Kconfig instead? E.g. have
> ARCH=sparc -> ask
> ARCH=sparc64 -> CONFIG_64BIT=y
> ARCH=sparc32 -> # CONFIG_64BIT is not set
> like the x86/i386/x86_64 ARCH option for x86.
> 
> Michal

Looks better. :-) I didn't noticed that CONFIG_64BIT setup on sparc was
just same as x86's. Adding sparc32 target will simply resolve the issue.
The patch follows, Thanks.


kbuild: add ARCH=sparc32 target
    
Add 'sparc32' ARCH target to test all{yes,mod}config for 32-bit build.
    
Signed-off-by: Namhyung Kim <namhyung@gmail.com>

diff --git a/Makefile b/Makefile
index 3e43805..8da6685 100644
--- a/Makefile
+++ b/Makefile
@@ -204,6 +204,9 @@ ifeq ($(ARCH),x86_64)
 endif
 
 # Additional ARCH settings for sparc
+ifeq ($(ARCH),sparc32)
+       SRCARCH := sparc
+endif
 ifeq ($(ARCH),sparc64)
        SRCARCH := sparc
 endif


-- 
Regards,
Namhyung Kim



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

end of thread, other threads:[~2010-10-25  5:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-22 15:48 [PATCH] kconfig: don't select 64 bit option on sparc32 all{yes,mod}config Namhyung Kim
2010-10-24 22:10 ` Michal Marek
2010-10-25  5:48   ` Namhyung Kim

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.