* [meta-rockchip][PATCH] nanopi-r2s: add
@ 2023-10-02 14:11 Trevor Woerner
2023-10-02 14:15 ` [yocto] " Quentin Schulz
2023-10-02 22:59 ` Trevor Woerner
0 siblings, 2 replies; 3+ messages in thread
From: Trevor Woerner @ 2023-10-02 14:11 UTC (permalink / raw)
To: yocto
The NanoPi R2S is a mini router with edge computing and dual GbE ports by
FriendlyElec. It is based on the Rockchip RK3328 - a quad A53 core, 64-bit SoC
running at 1.2GHz with at least 1GB of DDR4 RAM. It has one USB 2.0 host and
is powered via a USB type-C connector (5V/2A).
https://www.friendlyelec.com/index.php?route=product/product&product_id=282
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
README | 1 +
conf/machine/nanopi-r2s.conf | 11 +++++++++++
recipes-kernel/linux/linux-yocto_%.bbappend | 1 +
3 files changed, 13 insertions(+)
create mode 100644 conf/machine/nanopi-r2s.conf
diff --git a/README b/README
index e815fb47ff5f..8451b4778c37 100644
--- a/README
+++ b/README
@@ -32,6 +32,7 @@ Status of supported boards:
nanopi-r4s
rock-5b
rock-pi-s
+ nanopi-r2s
builds:
marsboard-rk3066
radxarock
diff --git a/conf/machine/nanopi-r2s.conf b/conf/machine/nanopi-r2s.conf
new file mode 100644
index 000000000000..4472c21f0217
--- /dev/null
+++ b/conf/machine/nanopi-r2s.conf
@@ -0,0 +1,11 @@
+#@TYPE: Machine
+#@NAME: NanoPi R2S
+#@DESCRIPTION: The NanoPi R2S is a mini router with edge computing and dual GbE ports by FriendlyElec
+#https://www.friendlyelec.com/index.php?route=product/product&product_id=282
+
+require conf/machine/include/rk3328.inc
+
+KERNEL_DEVICETREE = "rockchip/rk3328-nanopi-r2s.dtb"
+MACHINE_EXTRA_RRECOMMENDS += "kernel-modules"
+
+UBOOT_MACHINE = "nanopi-r2s-rk3328_defconfig"
diff --git a/recipes-kernel/linux/linux-yocto_%.bbappend b/recipes-kernel/linux/linux-yocto_%.bbappend
index 61c89f70d8dc..456182ee473d 100644
--- a/recipes-kernel/linux/linux-yocto_%.bbappend
+++ b/recipes-kernel/linux/linux-yocto_%.bbappend
@@ -14,6 +14,7 @@ COMPATIBLE_MACHINE:rock64 = "rock64"
COMPATIBLE_MACHINE:rock-pi-e = "rock-pi-e"
COMPATIBLE_MACHINE:nanopi-r4s = "nanopi-r4s"
COMPATIBLE_MACHINE:rock-pi-s = "rock-pi-s"
+COMPATIBLE_MACHINE:nanopi-r2s = "nanopi-r2s"
SRC_URI:append = " file://rockchip-kmeta;type=kmeta;name=rockchip-kmeta;destsuffix=rockchip-kmeta"
SRC_URI:append:nanopi-r4s = " file://nanopi-r4s.scc"
--
2.41.0.327.gaa9166bcc0ba
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [yocto] [meta-rockchip][PATCH] nanopi-r2s: add
2023-10-02 14:11 [meta-rockchip][PATCH] nanopi-r2s: add Trevor Woerner
@ 2023-10-02 14:15 ` Quentin Schulz
2023-10-02 22:59 ` Trevor Woerner
1 sibling, 0 replies; 3+ messages in thread
From: Quentin Schulz @ 2023-10-02 14:15 UTC (permalink / raw)
To: twoerner, yocto
Hi Trevor,
On 10/2/23 16:11, Trevor Woerner via lists.yoctoproject.org wrote:
> The NanoPi R2S is a mini router with edge computing and dual GbE ports by
> FriendlyElec. It is based on the Rockchip RK3328 - a quad A53 core, 64-bit SoC
> running at 1.2GHz with at least 1GB of DDR4 RAM. It has one USB 2.0 host and
> is powered via a USB type-C connector (5V/2A).
>
> https://www.friendlyelec.com/index.php?route=product/product&product_id=282
>
> Signed-off-by: Trevor Woerner <twoerner@gmail.com>
> ---
> README | 1 +
> conf/machine/nanopi-r2s.conf | 11 +++++++++++
> recipes-kernel/linux/linux-yocto_%.bbappend | 1 +
> 3 files changed, 13 insertions(+)
> create mode 100644 conf/machine/nanopi-r2s.conf
>
> diff --git a/README b/README
> index e815fb47ff5f..8451b4778c37 100644
> --- a/README
> +++ b/README
> @@ -32,6 +32,7 @@ Status of supported boards:
> nanopi-r4s
> rock-5b
> rock-pi-s
> + nanopi-r2s
Was about to "complain" that this was not alphabetically sorted
anymore... but it's already the case above the git context :)
Looking good :)
Reviewed-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
Cheers,
Quentin
> builds:
> marsboard-rk3066
> radxarock
> diff --git a/conf/machine/nanopi-r2s.conf b/conf/machine/nanopi-r2s.conf
> new file mode 100644
> index 000000000000..4472c21f0217
> --- /dev/null
> +++ b/conf/machine/nanopi-r2s.conf
> @@ -0,0 +1,11 @@
> +#@TYPE: Machine
> +#@NAME: NanoPi R2S
> +#@DESCRIPTION: The NanoPi R2S is a mini router with edge computing and dual GbE ports by FriendlyElec
> +#https://www.friendlyelec.com/index.php?route=product/product&product_id=282
> +
> +require conf/machine/include/rk3328.inc
> +
> +KERNEL_DEVICETREE = "rockchip/rk3328-nanopi-r2s.dtb"
> +MACHINE_EXTRA_RRECOMMENDS += "kernel-modules"
> +
> +UBOOT_MACHINE = "nanopi-r2s-rk3328_defconfig"
> diff --git a/recipes-kernel/linux/linux-yocto_%.bbappend b/recipes-kernel/linux/linux-yocto_%.bbappend
> index 61c89f70d8dc..456182ee473d 100644
> --- a/recipes-kernel/linux/linux-yocto_%.bbappend
> +++ b/recipes-kernel/linux/linux-yocto_%.bbappend
> @@ -14,6 +14,7 @@ COMPATIBLE_MACHINE:rock64 = "rock64"
> COMPATIBLE_MACHINE:rock-pi-e = "rock-pi-e"
> COMPATIBLE_MACHINE:nanopi-r4s = "nanopi-r4s"
> COMPATIBLE_MACHINE:rock-pi-s = "rock-pi-s"
> +COMPATIBLE_MACHINE:nanopi-r2s = "nanopi-r2s"
>
> SRC_URI:append = " file://rockchip-kmeta;type=kmeta;name=rockchip-kmeta;destsuffix=rockchip-kmeta"
> SRC_URI:append:nanopi-r4s = " file://nanopi-r4s.scc"
>
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#61191): https://lists.yoctoproject.org/g/yocto/message/61191
> Mute This Topic: https://lists.yoctoproject.org/mt/101712596/6293953
> Group Owner: yocto+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [quentin.schulz@theobroma-systems.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [meta-rockchip][PATCH] nanopi-r2s: add
2023-10-02 14:11 [meta-rockchip][PATCH] nanopi-r2s: add Trevor Woerner
2023-10-02 14:15 ` [yocto] " Quentin Schulz
@ 2023-10-02 22:59 ` Trevor Woerner
1 sibling, 0 replies; 3+ messages in thread
From: Trevor Woerner @ 2023-10-02 22:59 UTC (permalink / raw)
To: yocto
On Mon 2023-10-02 @ 10:11:46 AM, Trevor Woerner wrote:
> The NanoPi R2S is a mini router with edge computing and dual GbE ports by
> FriendlyElec. It is based on the Rockchip RK3328 - a quad A53 core, 64-bit SoC
> running at 1.2GHz with at least 1GB of DDR4 RAM. It has one USB 2.0 host and
> is powered via a USB type-C connector (5V/2A).
>
> https://www.friendlyelec.com/index.php?route=product/product&product_id=282
>
> Signed-off-by: Trevor Woerner <twoerner@gmail.com>
> ---
> README | 1 +
> conf/machine/nanopi-r2s.conf | 11 +++++++++++
> recipes-kernel/linux/linux-yocto_%.bbappend | 1 +
> 3 files changed, 13 insertions(+)
> create mode 100644 conf/machine/nanopi-r2s.conf
Applied to meta-rockchip, master branch.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-10-02 23:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-02 14:11 [meta-rockchip][PATCH] nanopi-r2s: add Trevor Woerner
2023-10-02 14:15 ` [yocto] " Quentin Schulz
2023-10-02 22:59 ` Trevor Woerner
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.