All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] engicam: Rename board dir, px30_core to px30
@ 2021-08-04  9:07 Jagan Teki
  2021-12-24  2:54 ` Kever Yang
  0 siblings, 1 reply; 2+ messages in thread
From: Jagan Teki @ 2021-08-04  9:07 UTC (permalink / raw)
  To: Kever Yang; +Cc: u-boot, linux-amarula, Jagan Teki

Engicam hardware design solutions are based on System On Modules(SoM)
with various SoCs like i.MX6, i.MX8 and PX30 etc.

The current directory structure uses the simplest way to understand
these designs by listing each of these SoC in board/engicam/SoC and
inside SoC directory has SoM file name as a board file name.

Right now all of the SoC's follow a similar approach except px30.
So rename px30_core to px30.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
Note:
This patch is on top of 
https://patchwork.ozlabs.org/project/uboot/cover/20210804090551.90819-1-jagan@amarulasolutions.com/

 arch/arm/mach-rockchip/px30/Kconfig           | 2 +-
 board/engicam/{px30_core => px30}/Kconfig     | 2 +-
 board/engicam/{px30_core => px30}/MAINTAINERS | 0
 board/engicam/{px30_core => px30}/Makefile    | 0
 board/engicam/{px30_core => px30}/px30_core.c | 0
 5 files changed, 2 insertions(+), 2 deletions(-)
 rename board/engicam/{px30_core => px30}/Kconfig (90%)
 rename board/engicam/{px30_core => px30}/MAINTAINERS (100%)
 rename board/engicam/{px30_core => px30}/Makefile (100%)
 rename board/engicam/{px30_core => px30}/px30_core.c (100%)

diff --git a/arch/arm/mach-rockchip/px30/Kconfig b/arch/arm/mach-rockchip/px30/Kconfig
index 98e09019a2..7b9b380dfa 100644
--- a/arch/arm/mach-rockchip/px30/Kconfig
+++ b/arch/arm/mach-rockchip/px30/Kconfig
@@ -68,7 +68,7 @@ config DEBUG_UART_CHANNEL
 	  For using the UART for early debugging the route to use needs
 	  to be declared (0 or 1).
 
-source "board/engicam/px30_core/Kconfig"
+source "board/engicam/px30/Kconfig"
 source "board/hardkernel/odroid_go2/Kconfig"
 source "board/rockchip/evb_px30/Kconfig"
 
diff --git a/board/engicam/px30_core/Kconfig b/board/engicam/px30/Kconfig
similarity index 90%
rename from board/engicam/px30_core/Kconfig
rename to board/engicam/px30/Kconfig
index a03be78369..10a7ec203f 100644
--- a/board/engicam/px30_core/Kconfig
+++ b/board/engicam/px30/Kconfig
@@ -1,7 +1,7 @@
 if TARGET_PX30_CORE
 
 config SYS_BOARD
-	default "px30_core"
+	default "px30"
 
 config SYS_VENDOR
 	default "engicam"
diff --git a/board/engicam/px30_core/MAINTAINERS b/board/engicam/px30/MAINTAINERS
similarity index 100%
rename from board/engicam/px30_core/MAINTAINERS
rename to board/engicam/px30/MAINTAINERS
diff --git a/board/engicam/px30_core/Makefile b/board/engicam/px30/Makefile
similarity index 100%
rename from board/engicam/px30_core/Makefile
rename to board/engicam/px30/Makefile
diff --git a/board/engicam/px30_core/px30_core.c b/board/engicam/px30/px30_core.c
similarity index 100%
rename from board/engicam/px30_core/px30_core.c
rename to board/engicam/px30/px30_core.c
-- 
2.25.1


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

* Re: [PATCH] engicam: Rename board dir, px30_core to px30
  2021-08-04  9:07 [PATCH] engicam: Rename board dir, px30_core to px30 Jagan Teki
@ 2021-12-24  2:54 ` Kever Yang
  0 siblings, 0 replies; 2+ messages in thread
