public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marek Vasut <marek.vasut@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/6] Tidy up ARM link scripts
Date: Sun, 20 Nov 2011 05:56:30 +0100	[thread overview]
Message-ID: <201111200556.31005.marek.vasut@gmail.com> (raw)
In-Reply-To: <CAPnjgZ3ULen3Yi=GNrPBMhwME-rSNPBUavzrnbhBY_nktpZASg@mail.gmail.com>

> Hi Marek,
> 
> On Sat, Nov 19, 2011 at 8:04 PM, Marek Vasut <marek.vasut@gmail.com> wrote:
> >> The ARM link scripts are very similar but each CPU has its own. This
> >> series adds support for a default link script across an architecture
> >> in arch/<arch>/cpu/u-boot.lds.
> >> 
> >> It is then possible to remove most of the ARM link scripts. This will
> >> make it easier to maintain these.
> > 
> > Please CC Albert Aribaud <albert.u.boot@aribaud.net> with such series.
> 
> Yes, I did intend to, but a typo got me. I have a new version with a
> few tidy-ups so will cc Albert with that one.
> 
> Regards
> Simon

Thanks!!

M
> 
> >> Simon Glass (6):
> >>   Allow arch directory to contain .lds without requiring Makefile
> >>   arm: Remove jornada link script
> >>   arm: Remove unneeded setting of LDCSRIPT
> >>   Define CPUDIR for the .lds link script
> >>   arm: add a common .lds link script
> >>   arm: Use common .lds file where possible
> >> 
> >>  Makefile                            |   13 ++++-
> >>  arch/arm/config.mk                  |    7 ---
> >>  arch/arm/cpu/arm1136/u-boot.lds     |   89
> >> ----------------------------------- arch/arm/cpu/arm1176/u-boot.lds    
> >> | 78 ------------------------------ arch/arm/cpu/arm720t/u-boot.lds    
> >> | 79 ------------------------------- arch/arm/cpu/arm920t/u-boot.lds  
> >>   | 88 ----------------------------------
> >> arch/arm/cpu/arm925t/u-boot.lds
> >> 
> >> |   83 --------------------------------
> >> | arch/arm/cpu/arm926ejs/u-boot.lds
> >> 
> >>  |   80 ------------------------------- arch/arm/cpu/arm946es/u-boot.lds
> >>  |   80 -------------------------------
> >> arch/arm/cpu/arm_intcm/u-boot.lds |   80
> >> ------------------------------- arch/arm/cpu/lh7a40x/u-boot.lds |   80
> >> ------------------------------- arch/arm/cpu/pxa/u-boot.lds |   80
> >> ------------------------------- arch/arm/cpu/s3c44b0/u-boot.lds |   80
> >> ------------------------------- arch/arm/cpu/sa1100/u-boot.lds |   83
> >> -------------------------------- arch/arm/cpu/{armv7 => }/u-boot.lds |
> >>    5 +-
> >>  board/jornada/u-boot.lds            |   58 -----------------------
> >>  16 files changed, 13 insertions(+), 1050 deletions(-)
> >>  delete mode 100644 arch/arm/cpu/arm1136/u-boot.lds
> >>  delete mode 100644 arch/arm/cpu/arm1176/u-boot.lds
> >>  delete mode 100644 arch/arm/cpu/arm720t/u-boot.lds
> >>  delete mode 100644 arch/arm/cpu/arm920t/u-boot.lds
> >>  delete mode 100644 arch/arm/cpu/arm925t/u-boot.lds
> >>  delete mode 100644 arch/arm/cpu/arm926ejs/u-boot.lds
> >>  delete mode 100644 arch/arm/cpu/arm946es/u-boot.lds
> >>  delete mode 100644 arch/arm/cpu/arm_intcm/u-boot.lds
> >>  delete mode 100644 arch/arm/cpu/lh7a40x/u-boot.lds
> >>  delete mode 100644 arch/arm/cpu/pxa/u-boot.lds
> >>  delete mode 100644 arch/arm/cpu/s3c44b0/u-boot.lds
> >>  delete mode 100644 arch/arm/cpu/sa1100/u-boot.lds
> >>  rename arch/arm/cpu/{armv7 => }/u-boot.lds (94%)
> >>  delete mode 100644 board/jornada/u-boot.lds

      reply	other threads:[~2011-11-20  4:56 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-11 21:47 [U-Boot] [PATCH 0/6] Tidy up ARM link scripts Simon Glass
2011-11-11 21:47 ` [U-Boot] [PATCH 1/6] Allow arch directory to contain .lds without requiring Makefile Simon Glass
2011-11-20  4:07   ` Marek Vasut
2011-11-20  4:54     ` Simon Glass
2011-11-20  5:23     ` Mike Frysinger
2011-11-11 21:47 ` [U-Boot] [PATCH 2/6] arm: Remove jornada link script Simon Glass
2011-11-17 18:10   ` Marek Vasut
2011-11-19 10:41     ` Kristoffer Ericson
2011-11-19 19:27       ` Marek Vasut
2011-11-19 20:43         ` Simon Glass
2011-11-11 21:47 ` [U-Boot] [PATCH 3/6] arm: Remove unneeded setting of LDCSRIPT Simon Glass
2011-11-11 21:47 ` [U-Boot] [PATCH 4/6] Define CPUDIR for the .lds link script Simon Glass
2011-11-12  3:59   ` Simon Glass
2011-11-11 21:47 ` [U-Boot] [PATCH 5/6] arm: add a common " Simon Glass
2011-11-11 21:47 ` [U-Boot] [PATCH 6/6] arm: Use common .lds file where possible Simon Glass
2011-11-20  4:04 ` [U-Boot] [PATCH 0/6] Tidy up ARM link scripts Marek Vasut
2011-11-20  4:49   ` Simon Glass
2011-11-20  4:56     ` Marek Vasut [this message]

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=201111200556.31005.marek.vasut@gmail.com \
    --to=marek.vasut@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox