01 Nov, 2013

1 commit


24 Jul, 2013

1 commit


16 Oct, 2011

1 commit

  • The top level Makefile does not do any recursion into subdirs when
    cleaning, so these clean/distclean targets in random arch/board dirs
    never get used. Punt them all.

    MAKEALL didn't report any errors related to this that I could see.

    Signed-off-by: Mike Frysinger

    Mike Frysinger
     

13 Sep, 2011

1 commit

  • Result of running the following command to address Wolfgang's
    comment about camel case:

    for file in `find . | grep '\.[chS]$'`; do perl -i -pe
    's/(green|yellow|red|blue)_LED_(on|off)/$1_led_$2/g' $file; done

    Discussion:
    http://patchwork.ozlabs.org/patch/84988/

    Signed-off-by: Jason Kridner
    Signed-off-by: Joel A Fernandes
    Signed-off-by: Sandeep Paulraj

    Jason Kridner
     

17 Jul, 2011

1 commit


04 Jul, 2011

1 commit


22 Jun, 2011

1 commit

  • * convert at91rm9200ek and eb_cpux9k2 board to ATMEL_xxx name scheme
    * Fix: timer.c compile error io.h not found with arm/at91rm9200
    * update arm920t/at91 to ATMEL_xxx name scheme
    * update arm920t/at91 soc lib
    * update at91_emac driver

    Signed-off-by: Jens Scharsig
    Tested-by: Andreas Bießmann

    Jens Scharsig
     

08 Dec, 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

  • This patch removes some functionality from at91rm9200ek board but the
    remaining functionality does now work with newer at91 code and
    arm-relocation.

    Currently missing features are:
    - dataflash booting (due to missing HW for testing)
    - MMC/SD-Card
    - first stage bootloader support is completely removed (not needed for
    NOR)

    Cause this board was (some days ago) reference for all at91rm9200 based
    boards this should be a good starting point to convert all remaining
    at91rm9200 borads to at91 code. Aside from that this is a good base to
    get some drivers between at91sam/at91rm/avr32 merged.

    Signed-off-by: Andreas Bießmann
    Signed-off-by: Reinhard Meyer

    Andreas Bießmann
     
  • 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
     

01 Feb, 2010

1 commit

  • * add's at91_emac (AT91RM9200) network driver (NET_MULTI api)
    * enable driver with CONFIG_DRIVER_AT91EMAC
    * generic PHY initialization
    * modify AT91RM9200 boards to use NET_MULTI driver
    * the drivers has been tested with LXT971 Phy and DM9161 Phy at
    MII and RMII interface

    Signed-off-by: Jens Scharsig
    Signed-off-by: Ben Warren

    Jens Scharsig
     

13 Jun, 2009

1 commit


16 May, 2009

1 commit


05 Apr, 2009

2 commits