mirror of
git://git.yoctoproject.org/meta-rockchip.git
synced 2025-07-04 20:54:48 +02:00
specify root partition type
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>
This commit is contained in:
parent
840ebc5121
commit
27664598b8
|
@ -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"
|
||||
|
|
|
@ -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 \
|
||||
"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user