01 Nov, 2013

1 commit


15 Oct, 2013

1 commit


24 Jul, 2013

2 commits


23 Jul, 2013

1 commit


09 Dec, 2010

1 commit

  • Recent cleanup actions resulted in a number of config.mk files that
    contained only redundant entries like

    PLATFORM_CPPFLAGS += -I$(TOPDIR)

    or settings of variables that were not used anywhere in the code, like

    TEXT_END = 0xfe080000

    Remove these unnecessary files.

    Signed-off-by: Wolfgang Denk
    Cc: Scott McNutt
    Cc: Wolfgang Wegner
    Cc: Josef Wagner
    Cc: Tolunay Orkun
    Cc: Frank Panno
    Cc: Heiko Schocher
    Cc: Brad Kemp
    Acked-by: Heiko Schocher

    Wolfgang Denk
     

18 Nov, 2010

1 commit

  • Before this commit, weak symbols were not overridden by non-weak symbols
    found in archive libraries when linking with recent versions of
    binutils. As stated in the System V ABI, "the link editor does not
    extract archive members to resolve undefined weak symbols".

    This commit changes all Makefiles to use partial linking (ld -r) instead
    of creating library archives, which forces all symbols to participate in
    linking, allowing non-weak symbols to override weak symbols as intended.
    This approach is also used by Linux, from which the gmake function
    cmd_link_o_target (defined in config.mk and used in all Makefiles) is
    inspired.

    The name of each former library archive is preserved except for
    extensions which change from ".a" to ".o". This commit updates
    references accordingly where needed, in particular in some linker
    scripts.

    This commit reveals board configurations that exclude some features but
    include source files that depend these disabled features in the build,
    resulting in undefined symbols. Known such cases include:
    - disabling CMD_NET but not CMD_NFS;
    - enabling CONFIG_OF_LIBFDT but not CONFIG_QE.

    Signed-off-by: Sebastien Carlier

    Sebastien Carlier
     

19 Oct, 2010

2 commits

  • Clean up Makefile, and drop a lot of the config.mk files on the way.

    We now also automatically pick all boards that are listed in
    boards.cfg (and with all configurations), so we can drop the redundant
    entries from MAKEALL to avoid building these twice.

    Signed-off-by: Wolfgang Denk

    Wolfgang Denk
     
  • The change is currently needed to be able to remove the board
    configuration scripting from the top level Makefile and replace it by
    a simple, table driven script.

    Moving this configuration setting into the "CONFIG_*" name space is
    also desirable because it is needed if we ever should move forward to
    a Kconfig driven configuration system.

    Signed-off-by: Wolfgang Denk

    Wolfgang Denk
     

19 Oct, 2008

1 commit


11 Sep, 2008

3 commits


09 Sep, 2008

1 commit


03 Sep, 2008

1 commit


12 Jun, 2008

1 commit

  • This patch changes the return type of initdram() from long int to phys_size_t.
    This is required for a couple of reasons: long int limits the amount of dram
    to 2GB, and u-boot in general is moving over to phys_size_t to represent the
    size of physical memory. phys_size_t is defined as an unsigned long on almost
    all current platforms.

    This patch *only* changes the return type of the initdram function (in
    include/common.h, as well as in each board's implementation of initdram). It
    does not actually modify the code inside the function on any of the platforms;
    platforms which wish to support more than 2GB of DRAM will need to modify
    their initdram() function code.

    Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
    MPC8641HPCN.

    Signed-off-by: Becky Bruce

    Becky Bruce
     

10 Jul, 2007

1 commit


04 Jul, 2007

2 commits


09 Oct, 2006

1 commit


02 Sep, 2006

1 commit

  • Modifications are based on the linux kernel approach and
    support two use cases:

    1) Add O= to the make command line
    'make O=/tmp/build all'

    2) Set environement variable BUILD_DIR to point to the desired location
    'export BUILD_DIR=/tmp/build'
    'make'

    The second approach can also be used with a MAKEALL script
    'export BUILD_DIR=/tmp/build'
    './MAKEALL'

    Command line 'O=' setting overrides BUILD_DIR environent variable.

    When none of the above methods is used the local build is performed and
    the object files are placed in the source directory.

    Marian Balakowicz
     

12 Dec, 2005

1 commit


31 Aug, 2005

1 commit


24 Mar, 2004

1 commit

  • attempting to switch on USB on SX1 board.

    * Patch by Josef Wagner, 18 Mar 2004:
    - Add support for MicroSys XM250 board (PXA255)
    - Add support for MicroSys PM828 board (MPC8280)
    - Add support for 32 MB Flash on PM825/826
    - new SDRAM refresh rate for PM825/PM826
    - added support for MicroSys PM520 (MPC5200)
    - replaced Query by Identify command in CPU86/flash.c
    to support 28F160F3B

    * Fix wrap around problem with udelay() on ARM920T

    * Add support for Macronix flash on TRAB board

    wdenk