mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 13:56:20 +00:00
ARM: renesas: Rename arch-/mach-rmobile to arch-/mach-renesas
Rename arch-rmobile to arch-renesas and mach-rmobile to mach-renesas because all the chips are made by Renesas, while only a subset of them is from the R-Mobile line. Use the following command to perform the rename, with manual move of the directories using git mv and manual fix up to arch/arm/Makefile: " $ git grep -l '\<\(arch\|mach\)-rmobile\>' | \ xargs -I {} sed -i 's@\<\(arch\|mach\)-rmobile\>@\1-renesas@g' {} $ sed -i 's@rmobile@renesas@' board/*/*/Kconfig " Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Paul Barker <paul.barker.ct@bp.renesas.com>
This commit is contained in:
parent
f9aabd4579
commit
40b9d53c74
55 changed files with 37 additions and 37 deletions
|
@ -497,7 +497,7 @@ M: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
|
||||||
M: Marek Vasut <marek.vasut+renesas@mailbox.org>
|
M: Marek Vasut <marek.vasut+renesas@mailbox.org>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
T: git https://source.denx.de/u-boot/custodians/u-boot-sh.git
|
T: git https://source.denx.de/u-boot/custodians/u-boot-sh.git
|
||||||
F: arch/arm/mach-rmobile/
|
F: arch/arm/mach-renesas/
|
||||||
F: drivers/clk/renesas/
|
F: drivers/clk/renesas/
|
||||||
F: drivers/gpio/gpio-rcar.c
|
F: drivers/gpio/gpio-rcar.c
|
||||||
F: drivers/i2c/rcar_*
|
F: drivers/i2c/rcar_*
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1266,7 +1266,7 @@ spl/u-boot-spl.srec: spl/u-boot-spl FORCE
|
||||||
$(call if_changed,objcopy)
|
$(call if_changed,objcopy)
|
||||||
|
|
||||||
%.scif: %.srec
|
%.scif: %.srec
|
||||||
$(Q)$(MAKE) $(build)=arch/arm/mach-rmobile $@
|
$(Q)$(MAKE) $(build)=arch/arm/mach-renesas $@
|
||||||
|
|
||||||
OBJCOPYFLAGS_u-boot-nodtb.bin := -O binary \
|
OBJCOPYFLAGS_u-boot-nodtb.bin := -O binary \
|
||||||
$(if $(CONFIG_X86_16BIT_INIT),-R .start16 -R .resetvec) \
|
$(if $(CONFIG_X86_16BIT_INIT),-R .start16 -R .resetvec) \
|
||||||
|
|
|
@ -2269,7 +2269,7 @@ source "arch/arm/mach-orion5x/Kconfig"
|
||||||
|
|
||||||
source "arch/arm/mach-owl/Kconfig"
|
source "arch/arm/mach-owl/Kconfig"
|
||||||
|
|
||||||
source "arch/arm/mach-rmobile/Kconfig"
|
source "arch/arm/mach-renesas/Kconfig"
|
||||||
|
|
||||||
source "arch/arm/mach-meson/Kconfig"
|
source "arch/arm/mach-meson/Kconfig"
|
||||||
|
|
||||||
|
|
|
@ -75,7 +75,7 @@ machine-$(CONFIG_ARCH_NPCM) += npcm
|
||||||
machine-$(CONFIG_ARCH_OMAP2PLUS) += omap2
|
machine-$(CONFIG_ARCH_OMAP2PLUS) += omap2
|
||||||
machine-$(CONFIG_ARCH_ORION5X) += orion5x
|
machine-$(CONFIG_ARCH_ORION5X) += orion5x
|
||||||
machine-$(CONFIG_ARCH_OWL) += owl
|
machine-$(CONFIG_ARCH_OWL) += owl
|
||||||
machine-$(CONFIG_ARCH_RENESAS) += rmobile
|
machine-$(CONFIG_ARCH_RENESAS) += renesas
|
||||||
machine-$(CONFIG_ARCH_ROCKCHIP) += rockchip
|
machine-$(CONFIG_ARCH_ROCKCHIP) += rockchip
|
||||||
machine-$(CONFIG_ARCH_S5PC1XX) += s5pc1xx
|
machine-$(CONFIG_ARCH_S5PC1XX) += s5pc1xx
|
||||||
machine-$(CONFIG_ARCH_SNAPDRAGON) += snapdragon
|
machine-$(CONFIG_ARCH_SNAPDRAGON) += snapdragon
|
||||||
|
|
|
@ -88,12 +88,12 @@ config RZG2L
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile" if ARCH_RENESAS
|
default "renesas" if ARCH_RENESAS
|
||||||
|
|
||||||
source "arch/arm/mach-rmobile/Kconfig.32"
|
source "arch/arm/mach-renesas/Kconfig.32"
|
||||||
source "arch/arm/mach-rmobile/Kconfig.64"
|
source "arch/arm/mach-renesas/Kconfig.64"
|
||||||
source "arch/arm/mach-rmobile/Kconfig.rza1"
|
source "arch/arm/mach-renesas/Kconfig.rza1"
|
||||||
source "arch/arm/mach-rmobile/Kconfig.rzn1"
|
source "arch/arm/mach-renesas/Kconfig.rzn1"
|
||||||
source "arch/arm/mach-rmobile/Kconfig.rzg2l"
|
source "arch/arm/mach-renesas/Kconfig.rzg2l"
|
||||||
|
|
||||||
endif
|
endif
|
|
@ -6,7 +6,7 @@ config SYS_MALLOC_F_LEN
|
||||||
config OF_LIBFDT_OVERLAY
|
config OF_LIBFDT_OVERLAY
|
||||||
default y if RCAR_64
|
default y if RCAR_64
|
||||||
|
|
||||||
source "arch/arm/mach-rmobile/Kconfig.rcar3"
|
source "arch/arm/mach-renesas/Kconfig.rcar3"
|
||||||
source "arch/arm/mach-rmobile/Kconfig.rcar4"
|
source "arch/arm/mach-renesas/Kconfig.rcar4"
|
||||||
|
|
||||||
endif
|
endif
|
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
/*
|
/*
|
||||||
* arch/arm/include/asm/arch-rmobile/r8a7790.h
|
* arch/arm/include/asm/arch-renesas/r8a7790.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013,2014 Renesas Electronics Corporation
|
* Copyright (C) 2013,2014 Renesas Electronics Corporation
|
||||||
*/
|
*/
|
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
/*
|
/*
|
||||||
* arch/arm/include/asm/arch-rmobile/r8a7791.h
|
* arch/arm/include/asm/arch-renesas/r8a7791.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013,2014 Renesas Electronics Corporation
|
* Copyright (C) 2013,2014 Renesas Electronics Corporation
|
||||||
*/
|
*/
|
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
/*
|
/*
|
||||||
* arch/arm/include/asm/arch-rmobile/r8a7792.h
|
* arch/arm/include/asm/arch-renesas/r8a7792.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2016 Renesas Electronics Corporation
|
* Copyright (C) 2016 Renesas Electronics Corporation
|
||||||
*/
|
*/
|
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
/*
|
/*
|
||||||
* arch/arm/include/asm/arch-rmobile/r8a7793.h
|
* arch/arm/include/asm/arch-renesas/r8a7793.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014 Renesas Electronics Corporation
|
* Copyright (C) 2014 Renesas Electronics Corporation
|
||||||
*/
|
*/
|
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
/*
|
/*
|
||||||
* arch/arm/include/asm/arch-rmobile/r8a7794.h
|
* arch/arm/include/asm/arch-renesas/r8a7794.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2014 Renesas Electronics Corporation
|
* Copyright (C) 2014 Renesas Electronics Corporation
|
||||||
*/
|
*/
|
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
/*
|
/*
|
||||||
* arch/arm/include/asm/arch-rmobile/rcar-base.h
|
* arch/arm/include/asm/arch-renesas/rcar-base.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013,2014 Renesas Electronics Corporation
|
* Copyright (C) 2013,2014 Renesas Electronics Corporation
|
||||||
*/
|
*/
|
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||||
/*
|
/*
|
||||||
* ./arch/arm/mach-rmobile/include/mach/rcar-gen3-base.h
|
* ./arch/arm/mach-renesas/include/mach/rcar-gen3-base.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2015 Renesas Electronics Corporation
|
* Copyright (C) 2015 Renesas Electronics Corporation
|
||||||
*/
|
*/
|
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||||
/*
|
/*
|
||||||
* ./arch/arm/mach-rmobile/include/mach/rcar-gen4-base.h
|
* ./arch/arm/mach-renesas/include/mach/rcar-gen4-base.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2021 Renesas Electronics Corp.
|
* Copyright (C) 2021 Renesas Electronics Corp.
|
||||||
*/
|
*/
|
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
/*
|
/*
|
||||||
* arch/arm/include/asm/arch-rmobile/rcar-mstp.h
|
* arch/arm/include/asm/arch-renesas/rcar-mstp.h
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013, 2014 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
|
* Copyright (C) 2013, 2014 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
|
||||||
* Copyright (C) 2013, 2014 Renesas Electronics Corporation
|
* Copyright (C) 2013, 2014 Renesas Electronics Corporation
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_BEACON_RZG2M
|
if TARGET_BEACON_RZG2M
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "beacon-rzg2m"
|
default "beacon-rzg2m"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_HIHOPE_RZG2
|
if TARGET_HIHOPE_RZG2
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "hihope-rzg2"
|
default "hihope-rzg2"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_CONDOR
|
if TARGET_CONDOR
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "condor"
|
default "condor"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_DRAAK
|
if TARGET_DRAAK
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "draak"
|
default "draak"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_EAGLE
|
if TARGET_EAGLE
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "eagle"
|
default "eagle"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_EBISU
|
if TARGET_EBISU
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "ebisu"
|
default "ebisu"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_FALCON
|
if TARGET_FALCON
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "falcon"
|
default "falcon"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_GRAYHAWK
|
if TARGET_GRAYHAWK
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "grayhawk"
|
default "grayhawk"
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
if TARGET_RZG2L_SMARC_EVK
|
if TARGET_RZG2L_SMARC_EVK
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "rzg2l"
|
default "rzg2l"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_SALVATOR_X
|
if TARGET_SALVATOR_X
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "salvator-x"
|
default "salvator-x"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_SPIDER
|
if TARGET_SPIDER
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "spider"
|
default "spider"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_ULCB
|
if TARGET_ULCB
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "ulcb"
|
default "ulcb"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_V3HSK
|
if TARGET_V3HSK
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "v3hsk"
|
default "v3hsk"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_V3MSK
|
if TARGET_V3MSK
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "v3msk"
|
default "v3msk"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_WHITEHAWK
|
if TARGET_WHITEHAWK
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "whitehawk"
|
default "whitehawk"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
if TARGET_SILINUX_EK874
|
if TARGET_SILINUX_EK874
|
||||||
|
|
||||||
config SYS_SOC
|
config SYS_SOC
|
||||||
default "rmobile"
|
default "renesas"
|
||||||
|
|
||||||
config SYS_BOARD
|
config SYS_BOARD
|
||||||
default "ek874"
|
default "ek874"
|
||||||
|
|
Loading…
Add table
Reference in a new issue