All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/3] Align Amarula Vyasa with latest U-Boot and Linux
@ 2021-04-02 22:20 Giulio Benetti
  2021-04-02 22:20 ` [Buildroot] [PATCH 1/3] configs/amarula_vyasa_rk3288: bump u-boot version to 2021.01 Giulio Benetti
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Giulio Benetti @ 2021-04-02 22:20 UTC (permalink / raw)
  To: buildroot

This patchset bump to latest versions of U-Boot and Linux. It also set sd-card
as bootable media where to search extlinux.conf.

Giulio Benetti (3):
  configs/amarula_vyasa_rk3288: bump u-boot version to 2021.01
  configs/amarula_vyasa_rk3288: vyasa: bump Linux version to 5.11
  board/amarula/vyasa: set sd-card as boot media

 board/amarula/vyasa/extlinux.conf      | 2 +-
 configs/amarula_vyasa_rk3288_defconfig | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

-- 
2.25.1

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

* [Buildroot] [PATCH 1/3] configs/amarula_vyasa_rk3288: bump u-boot version to 2021.01
  2021-04-02 22:20 [Buildroot] [PATCH 0/3] Align Amarula Vyasa with latest U-Boot and Linux Giulio Benetti
@ 2021-04-02 22:20 ` Giulio Benetti
  2021-04-03 13:47   ` Thomas Petazzoni
  2021-04-02 22:20 ` [Buildroot] [PATCH 2/3] configs/amarula_vyasa_rk3288: vyasa: bump Linux version to 5.11 Giulio Benetti
  2021-04-02 22:20 ` [Buildroot] [PATCH 3/3] board/amarula/vyasa: set sd-card as boot media Giulio Benetti
  2 siblings, 1 reply; 7+ messages in thread
From: Giulio Benetti @ 2021-04-02 22:20 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 configs/amarula_vyasa_rk3288_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/amarula_vyasa_rk3288_defconfig b/configs/amarula_vyasa_rk3288_defconfig
index 760ad3f9f4..3403589253 100644
--- a/configs/amarula_vyasa_rk3288_defconfig
+++ b/configs/amarula_vyasa_rk3288_defconfig
@@ -10,7 +10,7 @@ BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_0=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2019.01"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.01"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="vyasa-rk3288"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
 BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
-- 
2.25.1

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

* [Buildroot] [PATCH 2/3] configs/amarula_vyasa_rk3288: vyasa: bump Linux version to 5.11
  2021-04-02 22:20 [Buildroot] [PATCH 0/3] Align Amarula Vyasa with latest U-Boot and Linux Giulio Benetti
  2021-04-02 22:20 ` [Buildroot] [PATCH 1/3] configs/amarula_vyasa_rk3288: bump u-boot version to 2021.01 Giulio Benetti
@ 2021-04-02 22:20 ` Giulio Benetti
  2021-04-03 13:48   ` Thomas Petazzoni
  2021-04-02 22:20 ` [Buildroot] [PATCH 3/3] board/amarula/vyasa: set sd-card as boot media Giulio Benetti
  2 siblings, 1 reply; 7+ messages in thread
From: Giulio Benetti @ 2021-04-02 22:20 UTC (permalink / raw)
  To: buildroot

Bump Linux and headers version to 5.11

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 configs/amarula_vyasa_rk3288_defconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configs/amarula_vyasa_rk3288_defconfig b/configs/amarula_vyasa_rk3288_defconfig
index 3403589253..3b12da077c 100644
--- a/configs/amarula_vyasa_rk3288_defconfig
+++ b/configs/amarula_vyasa_rk3288_defconfig
@@ -3,8 +3,8 @@ BR2_arm=y
 BR2_cortex_a17=y
 BR2_ARM_FPU_NEON_VFPV4=y
 
-# Linux headers same as kernel, a 5.0 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_0=y
+# Linux headers same as kernel, a 5.11 series
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_11=y
 
 # Bootloader
 BR2_TARGET_UBOOT=y
@@ -22,7 +22,7 @@ BR2_TARGET_UBOOT_SPL_NAME="spl/u-boot-spl-dtb.bin tpl/u-boot-tpl.bin"
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.0"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.11"
 BR2_LINUX_KERNEL_DEFCONFIG="multi_v7"
 BR2_LINUX_KERNEL_UIMAGE=y
 BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x02000000"
-- 
2.25.1

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

* [Buildroot] [PATCH 3/3] board/amarula/vyasa: set sd-card as boot media
  2021-04-02 22:20 [Buildroot] [PATCH 0/3] Align Amarula Vyasa with latest U-Boot and Linux Giulio Benetti
  2021-04-02 22:20 ` [Buildroot] [PATCH 1/3] configs/amarula_vyasa_rk3288: bump u-boot version to 2021.01 Giulio Benetti
  2021-04-02 22:20 ` [Buildroot] [PATCH 2/3] configs/amarula_vyasa_rk3288: vyasa: bump Linux version to 5.11 Giulio Benetti
@ 2021-04-02 22:20 ` Giulio Benetti
  2021-04-03 13:32   ` Giulio Benetti
  2 siblings, 1 reply; 7+ messages in thread
From: Giulio Benetti @ 2021-04-02 22:20 UTC (permalink / raw)
  To: buildroot

I find easier to test using sd-card(mmcblk1p1) than eMMC(mmcblk0p1) to
test this board. If needed one can swap back to mmcblk0p1 for using eMMC,
or set a unique UUID for partition, so both sd-card or eMMC can be booted
if that UUID partitions is found.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 board/amarula/vyasa/extlinux.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/amarula/vyasa/extlinux.conf b/board/amarula/vyasa/extlinux.conf
index a8fcc35f5a..e7e12ab9bc 100644
--- a/board/amarula/vyasa/extlinux.conf
+++ b/board/amarula/vyasa/extlinux.conf
@@ -1,4 +1,4 @@
 label Vyasa linux-next
   kernel /boot/uImage
   devicetree /boot/rk3288-vyasa.dtb
-  append console=ttyS2,115200n8 root=/dev/mmcblk0p1 rootwait
+  append console=ttyS2,115200n8 root=/dev/mmcblk1p1 rootwait
-- 
2.25.1

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

* [Buildroot] [PATCH 3/3] board/amarula/vyasa: set sd-card as boot media
  2021-04-02 22:20 ` [Buildroot] [PATCH 3/3] board/amarula/vyasa: set sd-card as boot media Giulio Benetti
