Re: [U-Boot] [PATCH] Add support for the DevKit8000 board
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 12:56 Sun 23 Aug , Frederik Kriewitz wrote: >> This patch adds support for the DevKit8000 board. >> >> Signed-off-by: Frederik Kriewitz ... >> create mode 100644 include/configs/devkit8000.h ... > applied to u-boot-arm I think we agreed on the nclude/configs/omap3_devkit8000.h version? Dirk ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot
Re: [U-Boot] [PATCH] Add support for the DevKit8000 board
On 12:56 Sun 23 Aug , Frederik Kriewitz wrote: > This patch adds support for the DevKit8000 board. > > Signed-off-by: Frederik Kriewitz > --- > mach-types.h needs to be synced (MACH_TYPE_DEVKIT8000) > --- > MAINTAINERS |4 + > MAKEALL |1 + > Makefile|3 + > board/timll/devkit8000/Makefile | 52 + > board/timll/devkit8000/config.mk| 35 > board/timll/devkit8000/devkit8000.c | 131 > board/timll/devkit8000/devkit8000.h | 373 > +++ > doc/README.timll| 15 ++ > include/configs/devkit8000.h| 307 > 9 files changed, 921 insertions(+), 0 deletions(-) > create mode 100644 board/timll/devkit8000/Makefile > create mode 100644 board/timll/devkit8000/config.mk > create mode 100644 board/timll/devkit8000/devkit8000.c > create mode 100644 board/timll/devkit8000/devkit8000.h > create mode 100644 doc/README.timll > create mode 100644 include/configs/devkit8000.h applied to u-boot-arm Best Regards, J. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot
Re: [U-Boot] [PATCH] Add support for the DevKit8000 board
On 12:56 Sun 23 Aug , Frederik Kriewitz wrote: > This patch adds support for the DevKit8000 board. > > Signed-off-by: Frederik Kriewitz > --- > mach-types.h needs to be synced (MACH_TYPE_DEVKIT8000) > --- > MAINTAINERS |4 + > MAKEALL |1 + > Makefile|3 + > board/timll/devkit8000/Makefile | 52 + > board/timll/devkit8000/config.mk| 35 > board/timll/devkit8000/devkit8000.c | 131 > board/timll/devkit8000/devkit8000.h | 373 > +++ > doc/README.timll| 15 ++ > include/configs/devkit8000.h| 307 > 9 files changed, 921 insertions(+), 0 deletions(-) > create mode 100644 board/timll/devkit8000/Makefile > create mode 100644 board/timll/devkit8000/config.mk > create mode 100644 board/timll/devkit8000/devkit8000.c > create mode 100644 board/timll/devkit8000/devkit8000.h > create mode 100644 doc/README.timll > create mode 100644 include/configs/devkit8000. this one is fine but for the next time please specify in the subject the patch version to known which one is the last Best Regards, J. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot
Re: [U-Boot] [PATCH] Add support for the DevKit8000 board
Dear Frederik Kriewitz, In message <1251048253-14273-1-git-send-email-frede...@kriewitz.eu> you wrote: > This patch adds support for the DevKit8000 board. > > Signed-off-by: Frederik Kriewitz > --- > mach-types.h needs to be synced (MACH_TYPE_DEVKIT8000) > --- > --- > MAINTAINERS|4 + > MAKEALL|1 + ... Will you please try and follow the rules? I don't see any indication that this is a repost of earlier patches. I would expoect a version number (something like "[PATCH v4]") in the subject line. git patches have exactly one "---" line, not 3. I would expect to find a comment what you changed in this version of the patch compared to older versions. Or do you expect us to invest lots of (avoidable) effort to compare the diffs? Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de Anyone who isn't confused here doesn't really know what's going on. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot
[U-Boot] [PATCH] Add support for the DevKit8000 board
This patch adds support for the DevKit8000 board. Signed-off-by: Frederik Kriewitz --- mach-types.h needs to be synced (MACH_TYPE_DEVKIT8000) --- --- MAINTAINERS|4 + MAKEALL|1 + Makefile |3 + board/devkit8000/Makefile | 52 + board/devkit8000/config.mk | 35 board/devkit8000/devkit8000.c | 131 + board/devkit8000/devkit8000.h | 373 doc/README.devkit8000 | 15 ++ include/configs/devkit8000.h | 307 + include/configs/omap3_devkit8000.h | 307 + 10 files changed, 1228 insertions(+), 0 deletions(-) create mode 100644 board/devkit8000/Makefile create mode 100644 board/devkit8000/config.mk create mode 100644 board/devkit8000/devkit8000.c create mode 100644 board/devkit8000/devkit8000.h create mode 100644 doc/README.devkit8000 create mode 100644 include/configs/devkit8000.h create mode 100644 include/configs/omap3_devkit8000.h diff --git a/MAINTAINERS b/MAINTAINERS index 620604c..1919505 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -587,6 +587,10 @@ Nishant Kamat omap1610h2 ARM926EJS +Frederik Kriewitz + + omap3_devkit8000ARM CORTEX-A8 (OMAP3530 SoC) + Sergey Kubushyn DV-EVM ARM926EJS diff --git a/MAKEALL b/MAKEALL index edebaea..ac46ddc 100755 --- a/MAKEALL +++ b/MAKEALL @@ -576,6 +576,7 @@ LIST_ARM11="\ # LIST_ARM_CORTEX_A8=" \ omap3_beagle\ + omap3_devkit8000\ omap3_overo \ omap3_evm \ omap3_pandora \ diff --git a/Makefile b/Makefile index 96cca23..a671bfc 100644 --- a/Makefile +++ b/Makefile @@ -3089,6 +3089,9 @@ SMN42_config : unconfig omap3_beagle_config : unconfig @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 beagle omap3 omap3 +omap3_devkit8000_config : unconfig + @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 devkit8000 NULL omap3 + omap3_overo_config : unconfig @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 overo omap3 omap3 diff --git a/board/devkit8000/Makefile b/board/devkit8000/Makefile new file mode 100644 index 000..38600c4 --- /dev/null +++ b/board/devkit8000/Makefile @@ -0,0 +1,52 @@ +# +# (C) Copyright 2000, 2001, 2002 +# Wolfgang Denk, DENX Software Engineering, w...@denx.de. +# +# (C) Copyright 2009 +# Frederik Kriewitz +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# + +include $(TOPDIR)/config.mk + +LIB= $(obj)lib$(BOARD).a + +COBJS := devkit8000.o + +SRCS := $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) + +$(LIB):$(obj).depend $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) + +clean: + rm -f $(OBJS) + +distclean: clean + rm -f $(LIB) core *.bak $(obj).depend + +# + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +# diff --git a/board/devkit8000/config.mk b/board/devkit8000/config.mk new file mode 100644 index 000..6bfcef7 --- /dev/null +++ b/board/devkit8000/config.mk @@ -0,0 +1,35 @@ +# +# (C) Copyright 2006 +# Texas Instruments, +# +# (C) Copyright 2009 +# Frederik Kriewitz +# +# DevKit8000 uses OMAP3 (ARM-CortexA8) cpu +# see http://www.ti.com/ for more information on Texas Instruments +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# Yo
Re: [U-Boot] [PATCH] Add support for the DevKit8000 board
On Sun, Aug 23, 2009 at 6:02 PM, Dirk Behme wrote: > Frederik Kriewitz wrote: >> >> This patch adds support for the DevKit8000 board. >> >> Signed-off-by: Frederik Kriewitz >> --- >> mach-types.h needs to be synced (MACH_TYPE_DEVKIT8000) >> --- >> MAINTAINERS |4 + >> MAKEALL |1 + >> Makefile|3 + >> board/timll/devkit8000/Makefile | 52 + > > I'm not sure what "timll" stands for? Timll is the vendor. > Depending on the result of the board directory rename discussion, I'd like > to see board/devkit8000 or board/omap3devkit8000 here. I'll send another patch, it's your choice then :) ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot
Re: [U-Boot] [PATCH] Add support for the DevKit8000 board
Frederik Kriewitz wrote: > This patch adds support for the DevKit8000 board. > > Signed-off-by: Frederik Kriewitz > --- > mach-types.h needs to be synced (MACH_TYPE_DEVKIT8000) > --- > MAINTAINERS |4 + > MAKEALL |1 + > Makefile|3 + > board/timll/devkit8000/Makefile | 52 + I'm not sure what "timll" stands for? Depending on the result of the board directory rename discussion, I'd like to see board/devkit8000 or board/omap3devkit8000 here. > diff --git a/MAKEALL b/MAKEALL > index edebaea..65eb4b7 100755 > --- a/MAKEALL > +++ b/MAKEALL > @@ -575,6 +575,7 @@ LIST_ARM11=" \ > ## ARM Cortex-A8 Systems > # > LIST_ARM_CORTEX_A8=" \ > + devkit8000 \ > omap3_beagle\ > omap3_overo \ > omap3_evm \ What's about "omap3_devkit8000"? Best regards Dirk ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot
[U-Boot] [PATCH] Add support for the DevKit8000 board
This patch adds support for the DevKit8000 board. Signed-off-by: Frederik Kriewitz --- mach-types.h needs to be synced (MACH_TYPE_DEVKIT8000) --- MAINTAINERS |4 + MAKEALL |1 + Makefile|3 + board/timll/devkit8000/Makefile | 52 + board/timll/devkit8000/config.mk| 35 board/timll/devkit8000/devkit8000.c | 131 board/timll/devkit8000/devkit8000.h | 373 +++ doc/README.timll| 15 ++ include/configs/devkit8000.h| 307 9 files changed, 921 insertions(+), 0 deletions(-) create mode 100644 board/timll/devkit8000/Makefile create mode 100644 board/timll/devkit8000/config.mk create mode 100644 board/timll/devkit8000/devkit8000.c create mode 100644 board/timll/devkit8000/devkit8000.h create mode 100644 doc/README.timll create mode 100644 include/configs/devkit8000.h diff --git a/MAINTAINERS b/MAINTAINERS index 620604c..c78245f 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -587,6 +587,10 @@ Nishant Kamat omap1610h2 ARM926EJS +Frederik Kriewitz + + devkit8000 ARM CORTEX-A8 (OMAP3530 SoC) + Sergey Kubushyn DV-EVM ARM926EJS diff --git a/MAKEALL b/MAKEALL index edebaea..65eb4b7 100755 --- a/MAKEALL +++ b/MAKEALL @@ -575,6 +575,7 @@ LIST_ARM11="\ ## ARM Cortex-A8 Systems # LIST_ARM_CORTEX_A8=" \ + devkit8000 \ omap3_beagle\ omap3_overo \ omap3_evm \ diff --git a/Makefile b/Makefile index 96cca23..0f96321 100644 --- a/Makefile +++ b/Makefile @@ -3086,6 +3086,9 @@ SMN42_config : unconfig ## ARM CORTEX Systems # +devkit8000_config :unconfig + @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 devkit8000 timll omap3 + omap3_beagle_config : unconfig @$(MKCONFIG) $(@:_config=) arm arm_cortexa8 beagle omap3 omap3 diff --git a/board/timll/devkit8000/Makefile b/board/timll/devkit8000/Makefile new file mode 100644 index 000..38600c4 --- /dev/null +++ b/board/timll/devkit8000/Makefile @@ -0,0 +1,52 @@ +# +# (C) Copyright 2000, 2001, 2002 +# Wolfgang Denk, DENX Software Engineering, w...@denx.de. +# +# (C) Copyright 2009 +# Frederik Kriewitz +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# + +include $(TOPDIR)/config.mk + +LIB= $(obj)lib$(BOARD).a + +COBJS := devkit8000.o + +SRCS := $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) + +$(LIB):$(obj).depend $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) + +clean: + rm -f $(OBJS) + +distclean: clean + rm -f $(LIB) core *.bak $(obj).depend + +# + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +# diff --git a/board/timll/devkit8000/config.mk b/board/timll/devkit8000/config.mk new file mode 100644 index 000..6bfcef7 --- /dev/null +++ b/board/timll/devkit8000/config.mk @@ -0,0 +1,35 @@ +# +# (C) Copyright 2006 +# Texas Instruments, +# +# (C) Copyright 2009 +# Frederik Kriewitz +# +# DevKit8000 uses OMAP3 (ARM-CortexA8) cpu +# see http://www.ti.com/ for more information on Texas Instruments +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, w