All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2] synopsys/hsdk: Linux Boot log cleanup
@ 2018-08-21 13:32 Evgeniy Didin
  2018-09-10 20:56 ` Thomas Petazzoni
  0 siblings, 1 reply; 2+ messages in thread
From: Evgeniy Didin @ 2018-08-21 13:32 UTC (permalink / raw)
  To: buildroot

This patch removes duplicate messages in Linux log on HSDK board.
For HSDK board we setup bootargs via device tree,
see https://elixir.bootlin.com/linux/latest/source/arch/arc/boot/dts/hsdk.dts#L25
"console=ttyS3" was mistakenly placed in u-boot bootargs which are
appended to Kernel bootargs in case of using buildin .dtb.

Before patch log is like:
------------------------8<-------------------------------------
mmc_host mmc0: Bus speed (slot 0) = 50000000Hz (slot req 25000000Hz,...
mmc_host mmc0: Bus speed (slot 0) = 50000000Hz (slot req 25000000Hz,...
mmc0: new SDHC card at address 59b4
mmc0: new SDHC card@address 59b4
blk_queue_max_segment_size: set to minimum 8192
blk_queue_max_segment_size: set to minimum 8192
------------------------>8-------------------------------------

After patch log is like:
------------------------8<-------------------------------------
mmc_host mmc0: Bus speed (slot 0) = 50000000Hz (slot req 25000000Hz,...
mmc0: new SDHC card at address 59b4
blk_queue_max_segment_size: set to minimum 8192
------------------------8<-------------------------------------


Signed-off-by: Evgeniy Didin <didin@synopsys.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: arc-buildroot at synopsys.com
---
Changes since v1:
-Commit message includes more correct info
 board/synopsys/hsdk/uboot.env.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/synopsys/hsdk/uboot.env.txt b/board/synopsys/hsdk/uboot.env.txt
index 6bcfb56a77..216f0c9043 100644
--- a/board/synopsys/hsdk/uboot.env.txt
+++ b/board/synopsys/hsdk/uboot.env.txt
@@ -1,5 +1,5 @@
 baudrate=115200
-bootargs=console=ttyS3,115200n8 root=/dev/mmcblk0p2 rootwait
+bootargs=root=/dev/mmcblk0p2 rootwait
 bootcmd=fatload mmc 0:1; bootm
 bootdelay=2
 bootfile=uImage
-- 
2.16.2

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH v2] synopsys/hsdk: Linux Boot log cleanup
  2018-08-21 13:32 [Buildroot] [PATCH v2] synopsys/hsdk: Linux Boot log cleanup Evgeniy Didin
@ 2018-09-10 20:56 ` Thomas Petazzoni
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2018-09-10 20:56 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue, 21 Aug 2018 16:32:44 +0300, Evgeniy Didin wrote:
> This patch removes duplicate messages in Linux log on HSDK board.
> For HSDK board we setup bootargs via device tree,
> see https://elixir.bootlin.com/linux/latest/source/arch/arc/boot/dts/hsdk.dts#L25
> "console=ttyS3" was mistakenly placed in u-boot bootargs which are
> appended to Kernel bootargs in case of using buildin .dtb.
> 
> Before patch log is like:
> ------------------------8<-------------------------------------
> mmc_host mmc0: Bus speed (slot 0) = 50000000Hz (slot req 25000000Hz,...
> mmc_host mmc0: Bus speed (slot 0) = 50000000Hz (slot req 25000000Hz,...
> mmc0: new SDHC card at address 59b4
> mmc0: new SDHC card at address 59b4
> blk_queue_max_segment_size: set to minimum 8192
> blk_queue_max_segment_size: set to minimum 8192
> ------------------------>8-------------------------------------  

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-09-10 20:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-21 13:32 [Buildroot] [PATCH v2] synopsys/hsdk: Linux Boot log cleanup Evgeniy Didin
2018-09-10 20:56 ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.