23 May, 2017
1 commit
-
This converts the following to Kconfig:
CONFIG_CMD_JFFS2Signed-off-by: Simon Glass
22 May, 2017
1 commit
-
This converts the following to Kconfig:
CONFIG_SPL_BOARD_INITSigned-off-by: Ley Foon Tan
[trini: Update the Kconfig logic]
Signed-off-by: Tom Rini
13 Feb, 2017
2 commits
-
Xilinx fixes for v2017.03
- defconfig alignment
- Topic.nl board updates
- Minor microblaze comment fix -
We repeated partial moves for CONFIG_SYS_NO_FLASH, but this is
not completed. Finish this work by the tool.During this move, let's rename it to CONFIG_MTD_NOR_FLASH.
Actually, we have more instances of "#ifndef CONFIG_SYS_NO_FLASH"
than those of "#ifdef CONFIG_SYS_NO_FLASH". Flipping the logic will
make the code more readable. Besides, negative meaning symbols do
not fit in obj-$(CONFIG_...) style Makefiles.This commit was created as follows:
[1] Edit "default n" to "default y" in the config entry in
common/Kconfig.[2] Run "tools/moveconfig.py -y -r HEAD SYS_NO_FLASH"
[3] Rename the instances in defconfigs by the following:
find . -path './configs/*_defconfig' | xargs sed -i \
-e '/CONFIG_SYS_NO_FLASH=y/d' \
-e 's/# CONFIG_SYS_NO_FLASH is not set/CONFIG_MTD_NOR_FLASH=y/'[4] Change the conditionals by the following:
find . -name '*.[ch]' | xargs sed -i \
-e 's/ifndef CONFIG_SYS_NO_FLASH/ifdef CONFIG_MTD_NOR_FLASH/' \
-e 's/ifdef CONFIG_SYS_NO_FLASH/ifndef CONFIG_MTD_NOR_FLASH/' \
-e 's/!defined(CONFIG_SYS_NO_FLASH)/defined(CONFIG_MTD_NOR_FLASH)/' \
-e 's/defined(CONFIG_SYS_NO_FLASH)/!defined(CONFIG_MTD_NOR_FLASH)/'[5] Modify the following manually
- Rename the rest of instances
- Remove the description from README
- Create the new Kconfig entry in drivers/mtd/Kconfig
- Remove the old Kconfig entry from common/Kconfig
- Remove the garbage comments from include/configs/*.hSigned-off-by: Masahiro Yamada
10 Feb, 2017
1 commit
-
Keep all defconfig sorted to ensure the smallest diff.
Signed-off-by: Michal Simek
24 Jan, 2017
1 commit
-
This option should not really be user selectable. Note that on PowerPC
we currently only need BOARD_LATE_INIT when CHAIN_OF_TRUST is enabled so be
conditional on that.Signed-off-by: Tom Rini
Acked-by: Masahiro Yamada (for UniPhier)
22 Jan, 2017
1 commit
-
Cc: Tom Rini
Signed-off-by: Jagan Teki
24 Oct, 2016
1 commit
-
This converts the following to Kconfig:
CONFIG_SYS_CONSOLE_IS_IN_ENV
CONFIG_CONSOLE_MUXSigned-off-by: Simon Glass
[trini: Re-order, re-migrate]
Signed-off-by: Tom Rini
15 Oct, 2016
2 commits
-
Move SYS_OS_BASE to Kconfig and cleanup existing
uses.Signed-off-by: Heiko Schocher
[trini: Also migrate a4m2k]
Signed-off-by: Tom Rini -
Move SPL_OS_BOOT to Kconfig and cleanup existing
uses.Signed-off-by: Heiko Schocher
27 Sep, 2016
1 commit
-
move the UBI config options into Kconfig.
Signed-off-by: Heiko Schocher
Reviewed-by: Simon Glass
Reviewed-by: Andrew F. Davis
Reviewed by: Evgeni Dobrev
17 Sep, 2016
5 commits
-
Move this option to Kconfig and tidy up existing uses.
Signed-off-by: Simon Glass
-
Move this option to Kconfig and tidy up existing uses.
Signed-off-by: Simon Glass
-
Move this option to Kconfig and tidy up existing uses.
Signed-off-by: Simon Glass
-
Move this option to Kconfig and tidy up existing uses.
Signed-off-by: Simon Glass
-
Move the SPL settings into common/spl where most of the SPL code is kept.
Signed-off-by: Simon Glass
02 Aug, 2016
1 commit
-
Update Microblaze, Zynq and ZynqMP defconfigs to reflect
latest Kconfig changes.Signed-off-by: Michal Simek
17 Jun, 2016
1 commit
-
With updated moveconfig.py and an better default, re-generate
the migration of BOOTDELAY to the defconfig.Reviewed-by: Hans de Goede
Signed-off-by: Tom Rini
06 Jun, 2016
2 commits
-
Select MSR instructions via Kconfig instead of xparameters.h.
Signed-off-by: Michal Simek
-
Remove autogenerated config.mk and select CPU options via Kconfig.
Signed-off-by: Michal Simek
26 Apr, 2016
1 commit
-
Update the config.h and defconfig files for the commands that 8e3c036
converted over to KconfigSigned-off-by: Tom Rini
27 Jan, 2016
11 commits
-
Cleanup board file.
Signed-off-by: Michal Simek
-
Cleanup board file.
Signed-off-by: Michal Simek
-
And enable it via defconfig by default.
Signed-off-by: Michal Simek
-
Cleanup board specific file.
Signed-off-by: Michal Simek
-
Enable driver by default for all platforms.
Signed-off-by: Michal Simek
-
Add PHYLIB and MII dependencies and enable it by default for Microblaze.
Signed-off-by: Michal Simek
Acked-by: Joe Hershberger -
Move driver to DM.
Signed-off-by: Michal Simek
Acked-by: Joe Hershberger -
Cleanup board configuration.
Signed-off-by: Michal Simek
-
Microblaze is uses uartlite or uart16550 as console drivers.
Signed-off-by: Michal Simek
-
- Move config option out of board file.
- Remove uartlite address from config fileSigned-off-by: Michal Simek
Reviewed-by: Thomas Chou -
Enable SPL DM too.
Signed-off-by: Michal Simek
Reviewed-by: Thomas Chou
20 Jan, 2016
1 commit
-
This is how CONFIG options are defined by Kconfig.
Signed-off-by: Masahiro Yamada
Acked-by: Michal Simek
18 Dec, 2015
3 commits
-
Enable DM for the whole architecture.
Signed-off-by: Michal Simek
-
Signed-off-by: Michal Simek
-
Clean board specific file.
Signed-off-by: Michal Simek
Reviewed-by: Simon Glass
19 Nov, 2015
1 commit
-
Add CMD_GPIO to Kconfig and run tools/moveconfig.py .
Signed-off-by: Thomas Chou
Reviewed-by: Simon Glass
28 Sep, 2015
1 commit
-
Some boards' defconfigs are disordered. Reorder them.
Signed-off-by: Bin Meng
19 Aug, 2015
1 commit
-
As we discussed a couple of times, negative CONFIG options make our
life difficult; CONFIG_SYS_NO_FLASH, CONFIG_SYS_DCACHE_OFF, ...
and here is another one.Now, there are three boards enabling OF_CONTROL on SPL:
- socfpga_arria5_defconfig
- socfpga_cyclone5_defconfig
- socfpga_socrates_defconfigThis commit adds CONFIG_SPL_OF_CONTROL for them and deletes
CONFIG_SPL_DISABLE_OF_CONTROL from the other boards to invert
the logic.Signed-off-by: Masahiro Yamada
Reviewed-by: Tom Rini
Reviewed-by: Simon Glass
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