From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Christophe PLAGNIOL-VILLARD Date: Mon, 28 Jan 2008 23:38:13 +0100 Subject: [U-Boot-Users] [PATCH 1/6] [new uImage] Rename architecture specific bootm code files In-Reply-To: <20080123144350.25280.15397.stgit@zion.izotz.org> References: <20080123144325.25280.18839.stgit@zion.izotz.org> <20080123144350.25280.15397.stgit@zion.izotz.org> Message-ID: <20080128223813.GC8079@game.jcrosoft.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 15:44 Wed 23 Jan , Marian Balakowicz wrote: > Implementation of the do_bootm_linux() and other bootm helper routines is > architecture specific code. As such it resides in lib_ directories > in files named _linux.c > > This patch renames those files to a more clear and accurate > lib_/bootm.c form. > > Signed-off-by: Marian Balakowicz > --- > lib_arm/Makefile | 2 +- > lib_arm/{armlinux.c => bootm.c} | 0 > lib_avr32/Makefile | 2 +- > lib_avr32/{avr32_linux.c => bootm.c} | 0 > lib_blackfin/Makefile | 2 +- > lib_blackfin/{bf533_linux.c => bootm.c} | 0 > lib_i386/Makefile | 2 +- > lib_i386/{i386_linux.c => bootm.c} | 0 > lib_m68k/Makefile | 2 +- > lib_m68k/{m68k_linux.c => bootm.c} | 0 > lib_microblaze/Makefile | 2 +- > lib_microblaze/{microblaze_linux.c => bootm.c} | 0 > lib_mips/Makefile | 2 +- > lib_mips/{mips_linux.c => bootm.c} | 0 > lib_nios/Makefile | 2 +- > lib_nios/{nios_linux.c => bootm.c} | 0 > lib_nios2/Makefile | 2 +- > lib_nios2/{nios_linux.c => bootm.c} | 0 > lib_ppc/Makefile | 2 +- > lib_ppc/{ppc_linux.c => bootm.c} | 0 > lib_sh/Makefile | 2 +- > lib_sh/{sh_linux.c => bootm.c} | 0 > 22 files changed, 11 insertions(+), 11 deletions(-) > > diff --git a/lib_arm/Makefile b/lib_arm/Makefile > index 037c475..aa9bee7 100644 > --- a/lib_arm/Makefile > +++ b/lib_arm/Makefile > @@ -27,7 +27,7 @@ LIB = $(obj)lib$(ARCH).a > > SOBJS = _ashldi3.o _ashrdi3.o _divsi3.o _modsi3.o _udivsi3.o _umodsi3.o > > -COBJS = armlinux.o board.o \ > +COBJS = bootm.o board.o \ On All COBJS please keep it sort. Best Regards, J.