mirror of
git://git.yoctoproject.org/meta-rockchip.git
synced 2025-07-04 20:54:48 +02:00

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>
28 lines
714 B
HTML
28 lines
714 B
HTML
# meta-rockchip default settings
|
|
|
|
# kernel
|
|
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
|
|
KCONFIG_MODE ?= "alldefconfig"
|
|
|
|
# xserver
|
|
XSERVER = " \
|
|
xserver-xorg \
|
|
xserver-xorg-utils \
|
|
xserver-xorg-xvfb \
|
|
xserver-xorg-extension-glx \
|
|
xserver-xorg-module-libwfb \
|
|
xserver-xorg-module-exa \
|
|
xf86-video-modesetting \
|
|
xf86-input-evdev \
|
|
xf86-input-mouse \
|
|
"
|
|
|
|
# misc
|
|
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"
|