From 224fe9a758c69314f0e7a27955d1d052b3624390 Mon Sep 17 00:00:00 2001 From: Drew Fustini Date: Mon, 31 May 2021 00:53:42 -0700 Subject: [PATCH 1/2] riscv: dts: rename dts for BeagleV Starlight JH7100 Rename the dts file from jh7100-starlight.dts to the more accurate name of jh7100-beaglev-starlight.dts Signed-off-by: Drew Fustini --- arch/riscv/boot/dts/starfive/Makefile | 2 +- .../{jh7100-starlight.dts => jh7100-beaglev-starlight.dts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename arch/riscv/boot/dts/starfive/{jh7100-starlight.dts => jh7100-beaglev-starlight.dts} (100%) diff --git a/arch/riscv/boot/dts/starfive/Makefile b/arch/riscv/boot/dts/starfive/Makefile index 685e57c1bf5c1d..b0a89a15fc5cd5 100644 --- a/arch/riscv/boot/dts/starfive/Makefile +++ b/arch/riscv/boot/dts/starfive/Makefile @@ -1,2 +1,2 @@ # SPDX-License-Identifier: GPL-2.0 -dtb-$(CONFIG_SOC_STARFIVE_VIC7100) += jh7100-starlight.dtb +dtb-$(CONFIG_SOC_STARFIVE_VIC7100) += jh7100-beaglev-starlight.dtb diff --git a/arch/riscv/boot/dts/starfive/jh7100-starlight.dts b/arch/riscv/boot/dts/starfive/jh7100-beaglev-starlight.dts similarity index 100% rename from arch/riscv/boot/dts/starfive/jh7100-starlight.dts rename to arch/riscv/boot/dts/starfive/jh7100-beaglev-starlight.dts From 0cc2249ca87d6e5e9dc75dd478efb2c76539f129 Mon Sep 17 00:00:00 2001 From: Drew Fustini Date: Mon, 31 May 2021 01:07:15 -0700 Subject: [PATCH 2/2] update instructions for dtb rename Update the build instructions to use jh7100-beaglev-starlight.dtb Signed-off-by: Drew Fustini --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bdf5a81b7fdec1..24f8b86d30bf7a 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ arch/riscv/boot/Image ``` You'll also need the matching device tree at ```shell -arch/riscv/boot/dts/starfive/jh7100-starlight.dtb +arch/riscv/boot/dts/starfive/jh7100-beaglev-starlight.dtb ``` These two files should be copied to the boot partition on the SD card. That is onto the same file system that contains the `extlinux/extlinux.conf`. On the @@ -71,7 +71,7 @@ Now add the following entry to the `extlinux/extlinux.conf` file: ``` label My New Kernel kernel /Image -fdt /jh7100-starlight.dtb +fdt /jh7100-beaglev-starlight.dtb append earlycon console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait stmmac.chain_mode=1 ```