From: Kever Yang @ 2021-12-24  2:54 UTC (permalink / raw)
  To: Jagan Teki; +Cc: u-boot, linux-amarula

Hi Jagan,

     Please add 'rockchip' prefix in the subject.


Thanks,

- Kever

On 2021/8/4 下午5:07, Jagan Teki wrote:
> Engicam hardware design solutions are based on System On Modules(SoM)
> with various SoCs like i.MX6, i.MX8 and PX30 etc.
>
> The current directory structure uses the simplest way to understand
> these designs by listing each of these SoC in board/engicam/SoC and
> inside SoC directory has SoM file name as a board file name.
>
> Right now all of the SoC's follow a similar approach except px30.
> So rename px30_core to px30.
>
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> ---
> Note:
> This patch is on top of
> https://patchwork.ozlabs.org/project/uboot/cover/20210804090551.90819-1-jagan@amarulasolutions.com/
>
>   arch/arm/mach-rockchip/px30/Kconfig           | 2 +-
>   board/engicam/{px30_core => px30}/Kconfig     | 2 +-
>   board/engicam/{px30_core => px30}/MAINTAINERS | 0
>   board/engicam/{px30_core => px30}/Makefile    | 0
>   board/engicam/{px30_core => px30}/px30_core.c | 0
>   5 files changed, 2 insertions(+), 2 deletions(-)
>   rename board/engicam/{px30_core => px30}/Kconfig (90%)
>   rename board/engicam/{px30_core => px30}/MAINTAINERS (100%)
>   rename board/engicam/{px30_core => px30}/Makefile (100%)
>   rename board/engicam/{px30_core => px30}/px30_core.c (100%)
>
> diff --git a/arch/arm/mach-rockchip/px30/Kconfig b/arch/arm/mach-rockchip/px30/Kconfig
> index 98e09019a2..7b9b380dfa 100644
> --- a/arch/arm/mach-rockchip/px30/Kconfig
> +++ b/arch/arm/mach-rockchip/px30/Kconfig
> @@ -68,7 +68,7 @@ config DEBUG_UART_CHANNEL
>   	  For using the UART for early debugging the route to use needs
>   	  to be declared (0 or 1).
>   
> -source "board/engicam/px30_core/Kconfig"
> +source "board/engicam/px30/Kconfig"
>   source "board/hardkernel/odroid_go2/Kconfig"
>   source "board/rockchip/evb_px30/Kconfig"
>   
> diff --git a/board/engicam/px30_core/Kconfig b/board/engicam/px30/Kconfig
> similarity index 90%
> rename from board/engicam/px30_core/Kconfig
> rename to board/engicam/px30/Kconfig
> index a03be78369..10a7ec203f 100644
> --- a/board/engicam/px30_core/Kconfig
> +++ b/board/engicam/px30/Kconfig
> @@ -1,7 +1,7 @@
>   if TARGET_PX30_CORE
>   
>   config SYS_BOARD
> -	default "px30_core"
> +	default "px30"
>   
>   config SYS_VENDOR
>   	default "engicam"
> diff --git a/board/engicam/px30_core/MAINTAINERS b/board/engicam/px30/MAINTAINERS
> similarity index 100%
> rename from board/engicam/px30_core/MAINTAINERS
> rename to board/engicam/px30/MAINTAINERS
> diff --git a/board/engicam/px30_core/Makefile b/board/engicam/px30/Makefile
> similarity index 100%
> rename from board/engicam/px30_core/Makefile
> rename to board/engicam/px30/Makefile
> diff --git a/board/engicam/px30_core/px30_core.c b/board/engicam/px30/px30_core.c
> similarity index 100%
> rename from board/engicam/px30_core/px30_core.c
> rename to board/engicam/px30/px30_core.c



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

end of thread, other threads:[~2021-12-24  2:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-04  9:07 [PATCH] engicam: Rename board dir, px30_core to px30 Jagan Teki
2021-12-24  2:54 ` Kever Yang

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.