diff options
author | Tom Rini <trini@konsulko.com> | 2017-10-04 16:44:30 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-10-05 08:25:18 -0400 |
commit | 6a3e65dea3e525b5337ca8014aa4be9f5fafeb92 (patch) | |
tree | 96ce34a60316fb5b611620c690ec1e1ce9fca4f8 | |
parent | ceb9190969e458dcd1427566f762dbb9cfdfdc94 (diff) |
common: Drop LOGLEVEL to 4
While this came in with a default value of 6 I am lowering this to 4.
The MTD/UBI code has a large number of error messages that we include
now. In addition, "normally" warning messages are not included so this
feels like a more natural level to have.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | common/Kconfig | 2 | ||||
-rw-r--r-- | configs/axm_defconfig | 1 | ||||
-rw-r--r-- | configs/corvus_defconfig | 1 | ||||
-rw-r--r-- | configs/omapl138_lcdk_defconfig | 1 | ||||
-rw-r--r-- | configs/taurus_defconfig | 1 |
5 files changed, 1 insertions, 5 deletions
diff --git a/common/Kconfig b/common/Kconfig index f53ee9d6d7..3c99650f0c 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -243,7 +243,7 @@ config IDENT_STRING config LOGLEVEL int "loglevel" - default 6 + default 4 range 0 8 help All Messages with a loglevel smaller than the console loglevel will diff --git a/configs/axm_defconfig b/configs/axm_defconfig index cd89c2a235..81654b2304 100644 --- a/configs/axm_defconfig +++ b/configs/axm_defconfig @@ -41,4 +41,3 @@ CONFIG_SPI_FLASH=y CONFIG_SPI_FLASH_STMICRO=y CONFIG_PHYLIB=y CONFIG_USE_TINY_PRINTF=y -CONFIG_LOGLEVEL=4 diff --git a/configs/corvus_defconfig b/configs/corvus_defconfig index 059cb5992e..705e001457 100644 --- a/configs/corvus_defconfig +++ b/configs/corvus_defconfig @@ -14,7 +14,6 @@ CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9M10G45,MACH_TYPE=2066,SYS_USE_NANDFLASH" CONFIG_BOOTDELAY=3 CONFIG_USE_BOOTARGS=y CONFIG_BOOTARGS="console=ttyS0,115200 earlyprintk mtdparts=atmel_nand:256k(bootstrap)ro,512k(uboot)ro,256k(env),256k(env_redundant),256k(spare),512k(dtb),6M(kernel)ro,-(rootfs) root=/dev/mtdblock7 rw rootfstype=jffs2" -CONFIG_LOGLEVEL=4 # CONFIG_DISPLAY_BOARDINFO is not set CONFIG_BOARD_EARLY_INIT_F=y CONFIG_SPL=y diff --git a/configs/omapl138_lcdk_defconfig b/configs/omapl138_lcdk_defconfig index 3e9eb4fa84..c95134bcf9 100644 --- a/configs/omapl138_lcdk_defconfig +++ b/configs/omapl138_lcdk_defconfig @@ -8,7 +8,6 @@ CONFIG_SPL_MMC_SUPPORT=y CONFIG_SPL_SERIAL_SUPPORT=y CONFIG_SPL_NAND_SUPPORT=y CONFIG_BOOTDELAY=3 -CONFIG_LOGLEVEL=4 CONFIG_VERSION_VARIABLE=y # CONFIG_DISPLAY_CPUINFO is not set # CONFIG_DISPLAY_BOARDINFO is not set diff --git a/configs/taurus_defconfig b/configs/taurus_defconfig index 5b7fc8ae14..71a382a3e1 100644 --- a/configs/taurus_defconfig +++ b/configs/taurus_defconfig @@ -16,7 +16,6 @@ CONFIG_SPL_SPI_SUPPORT=y CONFIG_DEFAULT_DEVICE_TREE="at91sam9g20-taurus" CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9G20,MACH_TYPE=2067,BOARD_TAURUS" CONFIG_BOOTDELAY=3 -CONFIG_LOGLEVEL=4 CONFIG_USE_BOOTARGS=y CONFIG_BOOTARGS="console=ttyS0,115200 earlyprintk mtdparts=atmel_nand:256k(bootstrap)ro,512k(uboot)ro,256k(env),256k(env_redundant),256k(spare),512k(dtb),6M(kernel)ro,-(rootfs) root=/dev/mtdblock7 rw rootfstype=jffs2" # CONFIG_DISPLAY_BOARDINFO is not set |