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
     

08 Feb, 2018

1 commit


23 Jan, 2018

1 commit

  • fat.h unconditionally defines CONFIG_SUPPORT_VFAT (and has done since
    2003), so as a result VFAT support is always enabled regardless of
    whether a board config defines it or not. Drop this unnecessary option.

    Signed-off-by: Tuomas Tynkkynen

    Tuomas Tynkkynen
     

07 Nov, 2017

1 commit

  • The motivation for moving MX25 selection to Kconfig is to be
    able to better handle MX25 specific errata, so that an errata option
    can be selected at SoC level instead of board level.

    This selection method also aligns with the way other i.MX SoCs are
    selected in U-Boot.

    Signed-off-by: Fabio Estevam
    Acked-by: Sebastien Bourdelin
    Reviewed-by: Benoît Thébaudeau

    Fabio Estevam
     

04 Sep, 2017

3 commits


26 Jul, 2017

1 commit


25 Jul, 2017

1 commit


16 May, 2017

1 commit


15 May, 2017

1 commit


20 Mar, 2017

1 commit


29 Jan, 2017

1 commit


28 Jan, 2017

1 commit


22 Jan, 2017

1 commit


15 Jan, 2017

1 commit

  • Before we can sync with the latest mach-types.h file from the Linux
    Kernel we need to remove some instances of MACH_TYPE_xxx from our
    sources. As these values have been removed from the canonical upstream
    source we should not be using them either, so drop.

    Cc: Tom Warren
    Cc: Lucas Stach
    Cc: Luka Perkov
    Cc: Stephen Warren
    Cc: Heiko Schocher
    Cc: Thomas Weber
    Cc: Lucile Quirion
    Cc: Matthias Weisser
    Cc: Suriyan Ramasami
    Cc: Nobuhiro Iwamatsu
    Cc: Bo Shen
    Cc: Nick Thompson
    Cc: Stefano Babic
    Cc: Erik van Luijk
    Cc: Lokesh Vutla
    Signed-off-by: Tom Rini

    Tom Rini
     

10 Sep, 2016

1 commit


10 Jun, 2016

1 commit


26 Apr, 2016

4 commits


25 Oct, 2015

1 commit

  • We have finished Generic Board conversion for ARM and PowerPC, i.e.
    all the boards have been converted except OpenRISC, SuperH, SPARC,
    which have not supported Generic Board framework yet.

    Select SYS_GENERIC_BOARD in arch/Kconfig and delete all the macro
    defines in include/configs/*.h.

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

21 Oct, 2015

1 commit


13 Aug, 2015

1 commit

  • Add option to set shell prompt string from menuconfig and migrate
    boards globally.

    The migration is done as follows:
    - Boards that explicitly and unconditionally set CONFIG_SYS_PROMPT had the
    entry moved to their defconfig files.
    - Boards that defined some kind of #ifdef logic which selects the
    CONFIG_SYS_PROMPT (for example qemu-mips) got an #undef CONFIG_SYS_PROMPT
    right before the #ifdef logic and were left alone.
    - This change forces CONFIG_SYS_PROMPT to be a per board decision, and thus
    CONFIG_SYS_PROMPT was removed from all _common.h and _common.h
    files. This results in a streamlined default value across platforms, and
    includes the following files: spear-common, sunxi-common, mv-common,
    ti_armv7_common, tegra-common, at91-sama5_common, and zynq-common.
    - Boards that relied on _common.h values of CONFIG_SYS_PROMPT were
    not updated in their respective defconfig files under the assumption that
    since they did not explicitly define a value, they're fine with whatever
    the default is.
    - On the other hand, boards that relied on a value defined in some
    _common.h file such as woodburn_common, rpi-common,
    bur_am335x_common, ls2085a_common, siemens_am33x_common, and
    omap3_evm_common, had their values moved to the respective defconfig files.
    - The define V_PROMPT was removed, since it is not used anywhere except for
    assigning a value for CONFIG_SYS_PROMPT.

    Cc: Tom Rini
    Cc: Masahiro Yamada
    Cc: Stefano Babic
    Cc: Igor Grinberg
    Signed-off-by: Nikita Kiryanov
    [trini: Add spring, sniper, smartweb to conversion]
    Signed-off-by: Tom Rini

    Nikita Kiryanov
     

26 Jun, 2015

1 commit


09 Jun, 2015

1 commit

  • This patch moves the following config options to Kconfig:

    CONFIG_AUTOBOOT_KEYED
    CONFIG_AUTOBOOT_PROMPT
    CONFIG_AUTOBOOT_DELAY_STR
    CONFIG_AUTOBOOT_STOP_STR
    AUTOBOOT_KEYED_CTRLC

    Signed-off-by: Stefan Roese
    Reviewed-by: Simon Glass
    [trini: Drop ip04 and pm9263 configs/ additions, those boards previously
    set CONFIG_AUTOBOOT_PROMPT but never used it, re-run savedefconfig over
    all boards that did change. Make digsy_mtc_* string include seconds to
    match others and not warn. ]
    Signed-off-by: Tom Rini
    Cc: Masahiro Yamada

    Stefan Roese
     

01 Jun, 2015

1 commit


25 Feb, 2015

1 commit


21 Nov, 2014

1 commit

  • CONFIG_CPU_ARM926EJS was introduced into Kconfig by commit 2e07c249a67e
    (kconfig: arm: introduce symbol for ARM CPUs).

    This commit removes all the defines of CONFIG_ARM926EJS and replaces
    the only reference in arch/arm/lib/cache.c with CONFIG_CPU_ARM926EJS.

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

05 Nov, 2013

2 commits


24 Jul, 2013

1 commit


16 Nov, 2012

1 commit


06 Sep, 2012

1 commit


01 Sep, 2012

1 commit


21 Jun, 2012

2 commits


15 May, 2012

1 commit