In preparation for migrating to PBL for RISC-V platforms, move the only existing board support to a new arch/riscv/boards/ directory. Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- arch/riscv/Makefile | 2 +- arch/riscv/boards/Makefile | 2 ++ arch/riscv/boards/erizo/Makefile | 5 +++++ arch/riscv/{boot/dtb.c => boards/erizo/board.c} | 0 arch/riscv/{boot/main_entry.c => boards/erizo/lowlevel.c} | 0 arch/riscv/{boot => boards/erizo}/start.S | 0 arch/riscv/boot/Makefile | 3 --- 7 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 arch/riscv/boards/Makefile create mode 100644 arch/riscv/boards/erizo/Makefile rename arch/riscv/{boot/dtb.c => boards/erizo/board.c} (100%) rename arch/riscv/{boot/main_entry.c => boards/erizo/lowlevel.c} (100%) rename arch/riscv/{boot => boards/erizo}/start.S (100%) delete mode 100644 arch/riscv/boot/Makefile diff --git a/arch/riscv/Makefile b/arch/riscv/Makefile index edf3a971e615..d9cefe32c057 100644 --- a/arch/riscv/Makefile +++ b/arch/riscv/Makefile @@ -41,7 +41,7 @@ MACH := endif common-y += $(MACH) -common-y += arch/riscv/boot/ +common-y += arch/riscv/boards/ common-y += arch/riscv/lib/ common-$(CONFIG_OFTREE) += arch/riscv/dts/ diff --git a/arch/riscv/boards/Makefile b/arch/riscv/boards/Makefile new file mode 100644 index 000000000000..2ce9af41e03b --- /dev/null +++ b/arch/riscv/boards/Makefile @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: GPL-2.0 +obj-$(CONFIG_BOARD_ERIZO_GENERIC) += erizo/ diff --git a/arch/riscv/boards/erizo/Makefile b/arch/riscv/boards/erizo/Makefile new file mode 100644 index 000000000000..72b9a13ba73f --- /dev/null +++ b/arch/riscv/boards/erizo/Makefile @@ -0,0 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0 + +obj-y += lowlevel.o +obj-y += start.o +obj-y += board.o diff --git a/arch/riscv/boot/dtb.c b/arch/riscv/boards/erizo/board.c similarity index 100% rename from arch/riscv/boot/dtb.c rename to arch/riscv/boards/erizo/board.c diff --git a/arch/riscv/boot/main_entry.c b/arch/riscv/boards/erizo/lowlevel.c similarity index 100% rename from arch/riscv/boot/main_entry.c rename to arch/riscv/boards/erizo/lowlevel.c diff --git a/arch/riscv/boot/start.S b/arch/riscv/boards/erizo/start.S similarity index 100% rename from arch/riscv/boot/start.S rename to arch/riscv/boards/erizo/start.S diff --git a/arch/riscv/boot/Makefile b/arch/riscv/boot/Makefile deleted file mode 100644 index fd62cab8c127..000000000000 --- a/arch/riscv/boot/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -obj-y += start.o -obj-y += main_entry.o -obj-$(CONFIG_OFDEVICE) += dtb.o -- 2.29.2 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox