buildroot/board/synopsys/hsdk
Evgeniy Didin 9c6ab08cc9 board/synopsys/hsdk: remove duplicate console
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-------------------------------------

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@synopsys.com
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-09-10 22:55:55 +02:00
..
genimage.cfg Synopsys: Cleanup files related to Synopsys 2018-04-03 22:49:18 +02:00
linux.fragment board: add support for ARC HS Development Kit (HSDK) 2018-03-31 16:04:39 +02:00
readme.txt Synopsys: Cleanup files related to Synopsys 2018-04-03 22:49:18 +02:00
uboot.env.txt board/synopsys/hsdk: remove duplicate console 2018-09-10 22:55:55 +02:00

Synopsys, Inc.
ARC HS Development Kit (HSDK)

https://embarc.org/platforms.html

How to build it
===============

Select the default configuration for the target:
$ make snps_archs38_hsdk_defconfig

Optional: modify the configuration:
$ make menuconfig

Build:
$ make

Result of the build
===================
output/images/
├── boot.vfat
├── rootfs.ext2
├── sdcard.img
├── u-boot
├── u-boot.bin
├── uboot-env.bin
└── uImage

To copy the image file to the sdcard use dd:
$ dd if=output/images/sdcard.img of=/dev/XXX

2018, Evgeniy Didin <Evgeniy.Didin@synopsys.com>