2015-04-15 18:54:26 +08:00
|
|
|
CONFIG_ARM=y
|
2017-03-18 21:01:44 +08:00
|
|
|
CONFIG_SYS_THUMB_BUILD=y
|
2017-03-14 09:41:36 +08:00
|
|
|
CONFIG_ARCH_VF610=y
|
2018-02-04 01:10:38 +08:00
|
|
|
CONFIG_SYS_TEXT_BASE=0x3f401000
|
2017-06-19 21:47:40 +08:00
|
|
|
CONFIG_TARGET_COLIBRI_VF=y
|
2016-01-27 13:01:50 +08:00
|
|
|
CONFIG_DEFAULT_DEVICE_TREE="vf610-colibri"
|
2017-07-24 11:19:39 +08:00
|
|
|
CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=board/toradex/colibri_vf/imximage.cfg,IMX_NAND"
|
2016-06-13 21:45:14 +08:00
|
|
|
CONFIG_BOOTDELAY=1
|
printk: collect printk stuff into <linux/printk.h> with loglevel support
When we import code from Linux, with regular re-sync planned, we want
to use printk() and pr_*(). U-Boot does not support them in a clean
way. So, people end up with local macros, or compat headers here and
there, then we occasionally see build errors of definition conflicts.
We have include/linux/compat.h, but putting all sorts of unrelated
things into a single header is just a temporal workaround. Hence this
patch, to find the best home for all printk variants. If you want to
use printk() and friends, please include <linux/printk.h>. This header
is self-contained, and pulls in only a few headers.
When I was testing this clean-up, I noticed the image size exceeded
its platform limit on some boards. This is because all pr_*() that
were previously defined as no-op in include/linux/mtd/mtd.h (unless
CONFIG_MTD_DEBUG is set), are now enabled.
To make such boards happy, this commit also implements CONFIG_LOGLEVEL.
The concept is similar to the kernel parameter "loglevel". (Actually,
the Kconfig help message was taken from kernel-paremeter.txt of Linux)
Messages with a loglevel smaller than console loglevel will be printed.
The difference is the loglevel is build-time determined. To save the
image size, lower priority pr_*() are compiled out. I set the default
of CONFIG_LOGLEVEL to 6, i.e. pr_notice and higher priority messages
are compiled in.
I adjusted CONFIG_LOGLEVEL to avoid build error for some boards.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
[trini: Add in SPL_LOGLEVEL that is the same as LOGLEVEL]
Signed-off-by: Tom Rini <trini@konsulko.com>
2017-09-16 13:10:40 +08:00
|
|
|
CONFIG_LOGLEVEL=3
|
2016-09-09 14:12:49 +08:00
|
|
|
CONFIG_VERSION_VARIABLE=y
|
2016-11-17 00:49:23 +08:00
|
|
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
2017-01-24 04:31:21 +08:00
|
|
|
CONFIG_ARCH_MISC_INIT=y
|
2017-01-24 04:31:20 +08:00
|
|
|
CONFIG_BOARD_EARLY_INIT_F=y
|
2016-04-22 09:37:19 +08:00
|
|
|
CONFIG_HUSH_PARSER=y
|
2015-09-28 20:14:15 +08:00
|
|
|
CONFIG_SYS_PROMPT="Colibri VFxx # "
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_BOOTZ=y
|
|
|
|
CONFIG_CMD_ASKENV=y
|
2016-04-23 04:41:25 +08:00
|
|
|
CONFIG_CMD_MEMTEST=y
|
2017-08-15 07:58:53 +08:00
|
|
|
CONFIG_CMD_DFU=y
|
|
|
|
CONFIG_CMD_FUSE=y
|
|
|
|
CONFIG_CMD_GPIO=y
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_MMC=y
|
2016-01-27 13:01:50 +08:00
|
|
|
CONFIG_CMD_SPI=y
|
2016-04-23 04:41:25 +08:00
|
|
|
CONFIG_CMD_USB=y
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_USB_MASS_STORAGE=y
|
2015-06-23 05:15:30 +08:00
|
|
|
# CONFIG_CMD_SETEXPR is not set
|
2016-04-23 04:41:25 +08:00
|
|
|
CONFIG_CMD_DHCP=y
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_MII=y
|
2016-04-23 04:41:25 +08:00
|
|
|
CONFIG_CMD_PING=y
|
2017-04-27 12:27:55 +08:00
|
|
|
CONFIG_CMD_BMP=y
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_EXT4=y
|
|
|
|
CONFIG_CMD_FAT=y
|
|
|
|
CONFIG_CMD_FS_GENERIC=y
|
2017-10-23 05:55:07 +08:00
|
|
|
CONFIG_MTDIDS_DEFAULT="nand0=vf610_nfc"
|
|
|
|
CONFIG_MTDPARTS_DEFAULT="mtdparts=vf610_nfc:128k(vf-bcb)ro,1408k(u-boot)ro,512k(u-boot-env),-(ubi)"
|
2016-09-21 13:58:19 +08:00
|
|
|
CONFIG_CMD_UBI=y
|
2016-01-27 13:01:50 +08:00
|
|
|
CONFIG_OF_CONTROL=y
|
2017-08-28 19:16:32 +08:00
|
|
|
CONFIG_ENV_IS_IN_NAND=y
|
2015-06-23 05:15:29 +08:00
|
|
|
CONFIG_DM=y
|
2016-09-20 01:31:30 +08:00
|
|
|
CONFIG_DFU_MMC=y
|
|
|
|
CONFIG_DFU_NAND=y
|
2016-09-09 04:11:59 +08:00
|
|
|
CONFIG_DM_GPIO=y
|
2016-01-27 13:01:50 +08:00
|
|
|
CONFIG_VYBRID_GPIO=y
|
2015-05-09 01:07:11 +08:00
|
|
|
CONFIG_NAND_VF610_NFC=y
|
|
|
|
CONFIG_SYS_NAND_VF610_NFC_60_ECC_BYTES=y
|
2016-09-21 13:58:19 +08:00
|
|
|
CONFIG_MTD_UBI_FASTMAP=y
|
2017-08-02 08:19:59 +08:00
|
|
|
CONFIG_PHYLIB=y
|
2017-08-02 08:20:00 +08:00
|
|
|
CONFIG_PHY_MICREL=y
|
2016-09-09 04:11:59 +08:00
|
|
|
CONFIG_DM_SERIAL=y
|
2016-01-14 11:39:00 +08:00
|
|
|
CONFIG_FSL_LPUART=y
|
2016-09-09 04:11:59 +08:00
|
|
|
CONFIG_DM_SPI=y
|
2016-01-27 13:01:50 +08:00
|
|
|
CONFIG_FSL_DSPI=y
|
2016-03-25 22:39:47 +08:00
|
|
|
CONFIG_USB=y
|
2016-08-10 02:15:02 +08:00
|
|
|
CONFIG_DM_USB=y
|
2017-05-13 10:33:28 +08:00
|
|
|
CONFIG_USB_EHCI_HCD=y
|
2016-10-18 10:12:37 +08:00
|
|
|
CONFIG_USB_STORAGE=y
|
2016-03-25 22:39:47 +08:00
|
|
|
CONFIG_USB_GADGET=y
|
2017-09-07 14:58:08 +08:00
|
|
|
CONFIG_USB_GADGET_MANUFACTURER="Toradex"
|
|
|
|
CONFIG_USB_GADGET_VENDOR_NUM=0x1b67
|
|
|
|
CONFIG_USB_GADGET_PRODUCT_NUM=0x4000
|
2016-04-13 19:20:25 +08:00
|
|
|
CONFIG_CI_UDC=y
|
2016-04-13 19:20:26 +08:00
|
|
|
CONFIG_USB_GADGET_DOWNLOAD=y
|
2017-04-11 13:42:14 +08:00
|
|
|
CONFIG_VIDEO_FSL_DCU_FB=y
|
2017-10-31 00:58:33 +08:00
|
|
|
CONFIG_VIDEO=y
|
2017-04-11 13:42:14 +08:00
|
|
|
CONFIG_SYS_CONSOLE_FG_COL=0x00
|
2017-05-01 23:41:11 +08:00
|
|
|
CONFIG_OF_LIBFDT_OVERLAY=y
|