[U-Boot-Users] [PATCH] sh: Update Makefile

From: Nobuhiro Iwamatsu iwamatsu@nigauri.org
Add support MS7722SE01 to Makefile.
Signed-off-by: Nobuhiro Iwamatsu iwamatsu@nigauri.org --- Makefile | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile index 9ae11e2..86bc753 100644 --- a/Makefile +++ b/Makefile @@ -2603,6 +2603,11 @@ ms7750se_config: unconfig @echo "#define CONFIG_MS7750SE 1" >> include/config.h @./mkconfig -a $(@:_config=) sh sh4 ms7750se
+ms7722se_config : unconfig + @ >include/config.h + @echo "#define CONFIG_MS7722SE 1" >> include/config.h + @./mkconfig -a $(@:_config=) sh sh4 ms7722se + ######################################################################### ######################################################################### #########################################################################

On 02:54 Sun 25 Nov , Nobuhiro Iwamatsu wrote:
From: Nobuhiro Iwamatsu iwamatsu@nigauri.org
Add support MS7722SE01 to Makefile.
Signed-off-by: Nobuhiro Iwamatsu iwamatsu@nigauri.org
Makefile | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile index 9ae11e2..86bc753 100644 --- a/Makefile +++ b/Makefile @@ -2603,6 +2603,11 @@ ms7750se_config: unconfig @echo "#define CONFIG_MS7750SE 1" >> include/config.h @./mkconfig -a $(@:_config=) sh sh4 ms7750se
+ms7722se_config : unconfig
- @ >include/config.h
- @echo "#define CONFIG_MS7722SE 1" >> include/config.h
- @./mkconfig -a $(@:_config=) sh sh4 ms7722se
######################################################################### ######################################################################### #########################################################################
I think you'd create the SH arch into Makefile and add your board.
Best Regards, J.
-- 1.5.3.5
This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ U-Boot-Users mailing list U-Boot-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/u-boot-users

Hello,
Thank you for your comments.
On Sat, 24 Nov 2007 22:17:25 +0100 Jean-Christophe PLAGNIOL-VILLARD plagnioj@jcrosoft.com wrote:
On 02:54 Sun 25 Nov , Nobuhiro Iwamatsu wrote:
From: Nobuhiro Iwamatsu iwamatsu@nigauri.org
Add support MS7722SE01 to Makefile.
Signed-off-by: Nobuhiro Iwamatsu iwamatsu@nigauri.org
Makefile | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile index 9ae11e2..86bc753 100644 --- a/Makefile +++ b/Makefile @@ -2603,6 +2603,11 @@ ms7750se_config: unconfig @echo "#define CONFIG_MS7750SE 1" >> include/config.h @./mkconfig -a $(@:_config=) sh sh4 ms7750se
+ms7722se_config : unconfig
- @ >include/config.h
- @echo "#define CONFIG_MS7722SE 1" >> include/config.h
- @./mkconfig -a $(@:_config=) sh sh4 ms7722se
######################################################################### ######################################################################### #########################################################################
I think you'd create the SH arch into Makefile and add your board.
I'm sorry. I don't understand you wrote. Could you teach in detail?
regards, Nobuhiro

On 00:40 Tue 27 Nov , Nobuhiro Iwamatsu wrote:
Hello,
Thank you for your comments.
On Sat, 24 Nov 2007 22:17:25 +0100 Jean-Christophe PLAGNIOL-VILLARD plagnioj@jcrosoft.com wrote:
- @echo "#define CONFIG_MS7722SE 1" >> include/config.h
- @./mkconfig -a $(@:_config=) sh sh4 ms7722se
######################################################################### ######################################################################### #########################################################################
I think you'd create the SH arch into Makefile and add your board.
A typo
I think you'd create the SH arch into MAKEALL and add your board.
I join the patch
Best Regards, J.
I'm sorry. I don't understand you wrote. Could you teach in detail?
regards, Nobuhiro -- Nobuhiro Iwamatsu iwamatsu@nigauri.org iwamatsu@debian.or.jp
GPG ID : 3170EBE9

Hello,
On Mon, 26 Nov 2007 17:24:00 +0100 Jean-Christophe PLAGNIOL-VILLARD plagnioj@jcrosoft.com wrote:
##
I think you'd create the SH arch into Makefile and add your board.
A typo
I think you'd create the SH arch into MAKEALL and add your board.
I join the patch
Oh, OK. I did not notice it. Thank you. Could you resend the patch adding "Signed-off-by"?
regards, Nobuhiro

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagnioj@jcrosoft.com
diff --git a/MAKEALL b/MAKEALL index a02412b..c83bc5b 100755 --- a/MAKEALL +++ b/MAKEALL @@ -655,6 +655,22 @@ LIST_blackfin=" \ bf561-ezkit \ "
+######################################################################### +## SH Systems +######################################################################### + +LIST_sh4=" \ + ms7722se \ +" + +LIST_sh3="" + + +LIST_sh=" \ + ${LIST_sh3} \ + ${LIST_sh4} \ +" + #-----------------------------------------------------------------------
#----- for now, just run PPC by default ----- @@ -689,7 +705,9 @@ do mips|mips_el| \ nios|nios2| \ ppc|5xx|5xxx|512x|8xx|8220|824x|8260|83xx|85xx|86xx|4xx|7xx|74xx| \ - x86|I486|TSEC) + x86|I486|TSEC| \ + sh|sh4|sh3 \ + ) for target in `eval echo '$LIST_'${arg}` do build_target ${target}
participants (2)
-
Jean-Christophe PLAGNIOL-VILLARD
-
Nobuhiro Iwamatsu