05 Aug, 2017

1 commit


19 Feb, 2016

1 commit


19 Apr, 2015

1 commit

  • This value is not used by the network stack and is available in the
    global data, so stop passing it around. For the one legacy function
    that still expects it (init op on old Ethernet drivers) pass in the
    global pointer version directly to avoid changing that interface.

    Signed-off-by: Joe Hershberger
    Reported-by: Simon Glass
    Reviewed-by: Simon Glass
    Signed-off-by: Simon Glass
    (Trival fix to remove an unneeded variable declaration in 4xx_enet.c)

    Joe Hershberger
     

21 Feb, 2015

1 commit

  • The board select menu in arch/arm/Kconfig is still big.
    To slim down it, this commit moves AT91 boards to
    arch/arm/mach-at91/Kconfig.
    Also, consolidate "config SYS_SOC" in each board Kconfig.

    The Kconfig files under board/ directory were modified with the
    following command:

    find board -name Kconfig | xargs sed -i -e '
    /config SYS_SOC/ {
    N
    /default "at91"/ {
    N
    d
    }
    }
    '

    Signed-off-by: Masahiro Yamada
    Acked-by: Andreas Bießmann

    Masahiro Yamada
     

29 Oct, 2014

1 commit

  • This commit introduces a Kconfig symbol for each ARM CPU:
    CPU_ARM720T, CPU_ARM920T, CPU_ARM926EJS, CPU_ARM946ES, CPU_ARM1136,
    CPU_ARM1176, CPU_V7, CPU_PXA, CPU_SA1100.
    Also, it adds the CPU feature Kconfig symbol HAS_VBAR which is selected
    for CPU_ARM1176 and CPU_V7.

    For each target, the corresponding CPU is selected and the definition of
    SYS_CPU in the corresponding Kconfig file is removed.

    Also, it removes redundant "string" type in some Kconfig files.

    Signed-off-by: Georges Savoundararadj
    Acked-by: Albert ARIBAUD
    Cc: Masahiro Yamada

    Georges Savoundararadj
     

14 Sep, 2014

1 commit

  • Now the types of CONFIG_SYS_{ARCH, CPU, SOC, VENDOR, BOARD, CONFIG_NAME}
    are specified in arch/Kconfig.

    We can delete the ones in arch and board Kconfig files.

    This commit can be easily reproduced by the following command:

    find . -name Kconfig -a ! -path ./arch/Kconfig | xargs sed -i -e '
    /config[[:space:]]SYS_\(ARCH\|CPU\|SOC\|\VENDOR\|BOARD\|CONFIG_NAME\)/ {
    N
    s/\n[[:space:]]*string//
    }
    '

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

30 Jul, 2014

2 commits

  • We have switched to Kconfig and the boards.cfg file is going to
    be removed. We have to retrieve the board status and maintainers
    information from it.

    The MAINTAINERS format as in Linux Kernel would be nice
    because we can crib the scripts/get_maintainer.pl script.

    After some discussion, we chose to put a MAINTAINERS file under each
    board directory, not the top-level one because we want to collect
    relevant information for a board into a single place.

    TODO:
    Modify get_maintainer.pl to scan multiple MAINTAINERS files.

    Signed-off-by: Masahiro Yamada
    Suggested-by: Tom Rini
    Acked-by: Simon Glass

    Masahiro Yamada
     
  • This commit adds:
    - arch/${ARCH}/Kconfig
    provide a menu to select target boards
    - board/${VENDOR}/${BOARD}/Kconfig or board/${BOARD}/Kconfig
    set CONFIG macros to the appropriate values for each board
    - configs/${TARGET_BOARD}_defconfig
    default setting of each board

    (This commit was automatically generated by a conversion script
    based on boards.cfg)

    In Linux Kernel, defconfig files are located under
    arch/${ARCH}/configs/ directory.
    It works in Linux Kernel since ARCH is always given from the
    command line for cross compile.

    But in U-Boot, ARCH is not given from the command line.
    Which means we cannot know ARCH until the board configuration is done.
    That is why all the "*_defconfig" files should be gathered into a
    single directory ./configs/.

    Signed-off-by: Masahiro Yamada
    Acked-by: Simon Glass

    Masahiro Yamada
     

09 Dec, 2013

1 commit


01 Nov, 2013

1 commit


24 Jul, 2013

1 commit


29 Mar, 2012

1 commit

  • commit 72fa467988e7944407a634ddc4bc6a2df685c04c moved atmel_mci_init() into
    include/atmel_mci.h. Some AT91 boards are also using this interface and need
    to include atmel_mci.h now.

    This patch fixes MAKEALL complaints like this:

    ---88---

    Signed-off-by: Andreas Bießmann
    CC: Albert Aribaud
    CC: Reinhard Meyer
    CC: egnite GmbH

    Andreas Bießmann
     

29 Feb, 2012

1 commit

  • Fix build error for ethernut5 board due to prototype change
    for function board_mmc_getcd().
    ethernut5.c:238: error: conflicting types for 'board_mmc_getcd'
    u-boot/include/mmc.h:318: note: previous declaration of 'board_mmc_getcd'
    was here
    make[2]: *** [ethernut5.o] Error 1

    Signed-off-by: Prabhakar Lad
    Cc: Tim Schendekehl
    Cc: Thierry Reding
    Cc: Albert ARIBAUD
    Cc: egnite GmbH

    prabhakar.csengg@gmail.com
     

07 Dec, 2011

1 commit

  • Add support for the Ethernut 5 open hardware design, based
    on Atmel's AT91SAM9XE512 SoC.

    V4
    - Fix several coding style issues.
    - Move machine type to config file.
    - Remove use of CONFIG_ATMEL_LEGACY.

    Signed-off-by: Tim Schendekehl

    Tim Schendekehl