* [meta-rockchip][PATCH v2 1/3] rename root partition
@ 2024-05-24 2:37 Trevor Woerner
2024-05-24 2:37 ` [meta-rockchip][PATCH v2 2/3] specify root partition type Trevor Woerner
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Trevor Woerner @ 2024-05-24 2:37 UTC (permalink / raw)
To: yocto-patches
Rename the root partition to "rootfsA" in the off-chance the user may someday
be interested in implementing some sort of whole-partition update mechanism.
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
v2 changes:
- (none)
---
conf/machine/include/rockchip-extlinux.inc | 2 +-
wic/rockchip.wks | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/conf/machine/include/rockchip-extlinux.inc b/conf/machine/include/rockchip-extlinux.inc
index ca33f4c7f42a..ab46b76d33a1 100644
--- a/conf/machine/include/rockchip-extlinux.inc
+++ b/conf/machine/include/rockchip-extlinux.inc
@@ -12,7 +12,7 @@
NONFITDT ?= "${@d.getVar('KERNEL_DEVICETREE').split('/')[1]}"
UBOOT_EXTLINUX ?= "1"
-UBOOT_EXTLINUX_ROOT ?= "root=PARTLABEL=root"
+UBOOT_EXTLINUX_ROOT ?= "root=PARTLABEL=rootfsA"
UBOOT_EXTLINUX_FDTDIR ?= "${@bb.utils.contains('KERNEL_IMAGETYPE', 'fitImage', '', '/boot', d)}"
UBOOT_EXTLINUX_FDT ?= "${@bb.utils.contains('KERNEL_IMAGETYPE', 'fitImage', '', '${NONFITDT}', d)}"
UBOOT_EXTLINUX_CONSOLE ?= "earlycon console=tty1 console=${RK_CONSOLE_DEVICE},${RK_CONSOLE_BAUD}n8"
diff --git a/wic/rockchip.wks b/wic/rockchip.wks
index bc65f73b0cf3..e1d74d9983ab 100644
--- a/wic/rockchip.wks
+++ b/wic/rockchip.wks
@@ -26,6 +26,6 @@ part uboot_env --offset 8128s --fixed-size 32K --fstype=none --part-name uboo
part reserved2 --offset 8192s --fixed-size 4096K --fstype=none --part-name reserved2
part loader2 --offset 16384s --fixed-size 4096K --fstype=none --part-name loader2 --source rawcopy --sourceparams="file=u-boot.${UBOOT_SUFFIX}"
part atf --offset 24576s --fixed-size 4096K --fstype=none --part-name atf
-part / --label root --active --fstype=ext4 --part-name root --source rootfs
+part / --label rootfsA --active --fstype=ext4 --part-name rootfsA --source rootfs
bootloader --ptable gpt
--
2.44.0.478.g7774cfed6261
^ permalink raw reply related [flat|nested] 6+ messages in thread* [meta-rockchip][PATCH v2 2/3] specify root partition type
2024-05-24 2:37 [meta-rockchip][PATCH v2 1/3] rename root partition Trevor Woerner
@ 2024-05-24 2:37 ` Trevor Woerner
2024-05-26 13:28 ` Trevor Woerner
2024-05-24 2:37 ` [meta-rockchip][PATCH v2 3/3] u-boot: remove upstreamed dependency Trevor Woerner
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Trevor Woerner @ 2024-05-24 2:37 UTC (permalink / raw)
To: yocto-patches
Specify the root partition's type according to the Discoverable Partitions
Specification:
32-bit ARM: 69dad710-2ce4-4e3c-b16c-21a1d49abed3
64-bit ARM: b921b045-1df0-41c3-af44-4c6f280d3fae
Link: https://uapi-group.org/specifications/specs/discoverable_partitions_specification/
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
v2 changes:
- use lower-case for both partition identifiers (in code and in commit msg)
- use Arm overrides instead of MACHINE overrides to identify which identifiers
are used for which builds, this clarifies why the 2 identifiers are needed
---
conf/machine/include/rockchip-defaults.inc | 4 ++++
conf/machine/include/rockchip-wic.inc | 1 +
wic/rockchip.wks | 2 +-
3 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/conf/machine/include/rockchip-defaults.inc b/conf/machine/include/rockchip-defaults.inc
index 2387eb909934..e33a25c07b5a 100644
--- a/conf/machine/include/rockchip-defaults.inc
+++ b/conf/machine/include/rockchip-defaults.inc
@@ -21,3 +21,7 @@ XSERVER = " \
SERIAL_CONSOLES ?= "1500000;ttyS2"
RK_CONSOLE_BAUD ?= "${@d.getVar('SERIAL_CONSOLES').split(';')[0]}"
RK_CONSOLE_DEVICE ?= "${@d.getVar('SERIAL_CONSOLES').split(';')[1].split()[0]}"
+
+# Discoverable Partitions Specification (DPS)
+ROOT_DPS:arm = "69dad710-2ce4-4e3c-b16c-21a1d49abed3"
+ROOT_DPS:aarch64 = "b921b045-1df0-41c3-af44-4c6f280d3fae"
diff --git a/conf/machine/include/rockchip-wic.inc b/conf/machine/include/rockchip-wic.inc
index b5ee6e0c2724..dab61d83ed2c 100644
--- a/conf/machine/include/rockchip-wic.inc
+++ b/conf/machine/include/rockchip-wic.inc
@@ -19,6 +19,7 @@ RK_UBOOT_ENV:rk-u-boot-env = "${@ '--source rawcopy --sourceparams=file=u-boot.e
WICVARS:append = " \
RK_UBOOT_ENV \
+ ROOT_DPS \
SPL_BINARY \
UBOOT_SUFFIX \
"
diff --git a/wic/rockchip.wks b/wic/rockchip.wks
index e1d74d9983ab..cabdb6559550 100644
--- a/wic/rockchip.wks
+++ b/wic/rockchip.wks
@@ -26,6 +26,6 @@ part uboot_env --offset 8128s --fixed-size 32K --fstype=none --part-name uboo
part reserved2 --offset 8192s --fixed-size 4096K --fstype=none --part-name reserved2
part loader2 --offset 16384s --fixed-size 4096K --fstype=none --part-name loader2 --source rawcopy --sourceparams="file=u-boot.${UBOOT_SUFFIX}"
part atf --offset 24576s --fixed-size 4096K --fstype=none --part-name atf
-part / --label rootfsA --active --fstype=ext4 --part-name rootfsA --source rootfs
+part / --label rootfsA --active --fstype=ext4 --part-name rootfsA --source rootfs --part-type ${ROOT_DPS}
bootloader --ptable gpt
--
2.44.0.478.g7774cfed6261
^ permalink raw reply related [flat|nested] 6+ messages in thread* [meta-rockchip][PATCH v2 3/3] u-boot: remove upstreamed dependency
2024-05-24 2:37 [meta-rockchip][PATCH v2 1/3] rename root partition Trevor Woerner
2024-05-24 2:37 ` [meta-rockchip][PATCH v2 2/3] specify root partition type Trevor Woerner
@ 2024-05-24 2:37 ` Trevor Woerner
2024-05-26 13:27 ` [meta-rockchip][PATCH v2 1/3] rename root partition Trevor Woerner
[not found] ` <17D24C42F9948747.24662@lists.yoctoproject.org>
3 siblings, 0 replies; 6+ messages in thread
From: Trevor Woerner @ 2024-05-24 2:37 UTC (permalink / raw)
To: yocto-patches; +Cc: Quentin Schulz
The dependency on pyelftools is now in upstream oe-core making this one
redundant.
oe-core: 70eca6a5ccf4 ("u-boot: add missing dependency on pyelftools-native")
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
v2 changes:
- add a git fixes-style link pointing to the upstream oe-core commit mentioned
in the commit message
- added Reviewed-by tag
---
recipes-bsp/u-boot/u-boot_%.bbappend | 2 --
1 file changed, 2 deletions(-)
diff --git a/recipes-bsp/u-boot/u-boot_%.bbappend b/recipes-bsp/u-boot/u-boot_%.bbappend
index 33b521021a1c..5c9e442cca8d 100644
--- a/recipes-bsp/u-boot/u-boot_%.bbappend
+++ b/recipes-bsp/u-boot/u-boot_%.bbappend
@@ -3,8 +3,6 @@ FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
SRC_URI:append:rk-u-boot-env = " file://rockchip-enable-environment-mmc.cfg"
SRCREV:rk-u-boot-env = "cdfcc37428e06f4730ab9a17cc084eeb7676ea1a"
-# various machines require the pyelftools library for parsing dtb files
-DEPENDS:append = " python3-pyelftools-native"
DEPENDS:append:rk3308 = " u-boot-tools-native"
DEPENDS:append:rock-pi-4 = " gnutls-native"
DEPENDS:append:rk-u-boot-env = " u-boot-mkenvimage-native"
--
2.44.0.478.g7774cfed6261
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [meta-rockchip][PATCH v2 1/3] rename root partition
2024-05-24 2:37 [meta-rockchip][PATCH v2 1/3] rename root partition Trevor Woerner
2024-05-24 2:37 ` [meta-rockchip][PATCH v2 2/3] specify root partition type Trevor Woerner
2024-05-24 2:37 ` [meta-rockchip][PATCH v2 3/3] u-boot: remove upstreamed dependency Trevor Woerner
@ 2024-05-26 13:27 ` Trevor Woerner
[not found] ` <17D24C42F9948747.24662@lists.yoctoproject.org>
3 siblings, 0 replies; 6+ messages in thread
From: Trevor Woerner @ 2024-05-26 13:27 UTC (permalink / raw)
To: yocto-patches
On Thu 2024-05-23 @ 10:37:22 PM, Trevor Woerner wrote:
> Rename the root partition to "rootfsA" in the off-chance the user may someday
> be interested in implementing some sort of whole-partition update mechanism.
>
> Signed-off-by: Trevor Woerner <twoerner@gmail.com>
> ---
> v2 changes:
> - (none)
> ---
> conf/machine/include/rockchip-extlinux.inc | 2 +-
> wic/rockchip.wks | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Applied to meta-rockchip, master branch.
^ permalink raw reply [flat|nested] 6+ messages in thread[parent not found: <17D24C42F9948747.24662@lists.yoctoproject.org>]
* Re: [yocto-patches] [meta-rockchip][PATCH v2 3/3] u-boot: remove upstreamed dependency
[not found] ` <17D24C42F9948747.24662@lists.yoctoproject.org>
@ 2024-05-26 13:29 ` Trevor Woerner
0 siblings, 0 replies; 6+ messages in thread
From: Trevor Woerner @ 2024-05-26 13:29 UTC (permalink / raw)
To: yocto-patches; +Cc: Quentin Schulz
On Thu 2024-05-23 @ 10:37:24 PM, Trevor Woerner via lists.yoctoproject.org wrote:
> The dependency on pyelftools is now in upstream oe-core making this one
> redundant.
>
> oe-core: 70eca6a5ccf4 ("u-boot: add missing dependency on pyelftools-native")
> Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
> Signed-off-by: Trevor Woerner <twoerner@gmail.com>
> ---
> v2 changes:
> - add a git fixes-style link pointing to the upstream oe-core commit mentioned
> in the commit message
> - added Reviewed-by tag
> ---
> recipes-bsp/u-boot/u-boot_%.bbappend | 2 --
> 1 file changed, 2 deletions(-)
Applied to meta-rockchip, master branch.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-05-26 13:29 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-24 2:37 [meta-rockchip][PATCH v2 1/3] rename root partition Trevor Woerner
2024-05-24 2:37 ` [meta-rockchip][PATCH v2 2/3] specify root partition type Trevor Woerner
2024-05-26 13:28 ` Trevor Woerner
2024-05-24 2:37 ` [meta-rockchip][PATCH v2 3/3] u-boot: remove upstreamed dependency Trevor Woerner
2024-05-26 13:27 ` [meta-rockchip][PATCH v2 1/3] rename root partition Trevor Woerner
[not found] ` <17D24C42F9948747.24662@lists.yoctoproject.org>
2024-05-26 13:29 ` [yocto-patches] [meta-rockchip][PATCH v2 3/3] u-boot: remove upstreamed dependency 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.