01 Nov, 2013

1 commit


15 Oct, 2013

1 commit


24 Jul, 2013

1 commit


17 Oct, 2012

2 commits


28 Oct, 2011

1 commit

  • pd67290.c: In function 'cirrus_set_opts':
    pd67290.c:282: error: 'buf' undeclared (first use in this function)
    pd67290.c:282: error: (Each undeclared identifier is reported only once
    pd67290.c:282: error: for each function it appears in.)

    Signed-off-by: Marek Vasut
    Cc: Wolfgang Denk
    Cc: Simon Glass
    Cc: Mike Frysinger

    Marek Vasut
     

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
     

28 Nov, 2010

1 commit


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


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
     

21 May, 2008

1 commit

  • This commit gets rid of a huge amount of silly white-space issues.
    Especially, all sequences of SPACEs followed by TAB characters get
    removed (unless they appear in print statements).

    Also remove all embedded "vim:" and "vi:" statements which hide
    indentation problems.

    Signed-off-by: Wolfgang Denk

    Wolfgang Denk
     

10 Jul, 2007

2 commits


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
     

11 Jul, 2006

1 commit

  • Notes:
    - Board-dependend code for RPXLITE and RPXCLASSIC-based boards
    placed to the drivers/rpx_pmcia.c file to avoid duplication.
    Same for TQM8xx-based boards (drivers/tqm8xx_pmcia.c).
    - drivers/i82365.c has been split into two parts located at
    board/atc/ti113x.c and board/cpc45/pd67290.c (ATC and CPC45 are
    the only boards using CONFIG_82365).
    - Changes were tested for clean build and *very* *few* boards.

    Wolfgang Denk
     

12 Dec, 2005

1 commit


31 Aug, 2005

1 commit


31 Dec, 2004

1 commit

  • * Cleanup confusing use of CONFIG_ETH*ADDR - ust his only to
    pre-define a MAC address; use CONFIG_HAS_ETH* to enable support for
    additional ethernet addresses.

    * Cleanup drivers/i82365.c - avoid duplication of code

    * Fix bogus "cannot span across banks" flash error message

    * Add support for CompactFlash for the CPC45 Board.

    wdenk
     

20 Jun, 2004

1 commit

  • - DDR Ram support for PM520 (MPC5200)
    - support for different flash types (PM520)
    - USB / IDE / CF-Card / DiskOnChip support for PM520
    - 8 bit boot rom support for PM520/CE520
    - Add auto SDRAM module detection for MicroSys CPC45 board (MPC8245)
    - I2C and RTC support for CPC45
    - support of new flash type (28F160C3T) for CPC45

    wdenk
     

02 Jun, 2004

1 commit


21 Jan, 2004

1 commit


07 Jan, 2004

1 commit


28 Jun, 2003

1 commit

  • - remove trailing white space, trailing empty lines, C++ comments, etc.
    - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)

    * Patches by Kenneth Johansson, 25 Jun 2003:
    - major rework of command structure
    (work done mostly by Michal Cendrowski and Joakim Kristiansen)

    wdenk
     

26 Jun, 2003

1 commit


30 May, 2003

1 commit


12 Mar, 2003

1 commit

  • - 16/32 MB and 50/80 MHz support with auto-detection for IP860
    - ETH05 and BEDBUG support for CU824
    - added support for MicroSys CPC45
    - new BOOTROM/FLASH0 and DOC base for PM826

    * Patch by Robert Schwebel, 12 Mar 2003:
    Fix the chpart command on innokom board

    * Name cleanup:
    mv include/asm-i386/ppcboot-i386.h include/asm-i386/u-boot-i386.h
    s/PPCBoot/U-Boot/ in some files
    s/pImage/uImage/ in some files

    * Patch by Detlev Zundel, 15 Jan 2003:
    Fix '' command line quoting

    * Patch by The LEOX team, 19 Jan 2003:
    - add support for the ELPT860 board
    - add support for Dallas ds164x RTC

    wdenk