From: Enric Balletbo i Serra Date: Mon, 23 May 2011 11:23:48 +0000 (+0530) Subject: OMAP3: Name refactoring for current and future IGEP boards X-Git-Tag: v1.5.1~22 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?p=pandora-x-loader.git;a=commitdiff_plain;h=d2ec378a0a8b3d2016546e12829caf7b90fa6800 OMAP3: Name refactoring for current and future IGEP boards Refactor IGEP2 support and add support for IGEP3 board. These boards are very similar and can be merged into one file (igep00x0). This is an attempt to reduce and not duplicate code unnecessarily. Signed-off-by: Enric Balletbo i Serra Signed-off-by: Anand Gadiyar --- diff --git a/MAINTAINERS b/MAINTAINERS index a089c34..ccc5c95 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -16,7 +16,7 @@ ######################################################################### Enric Balletbo i Serra, - igep0020 ARM ARMV7 (OMAP3xx SoC) + igep00x0 ARM ARMV7 (OMAP3xx SoC) ######################################################################### # OMAP4 Systems: # diff --git a/Makefile b/Makefile index 12ab858..7f836e2 100644 --- a/Makefile +++ b/Makefile @@ -225,8 +225,8 @@ overo_config : unconfig omap3530beagle_config : unconfig @$(MKCONFIG) $(@:_config=) arm omap3 omap3530beagle -igep0020_config : unconfig - @$(MKCONFIG) $(@:_config=) arm omap3 igep0020 +igep00x0_config : unconfig + @$(MKCONFIG) $(@:_config=) arm omap3 igep00x0 ######################################################################### ## OMAP4 (ARM-CortexA9) Systems diff --git a/board/igep0020/Makefile b/board/igep00x0/Makefile similarity index 98% rename from board/igep0020/Makefile rename to board/igep00x0/Makefile index c9a4dad..5382288 100644 --- a/board/igep0020/Makefile +++ b/board/igep00x0/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).a -COBJS := igep0020.o +COBJS := igep00x0.o SOBJS := platform.o SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) diff --git a/board/igep0020/config.mk b/board/igep00x0/config.mk similarity index 100% rename from board/igep0020/config.mk rename to board/igep00x0/config.mk diff --git a/board/igep0020/igep0020.c b/board/igep00x0/igep00x0.c similarity index 100% rename from board/igep0020/igep0020.c rename to board/igep00x0/igep00x0.c diff --git a/board/igep0020/platform.S b/board/igep00x0/platform.S similarity index 100% rename from board/igep0020/platform.S rename to board/igep00x0/platform.S diff --git a/board/igep0020/x-load.lds b/board/igep00x0/x-load.lds similarity index 100% rename from board/igep0020/x-load.lds rename to board/igep00x0/x-load.lds diff --git a/include/configs/igep0020.h b/include/configs/igep00x0.h similarity index 100% rename from include/configs/igep0020.h rename to include/configs/igep00x0.h