All of lore.kernel.org
 help / color / mirror / Atom feed
From: Graeme Russ <graeme.russ@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [RFC][PATCH 12/36] sc520 - Sort Makefile
Date: Tue,  4 Jan 2011 06:46:32 +1100	[thread overview]
Message-ID: <1294084016-2674-13-git-send-email-graeme.russ@gmail.com> (raw)
In-Reply-To: <1294084016-2674-1-git-send-email-graeme.russ@gmail.com>

---
 arch/i386/cpu/sc520/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/i386/cpu/sc520/Makefile b/arch/i386/cpu/sc520/Makefile
index fb47c20..b962b02 100644
--- a/arch/i386/cpu/sc520/Makefile
+++ b/arch/i386/cpu/sc520/Makefile
@@ -32,9 +32,9 @@ include $(TOPDIR)/config.mk
 LIB	:= $(obj)lib$(SOC).o

 COBJS-$(CONFIG_SYS_SC520) += sc520.o
+COBJS-$(CONFIG_PCI) += sc520_pci.o
 COBJS-$(CONFIG_SYS_SC520_SSI) += sc520_ssi.o
 COBJS-$(CONFIG_SYS_SC520_TIMER) += sc520_timer.o
-COBJS-$(CONFIG_PCI) += sc520_pci.o

 SOBJS-$(CONFIG_SYS_SC520) += sc520_asm.o

--
1.7.1.422.g049e9

  parent reply	other threads:[~2011-01-03 19:46 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-03 19:46 [U-Boot] [PATCH 00/36] Massive x86 Update - Bring x86 in line with ARM and PPC Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 01/36] x86 - Fix definition of global_data struct for asm-offsets.c Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 02/36] x86 - Fix mangled umlauts Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 03/36] x86 - Move config.mk options to arch/i386/config.mk Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 04/36] x86 - move linker script into arch folder Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 05/36] x86 - Paramatize link locations Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 06/36] x86 - Add stack dump to register dump Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 07/36] x86 - Parametize location of Real Mode code Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 08/36] x86 - Move Global Descriptor Table defines to processor.h Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 09/36] x86 - Add processor flags header from linux Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 10/36] x86 - Call early_board_init when warm booting Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 11/36] x86 - Make cpu init functions weak Graeme Russ
2011-01-03 19:46 ` Graeme Russ [this message]
2011-01-25 20:23   ` [U-Boot] [RFC][PATCH 12/36] sc520 - Sort Makefile Wolfgang Denk
2011-01-26 22:28     ` Graeme Russ
2011-01-27 10:46       ` Wolfgang Denk
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 13/36] sc520 - Define MMCR address in include file Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 14/36] sc520 - Move board specific settings to board init function Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 15/36] sc520 - Remove printf calls from cpu_init_f Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 16/36] eNET - Remove --no-warn when compiling dlmalloc.c Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 17/36] eNET - Fix eNET Interrupt Setup for Linux Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 18/36] eNET - Add RTC support to eNET Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 19/36] eNET - Update board configurations Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 20/36] eNET - Define MMCR values in config.h Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 21/36] eNET - Define PAR settings in board configuration file Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 22/36] eNET - Rearrange PAR assignments Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 23/36] sc520 - Init SDRAM PAR early Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 24/36] x86 - Move initial gd to fixed location Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 25/36] x86 - Use Cache-As-RAM for initial stack Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 26/36] sc520 - Move RAM sizing code from asm to C Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 27/36] x86 - Defer setup of final stack Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 28/36] x86 - Move call to dram_init_f into board_init_f Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 29/36] x86 - Move test for cold boot into init functions Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 30/36] x86 - Move console initialisation into board_init_f Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 31/36] x86 - Fix incorrect usage of relocation offset Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 32/36] x86 - Split board_init_f() into init_fnc_t compatible functions Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 33/36] x86 - Rearrange function calls in board_init_f Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 34/36] x86 - Convert board_init_f to use an init_sequence Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 35/36] sc520 - Release CAR and enable caching Graeme Russ
2011-01-03 19:46 ` [U-Boot] [RFC][PATCH 36/36] eNET - Move initial Global Data into CAR Graeme Russ
2011-01-25 20:31 ` [U-Boot] [PATCH 00/36] Massive x86 Update - Bring x86 in line with ARM and PPC Wolfgang Denk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1294084016-2674-13-git-send-email-graeme.russ@gmail.com \
    --to=graeme.russ@gmail.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.