@ 2021-04-03 13:32   ` Giulio Benetti
  0 siblings, 0 replies; 7+ messages in thread
From: Giulio Benetti @ 2021-04-03 13:32 UTC (permalink / raw)
  To: buildroot

Hi,

please drop this patch. Sd-card when jumper JP4 is closed makes eMMC not 
available, so sd-card will be registered as mmcblk0.

Thank you
-- 
Giulio Benetti
Benetti Engineering sas
On 4/3/21 12:20 AM, Giulio Benetti wrote:
> I find easier to test using sd-card(mmcblk1p1) than eMMC(mmcblk0p1) to
> test this board. If needed one can swap back to mmcblk0p1 for using eMMC,
> or set a unique UUID for partition, so both sd-card or eMMC can be booted
> if that UUID partitions is found.
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> ---
>   board/amarula/vyasa/extlinux.conf | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/board/amarula/vyasa/extlinux.conf b/board/amarula/vyasa/extlinux.conf
> index a8fcc35f5a..e7e12ab9bc 100644
> --- a/board/amarula/vyasa/extlinux.conf
> +++ b/board/amarula/vyasa/extlinux.conf
> @@ -1,4 +1,4 @@
>   label Vyasa linux-next
>     kernel /boot/uImage
>     devicetree /boot/rk3288-vyasa.dtb
> -  append console=ttyS2,115200n8 root=/dev/mmcblk0p1 rootwait
> +  append console=ttyS2,115200n8 root=/dev/mmcblk1p1 rootwait
> 

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

* [Buildroot] [PATCH 1/3] configs/amarula_vyasa_rk3288: bump u-boot version to 2021.01
  2021-04-02 22:20 ` [Buildroot] [PATCH 1/3] configs/amarula_vyasa_rk3288: bump u-boot version to 2021.01 Giulio Benetti
@ 2021-04-03 13:47   ` Thomas Petazzoni
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2021-04-03 13:47 UTC (permalink / raw)
  To: buildroot

On Sat,  3 Apr 2021 00:20:37 +0200
Giulio Benetti <giulio.benetti@benettiengineering.com> wrote:

> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> ---
>  configs/amarula_vyasa_rk3288_defconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 2/3] configs/amarula_vyasa_rk3288: vyasa: bump Linux version to 5.11
  2021-04-02 22:20 ` [Buildroot] [PATCH 2/3] configs/amarula_vyasa_rk3288: vyasa: bump Linux version to 5.11 Giulio Benetti
@ 2021-04-03 13:48   ` Thomas Petazzoni
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2021-04-03 13:48 UTC (permalink / raw)
  To: buildroot

On Sat,  3 Apr 2021 00:20:38 +0200
Giulio Benetti <giulio.benetti@benettiengineering.com> wrote:

> Bump Linux and headers version to 5.11
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> ---
>  configs/amarula_vyasa_rk3288_defconfig | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

end of thread, other threads:[~2021-04-03 13:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-02 22:20 [Buildroot] [PATCH 0/3] Align Amarula Vyasa with latest U-Boot and Linux Giulio Benetti
2021-04-02 22:20 ` [Buildroot] [PATCH 1/3] configs/amarula_vyasa_rk3288: bump u-boot version to 2021.01 Giulio Benetti
2021-04-03 13:47   ` Thomas Petazzoni
2021-04-02 22:20 ` [Buildroot] [PATCH 2/3] configs/amarula_vyasa_rk3288: vyasa: bump Linux version to 5.11 Giulio Benetti
2021-04-03 13:48   ` Thomas Petazzoni
2021-04-02 22:20 ` [Buildroot] [PATCH 3/3] board/amarula/vyasa: set sd-card as boot media Giulio Benetti
2021-04-03 13:32   ` Giulio Benetti

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.