08 Jan, 2019

1 commit


03 Dec, 2018

3 commits


20 Oct, 2018

1 commit


18 Aug, 2018

1 commit


08 Apr, 2018

1 commit


07 Apr, 2018

2 commits

  • Some config is redundant with Kconfig. Fix it.
    Also remove unused configs
    Move SDRAM_MAX_SIZE in the only place it is used

    include/environment.h already defines CONFIG_ENV_SIZE
    from CONFIG_ENV_SECT_SIZE and defines CONFIG_ENV_ADDR as
    (CONFIG_SYS_FLASH_BASE + CONFIG_ENV_OFFSET)

    remove BOOTARGS as bootargs is set by the different boot commands

    Fix CONFIG_SYS_INIT_RAM_ADDR and CONFIG_SYS_INIT_RAM_SIZE to be in
    line with CPM DPRAM organisation

    Remove CONFIG_SYS_GBL_DATA_SIZE, CONFIG_SYS_GBL_DATA_OFFSET and
    CONFIG_SYS_INIT_SP_OFFSET which are unused

    Signed-off-by: Christophe Leroy

    Christophe Leroy
     
  • CONFIG_8xx doesn't mean much outside of arch/powerpc/
    This patch renames it CONFIG_MPC8xx just like CONFIG_MPC85xx etc ...
    It also renames 8xx_immap.h to immap_8xx.h to be consistent with
    other file names.

    Signed-off-by: Christophe Leroy

    Christophe Leroy
     

24 Feb, 2018

1 commit

  • This converts the following to Kconfig:
    CONFIG_BOOTP_BOOTPATH
    CONFIG_BOOTP_DNS
    CONFIG_BOOTP_GATEWAY
    CONFIG_BOOTP_HOSTNAME
    CONFIG_BOOTP_PXE
    CONFIG_BOOTP_SUBNETMASK
    CONFIG_CMDLINE_EDITING
    CONFIG_AUTO_COMPLETE
    CONFIG_SYS_LONGHELP
    CONFIG_SUPPORT_RAW_INITRD
    CONFIG_ENV_VARS_UBOOT_CONFIG

    Signed-off-by: Adam Ford
    [trini: Re-run the migration]
    Signed-off-by: Tom Rini

    Adam Ford
     

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
     

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
     

28 Aug, 2017

1 commit


15 Aug, 2017

2 commits


26 Jul, 2017

2 commits


25 Jul, 2017

1 commit


09 Jul, 2017

1 commit