public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Wolfgang Denk <wd@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH RFC 3/3] Drop support for CONFIG_SKIP_RELOCATE_UBOOT
Date: Fri, 29 Oct 2010 21:44:09 +0200	[thread overview]
Message-ID: <20101029194409.BA37C152451@gemini.denx.de> (raw)
In-Reply-To: <1288293126-24949-4-git-send-email-wd@denx.de>

In message <1288293126-24949-4-git-send-email-wd@denx.de> you wrote:
> For ARM systems, before ELF relocation was introduced,
> CONFIG_SKIP_RELOCATE_UBOOT coul be used to prevent *COPYING* the
> U-Boot image from whereever it was loaded to it's link address
> (CONFIG_SYS_TEXT_BASE).  The name was badly chosen, as no relocation
> was performed at all, it was just a memcpy().
> 
> With ELF relocation, this does not work like that any more, and
> related boards need to be fixed anyway.  So don't keep this relict any
> longer.
> 
> Signed-off-by: Wolfgang Denk <wd@denx.de>
> ---
>  Makefile                               |    1 -
>  README                                 |   18 ++++++++----------
>  arch/arm/cpu/arm1136/start.S           |    4 ----
>  arch/arm/cpu/arm1176/start.S           |    4 ----
>  arch/arm/cpu/arm720t/start.S           |    2 --
>  arch/arm/cpu/arm920t/start.S           |    2 --
>  arch/arm/cpu/arm925t/start.S           |    2 --
>  arch/arm/cpu/arm926ejs/start.S         |    4 ----
>  arch/arm/cpu/arm946es/start.S          |    2 --
>  arch/arm/cpu/arm_intcm/start.S         |    2 --
>  arch/arm/cpu/armv7/start.S             |    4 ----
>  arch/arm/cpu/ixp/start.S               |    2 --
>  arch/arm/cpu/lh7a40x/start.S           |    2 --
>  arch/arm/cpu/pxa/start.S               |    4 ----
>  arch/arm/cpu/s3c44b0/start.S           |    2 --
>  arch/arm/cpu/sa1100/start.S            |    2 --
>  include/configs/SMN42.h                |    1 -
>  include/configs/afeb9260.h             |    1 -
>  include/configs/at91cap9adk.h          |    1 -
>  include/configs/at91rm9200dk.h         |    2 --
>  include/configs/at91sam9260ek.h        |    1 -
>  include/configs/at91sam9261ek.h        |    1 -
>  include/configs/at91sam9263ek.h        |    1 -
>  include/configs/at91sam9m10g45ek.h     |    1 -
>  include/configs/at91sam9rlek.h         |    1 -
>  include/configs/cmc_pu2.h              |    2 --
>  include/configs/colibri_pxa270.h       |    1 -
>  include/configs/cpuat91.h              |    1 -
>  include/configs/csb637.h               |    2 --
>  include/configs/da830evm.h             |    1 -
>  include/configs/davinci_dm355evm.h     |    1 -
>  include/configs/davinci_dm355leopard.h |    1 -
>  include/configs/davinci_dm365evm.h     |    1 -
>  include/configs/davinci_dm6467evm.h    |    1 -
>  include/configs/davinci_dvevm.h        |    3 ---
>  include/configs/davinci_schmoogie.h    |    1 -
>  include/configs/davinci_sffsdr.h       |    1 -
>  include/configs/davinci_sonata.h       |    3 ---
>  include/configs/dnp1110.h              |    1 -
>  include/configs/gcplus.h               |    1 -
>  include/configs/kb9202.h               |    2 --
>  include/configs/lpc2292sodimm.h        |    1 -
>  include/configs/meesc.h                |    1 -
>  include/configs/mp2usb.h               |    2 --
>  include/configs/mx31pdk.h              |    1 -
>  include/configs/mx51evk.h              |    1 -
>  include/configs/netstar.h              |    3 ---
>  include/configs/otc570.h               |    1 -
>  include/configs/pm9261.h               |    1 -
>  include/configs/pm9263.h               |    1 -
>  include/configs/pm9g45.h               |    1 -
>  include/configs/pxa255_idp.h           |    1 -
>  include/configs/s5p_goni.h             |    2 --
>  include/configs/sbc35_a9g20.h          |    1 -
>  include/configs/shannon.h              |    1 -
>  include/configs/smdk6400.h             |    2 --
>  include/configs/smdkc100.h             |    2 --
>  include/configs/tny_a9260.h            |    1 -
>  include/configs/vision2.h              |    2 --
>  include/configs/zipitz2.h              |    1 -
>  include/configs/zylonite.h             |    1 -
>  61 files changed, 8 insertions(+), 109 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
It became apparent that one reason why the Ice Giants were  known  as
the  Ice  Giants  was  because they were, well, giants. The other was
that they were made of ice.              -Terry Pratchett, _Sourcery_

  reply	other threads:[~2010-10-29 19:44 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-28 19:12 [U-Boot] [PATCH RFC 0/3] ARM Relocation Config Cleanup Wolfgang Denk
2010-10-28 19:12 ` [U-Boot] [PATCH RFC 1/3] Replace CONFIG_RELOC_FIXUP_WORKS by CONFIG_BROKEN_RELOC_FIXUP Wolfgang Denk
2010-10-29 19:43   ` Wolfgang Denk
2010-10-28 19:12 ` [U-Boot] [PATCH RFC 2/3] Drop support for CONFIG_SYS_ARM_WITHOUT_RELOC Wolfgang Denk
2010-10-29 19:43   ` Wolfgang Denk
2010-10-28 19:12 ` [U-Boot] [PATCH RFC 3/3] Drop support for CONFIG_SKIP_RELOCATE_UBOOT Wolfgang Denk
2010-10-29 19:44   ` Wolfgang Denk [this message]
2010-10-28 20:52 ` [U-Boot] [PATCH RFC 0/3] ARM Relocation Config Cleanup Reinhard Meyer
2010-10-28 21:22   ` Wolfgang Denk
2010-10-29  5:49   ` Heiko Schocher
2010-10-29  8:07   ` Wolfgang Denk
2010-10-29  8:37     ` Reinhard Meyer
2010-10-29 10:13       ` Wolfgang Denk
2010-10-29 11:22         ` Albert ARIBAUD
2010-10-29 11:30           ` Albert ARIBAUD
2010-10-29 11:44           ` Wolfgang Denk
2010-10-29  5:42 ` Heiko Schocher
2010-10-29 10:50 ` Reinhard Meyer

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=20101029194409.BA37C152451@gemini.denx.de \
    --to=wd@denx.de \
    --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