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
     

15 Feb, 2018

1 commit


23 Jan, 2018

1 commit


12 Jan, 2018

1 commit

  • The am335x_hs_evm runs into size constraint problems at times with
    various toolchains as changes come in due to the config have a large
    number of options in SPL (to showcase what is possible) while also
    having rather constrained binary limits. Gain some of this room back by
    lowering the loglevel, disabling HW partition support and switching over
    to the tiny FIT image support.

    Cc: Andrew F. Davis
    Signed-off-by: Tom Rini
    ---
    I'd really appreciate a run-time test of this patch if at all possible
    as I'm a little worried about TINY_FIT being incompatible with all of
    the security options. Thanks!

    Tom Rini
     

19 Dec, 2017

1 commit


28 Nov, 2017

1 commit


06 Nov, 2017

1 commit


21 Oct, 2017

1 commit

  • This converts the following to Kconfig:
    CONFIG_NAND_MXC
    CONFIG_NAND_OMAP_GPMC
    CONFIG_NAND_OMAP_GPMC_PREFETCH
    CONFIG_NAND_OMAP_ELM
    CONFIG_SPL_NAND_AM33XX_BCH
    CONFIG_SPL_NAND_SIMPLE
    CONFIG_SYS_NAND_BUSWIDTH_16BIT

    Signed-off-by: Adam Ford
    Reviewed-by: Heiko Schocher
    [trini: Finish migration of CONFIG_SPL_NAND_SIMPLE, fix some build issues,
    add CONFIG_NAND_MXC so we can do CONFIG_SYS_NAND_BUSWIDTH_16BIT]
    Signed-off-by: Tom Rini

    Adam Ford
     

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
     

04 Oct, 2017

2 commits


30 Sep, 2017

1 commit


02 Sep, 2017

1 commit


14 Aug, 2017

1 commit


12 Aug, 2017

1 commit


09 Aug, 2017

1 commit


08 Aug, 2017

1 commit


01 Aug, 2017

2 commits


31 Jul, 2017

1 commit

  • The main uses of CONFIG_SPL_ENV_SUPPORT are for network support and for
    disabling "Falcon Mode" support at run-time. As this build enables
    neither, remove this feature.

    Cc: Andrew F. Davis
    Signed-off-by: Tom Rini
    Reviewed-by: Lokesh Vutla
    Reviewed-by: Simon Glass

    Tom Rini
     

26 Jul, 2017

1 commit


25 Jul, 2017

1 commit


12 Jul, 2017

1 commit

  • When CONFIG_CMD_FASTBOOT or CONFIG_USB_FUNCTION_FASTBOOT are defined
    in am335x_evm.h, a dependency on g_dnl.c is created. This in turn
    creates a dependency on having USB gadget enabled.
    As a result we can't create configs with USB gadget disabled.

    Since these CONFIG_ variables are now part of kconfig, move them to
    the board defconfigs, and out of am335x_evm.h. This both preserves
    current defaults, and allows creating configs with USB gadget off.

    Signed-off-by: Alexandru Gagniuc
    Reviewed-by: Tom Rini

    Alexandru Gagniuc
     

19 Jun, 2017

1 commit


09 May, 2017

1 commit


28 Apr, 2017

2 commits


09 Apr, 2017

1 commit


14 Mar, 2017

1 commit


29 Jan, 2017

1 commit

  • Add a new defconfig file for the AM335x High Security EVM. This config
    is specific for the case of memory device booting. Memory device booting
    is handled separatly from peripheral booting on HS devices as the load
    address changes.

    This defconfig is the same as for the non-secure part, except for:
    CONFIG_TI_SECURE_DEVICE option set to 'y'
    CONFIG_ISW_ENTRY_ADDR updated for secure images.
    CONFIG_FIT_IMAGE_POST_PROCESS option set to 'y'
    CONFIG_SPL_FIT_IMAGE_POST_PROCESS option set to 'y'
    CONFIG_USE_TINY_PRINTF option set to 'y' to reduce SPL size
    CONFIG_SPL_SYS_MALLOC_SIMPLE set to 'y' to reduce SPL size

    Signed-off-by: Andrew F. Davis
    Reviewed-by: Tom Rini

    Andrew F. Davis