From mboxrd@z Thu Jan 1 00:00:00 1970 From: Graeme Russ Date: Thu, 07 Oct 2010 20:27:59 +1100 Subject: [U-Boot] Pull request: u-boot-x86 Message-ID: <4CAD929F.9040805@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Wolfgang, please pull from u-boot-x86. The following changes since commit d6288664743cdd4824cb877ca424619c827c1256: Merge branch 'master' of git://git.denx.de/u-boot-blackfin (2010-10-05 14:42:32 +0200) are available in the git repository at: git://git.denx.de/u-boot-x86 master Graeme Russ (20): x86: Remove bi_env from do_bdinfo x86: Make CONFIG_RELOC_FIXUP_WORKS generic for all x86 boards x86: Use TEXT_BASE in linker scripts x86: zboot update x86: use gc sections to reduce image size x86: Move loading of GTD to C code x86: Coding Style Cleanup x86: Change compiler options x86: Fix %ss and %esp in register structure for interrupts x86: Remove progress indication in low-level init x86: Move ECC initialisation outside RAM initialisation x86: Remove usage of %ebp as a return pointer x86: Don't clobber %ebx x86: Dont clobber %eax after getting memory size x86: Place global data below stack before entering C x86: Set cold/warm boot flag x86: Rename linker script symbols x86: Rearrange linker script x86: Use loops instead of memcpy/memset in board_init_f x86: Implement fully relocatable image arch/i386/config.mk | 11 + arch/i386/cpu/cpu.c | 57 +++ arch/i386/cpu/interrupts.c | 28 +- arch/i386/cpu/sc520/sc520.c | 54 ++-- arch/i386/cpu/sc520/sc520_asm.S | 668 +++++++++++++++++------------------ arch/i386/cpu/start.S | 225 +++--------- arch/i386/cpu/start16.S | 18 +- arch/i386/include/asm/config.h | 2 + arch/i386/include/asm/global_data.h | 27 ++- arch/i386/include/asm/interrupt.h | 4 +- arch/i386/include/asm/ptrace.h | 24 ++ arch/i386/lib/bios_setup.c | 14 +- arch/i386/lib/board.c | 119 +++---- arch/i386/lib/realmode.c | 14 +- arch/i386/lib/zimage.c | 18 +- board/eNET/eNET_start.S | 14 +- board/eNET/eNET_start16.S | 3 +- board/eNET/u-boot.lds | 67 ++-- common/cmd_bdinfo.c | 1 - include/configs/eNET.h | 2 - 20 files changed, 668 insertions(+), 702 deletions(-)