14 Feb, 2018

1 commit


11 Feb, 2018

1 commit

  • On the NIOS2 and Xtensa architectures, we do not have
    CONFIG_SYS_TEXT_BASE set. This is a strict migration of the current
    values into the defconfig and removing them from the headers.

    I did not attempt to add more default values in and for now will leave
    that to maintainers.

    Signed-off-by: Tom Rini

    Tom Rini
     

06 Feb, 2018

1 commit

  • cmd/Makefile has:

    ifdef CONFIG_FPGA
    obj-$(CONFIG_CMD_FPGA) += fpga.o
    endif

    which means that if CONFIG_FPGA is not set, CONFIG_CMD_FPGA silently
    does nothing. Let's remove that Makefile conditional and instead express
    this equivalent dependency in Kconfig, so a lot of redundant

    # CONFIG_CMD_FPGA is not set

    can be removed from board defconfigs that don't actually have an FPGA.

    Signed-off-by: Tuomas Tynkkynen

    Tuomas Tynkkynen
     

19 Dec, 2017

1 commit


13 Dec, 2017

1 commit


16 Nov, 2017

1 commit


11 Oct, 2017

1 commit

  • Having this as a 'default y' is rather annoying because it doesn't
    actually compile unless other options are defined in the board header:

    ../cmd/bootm.c: In function 'do_imls_nor':
    ../cmd/bootm.c:330:7: error: 'CONFIG_SYS_MAX_FLASH_BANKS' undeclared (first use in this function); did you mean 'CONFIG_SYS_MAX_FLASH_SECT'?
    i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {

    Make it 'default n' so people who develop new boards that start from a
    blank defconfig have one less compilation failure to debug.

    Signed-off-by: Tuomas Tynkkynen

    Tuomas Tynkkynen
     

08 Sep, 2017

2 commits


28 Aug, 2017

1 commit


15 Aug, 2017

1 commit


12 Aug, 2017

1 commit


09 Aug, 2017

1 commit


26 Jul, 2017

1 commit


12 Jul, 2017

1 commit

  • Currently, Marvell Armada8k development board use 3 different
    defconfigs:
    mvebu_db-88f7040-nand_defconfig
    mvebu_db-88f7040_defconfig
    mvebu_db-88f8040_defconfig
    Having 3 different defconfigs makes maintenance difficult.

    This patch removes the defconfigs mentioned above and introduce
    a new defconfig which represents the Armada8k family.

    NOTE:
    In order not to break automatic tools compilation,
    a default device-tree is set in the defconfig (armada-8040-db).
    However, when compiling u-boot, the user MUST explicitly export
    the DEVICE_TREE for the requested board because using A80x0
    device-tree on A70x0 might break the device.

    For more information, refer to "doc/README.marvell" (intoduced
    in this patch).

    Change-Id: I98515b6306498358f3722ecf7ac4c87f236ebbd8
    Signed-off-by: Igal Liberman
    Signed-off-by: Stefan Roese

    Igal Liberman