Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-07-17 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <1243107758-4528-1-git-send-email-plagn...@jcrosoft.com> you wrote: > at the first run of make we generate the autoconf.mk and autoconf.mk.dep > if not already the case and we currently include only to .dep > > in order to use these autogenerated

Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-07-10 Thread Mike Frysinger
On Friday 10 July 2009 18:35:59 Wolfgang Denk wrote: > Mike Frysinger wrote: > > while i dont really understand your changelog, i think you're attempting > > to fix a problem i too have hit with Blackfin systems. but i just hacked > > around it in my tree (i posted this patch before but Wolfgang o

Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-07-10 Thread Wolfgang Denk
Dear Mike Frysinger, In message <200906231307.32968.vap...@gentoo.org> you wrote: > > while i dont really understand your changelog, i think you're attempting to > fix a problem i too have hit with Blackfin systems. but i just hacked around > it in my tree (i posted this patch before but Wolfga

Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-06-23 Thread Jean-Christophe PLAGNIOL-VILLARD
On 00:40 Wed 24 Jun , Shinya Kuribayashi wrote: > Jean-Christophe PLAGNIOL-VILLARD wrote: > >> | ifneq (,$(CONFIG_CPU_LITTLE_ENDIAN)) > >> | PLATFORM_CPPFLAGS+= $(shell $(CC) -dumpmachine |... > >> | else > >> | PLATFORM_CPPFLAGS+= $(shell $(CC) -dumpmachine |... > >> | endif >

Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-06-23 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:07 Tue 23 Jun , Mike Frysinger wrote: > On Saturday 23 May 2009 15:42:36 Jean-Christophe PLAGNIOL-VILLARD wrote: > > at the first run of make we generate the autoconf.mk and autoconf.mk.dep > > if not already the case and we currently include only to .dep > > > > in order to use these aut

Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-06-23 Thread Mike Frysinger
On Saturday 23 May 2009 15:42:36 Jean-Christophe PLAGNIOL-VILLARD wrote: > at the first run of make we generate the autoconf.mk and autoconf.mk.dep > if not already the case and we currently include only to .dep > > in order to use these autogenerated value we need to include it also evenif > it's

Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-06-23 Thread Shinya Kuribayashi
Jean-Christophe PLAGNIOL-VILLARD wrote: >> | ifneq (,$(CONFIG_CPU_LITTLE_ENDIAN)) >> | PLATFORM_CPPFLAGS += $(shell $(CC) -dumpmachine |... >> | else >> | PLATFORM_CPPFLAGS += $(shell $(CC) -dumpmachine |... >> | endif >> | >> | PLATFORM_LDFLAGS += -EL >> >> does work. > ??? > you compile it as

Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-06-23 Thread Jean-Christophe PLAGNIOL-VILLARD
> > I'm still thinking how to fix this issue. > > The problem here is, deferred expansion on PLATFORM_LDFLAGS doesn't work > expectedly. In this case, > > | autoconf.mk > | --- > | CONFIG_CPU_LITTLE_ENDIAN=y > | > | mips_config.mk > | -- > | > | ifneq (,$(CONFIG_CPU_LITTLE

Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-06-23 Thread Shinya Kuribayashi
Hi Jean, or someone who understands U-Boot's build system well, Jean-Christophe PLAGNIOL-VILLARD wrote: > at the first run of make we generate the autoconf.mk and autoconf.mk.dep > if not already the case and we currently include only to .dep > > in order to use these autogenerated value we need

Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-05-24 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090524151849.gj26...@game.jcrosoft.org> you wrote: > On 00:28 Sun 24 May , Wolfgang Denk wrote: > > Dear Jean-Christophe PLAGNIOL-VILLARD, > > > > In message <1243107758-4528-1-git-send-email-plagn...@jcrosoft.com> you > > wrote: > > > at

Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-05-24 Thread Jean-Christophe PLAGNIOL-VILLARD
On 00:28 Sun 24 May , Wolfgang Denk wrote: > Dear Jean-Christophe PLAGNIOL-VILLARD, > > In message <1243107758-4528-1-git-send-email-plagn...@jcrosoft.com> you wrote: > > at the first run of make we generate the autoconf.mk and autoconf.mk.dep > > if not already the case and we currently inclu

Re: [U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-05-23 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <1243107758-4528-1-git-send-email-plagn...@jcrosoft.com> you wrote: > at the first run of make we generate the autoconf.mk and autoconf.mk.dep > if not already the case and we currently include only to .dep > > in order to use these autogenerated

[U-Boot] [PATCH 1/3] fix: missing autoconfig.mk from general Makefile

2009-05-23 Thread Jean-Christophe PLAGNIOL-VILLARD
at the first run of make we generate the autoconf.mk and autoconf.mk.dep if not already the case and we currently include only to .dep in order to use these autogenerated value we need to include it also evenif it's include in config.mk but it's done before there generation Signed-off-by: Jean-Ch