mirror of
git://git.yoctoproject.org/meta-rockchip.git
synced 2025-07-05 05:04:47 +02:00
console cleanup
Consolidate all the various console definitions to the common conf/machine/include/rockchip-defaults.inc file and create RK_CONSOLE_BAUD and RK_CONSOLE_DEVICE variables that can be reused in the wks files. The following variables were checked before and after this patch to make sure they are sensible: - SERIAL_CONSOLES - RK_CONSOLE_DEVICE - RK_CONSOLE_BAUD A boot test was performed on the following boards to make sure they all continue to boot to a cmdline: - tinker-board - rock-pi-e - nanopi-m4-2gb - rock64 - rock-pi-4b Signed-off-by: Trevor Woerner <twoerner@gmail.com>
This commit is contained in:
parent
41596bb21b
commit
8cd56cdcd8
|
@ -21,5 +21,3 @@ WKS_FILE_DEPENDS ?= " \
|
|||
IMAGE_BOOT_FILES ?= "\
|
||||
${KERNEL_IMAGETYPE} \
|
||||
"
|
||||
|
||||
SERIAL_CONSOLES = "1500000;ttyS2"
|
||||
|
|
|
@ -7,5 +7,7 @@ require conf/machine/include/tune-cortexa9.inc
|
|||
require conf/machine/include/soc-family.inc
|
||||
require conf/machine/include/rockchip-defaults.inc
|
||||
|
||||
SERIAL_CONSOLES = "115200;ttyS2"
|
||||
|
||||
KBUILD_DEFCONFIG = "multi_v7_defconfig"
|
||||
KERNEL_IMAGETYPE = "zImage"
|
||||
|
|
|
@ -7,5 +7,7 @@ require conf/machine/include/tune-cortexa9.inc
|
|||
require conf/machine/include/soc-family.inc
|
||||
require conf/machine/include/rockchip-defaults.inc
|
||||
|
||||
SERIAL_CONSOLES = "115200;ttyFIQ0"
|
||||
|
||||
KBUILD_DEFCONFIG = "multi_v7_defconfig"
|
||||
KERNEL_IMAGETYPE = "zImage"
|
||||
|
|
|
@ -7,11 +7,11 @@ require conf/machine/include/tune-cortexa17.inc
|
|||
require conf/machine/include/soc-family.inc
|
||||
require conf/machine/include/rockchip-defaults.inc
|
||||
|
||||
SERIAL_CONSOLES = "115200;ttyS2"
|
||||
|
||||
KBUILD_DEFCONFIG ?= "multi_v7_defconfig"
|
||||
KERNEL_IMAGETYPE = "zImage"
|
||||
|
||||
SERIAL_CONSOLES = "115200;ttyS2"
|
||||
|
||||
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot"
|
||||
SPL_BINARY ?= "idbloader.img"
|
||||
|
||||
|
|
|
@ -19,7 +19,5 @@ TFA_BUILD_TARGET = "bl31"
|
|||
UBOOT_SUFFIX ?= "itb"
|
||||
UBOOT_ENTRYPOINT ?= "0x06000000"
|
||||
|
||||
SERIAL_CONSOLES = "1500000;ttyS2"
|
||||
|
||||
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot"
|
||||
SPL_BINARY ?= "idbloader.img"
|
||||
|
|
|
@ -19,8 +19,6 @@ TFA_BUILD_TARGET = "bl31"
|
|||
UBOOT_SUFFIX ?= "itb"
|
||||
UBOOT_ENTRYPOINT ?= "0x06000000"
|
||||
|
||||
SERIAL_CONSOLES = "115200;ttyS2"
|
||||
|
||||
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot"
|
||||
SPL_BINARY ?= "idbloader.img"
|
||||
|
||||
|
|
|
@ -17,6 +17,4 @@ IMAGE_BOOT_FILES ?= "\
|
|||
${KERNEL_IMAGETYPE} \
|
||||
"
|
||||
|
||||
SERIAL_CONSOLES = "1500000;ttyS2"
|
||||
|
||||
MACHINE_EXTRA_RRECOMMENDS += "kernel-modules"
|
||||
|
|
|
@ -21,9 +21,19 @@ XSERVER = " \
|
|||
"
|
||||
|
||||
# misc
|
||||
SERIAL_CONSOLES ?= "1500000;ttyS2"
|
||||
IMAGE_FSTYPES += "ext4"
|
||||
|
||||
# use the first-defined <baud>;<device> pair in SERIAL_CONSOLES
|
||||
# for the console parameter in the wks files
|
||||
RK_CONSOLE_BAUD ?= "${@d.getVar('SERIAL_CONSOLES').split(';')[0]}"
|
||||
RK_CONSOLE_DEVICE ?= "${@d.getVar('SERIAL_CONSOLES').split(';')[1].split()[0]}"
|
||||
|
||||
# boot device (sd-card/emmc)
|
||||
RK_BOOT_DEVICE ??= "mmcblk0"
|
||||
WICVARS_append = " RK_BOOT_DEVICE"
|
||||
|
||||
WICVARS_append = " \
|
||||
RK_BOOT_DEVICE \
|
||||
RK_CONSOLE_BAUD \
|
||||
RK_CONSOLE_DEVICE \
|
||||
"
|
||||
|
|
|
@ -8,5 +8,4 @@
|
|||
|
||||
require conf/machine/include/rk3066.inc
|
||||
|
||||
SERIAL_CONSOLES = "115200;ttyS2"
|
||||
KERNEL_DEVICETREE = "rk3066a-marsboard.dtb"
|
||||
|
|
|
@ -9,5 +9,4 @@
|
|||
|
||||
require conf/machine/include/rk3188.inc
|
||||
|
||||
SERIAL_CONSOLES = "115200;ttyFIQ0"
|
||||
KERNEL_DEVICETREE = "rk3188-radxarock.dtb"
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
include rk3288-boot.wks
|
||||
part / --ondisk ${RK_BOOT_DEVICE} --source rootfs --fstype=ext4 --label root
|
||||
|
||||
bootloader --ptable gpt --append="console=tty1 console=ttyS2,115200n8 rw root=/dev/${RK_BOOT_DEVICE}p7 rootfstype=ext4 init=/sbin/init"
|
||||
bootloader --ptable gpt --append="console=tty1 console=${RK_CONSOLE_DEVICE},${RK_CONSOLE_BAUD}n8 rw root=/dev/${RK_BOOT_DEVICE}p7 rootfstype=ext4 init=/sbin/init"
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
include rk3399-boot.wks
|
||||
part / --ondisk ${RK_BOOT_DEVICE} --source rootfs --fstype=ext4 --label root
|
||||
|
||||
bootloader --ptable gpt --append="console=tty1 console=ttyS2,1500000n8 rw root=/dev/${RK_BOOT_DEVICE}p7 rootfstype=ext4 init=/sbin/init"
|
||||
bootloader --ptable gpt --append="console=tty1 console=${RK_CONSOLE_DEVICE},${RK_CONSOLE_BAUD}n8 rw root=/dev/${RK_BOOT_DEVICE}p7 rootfstype=ext4 init=/sbin/init"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
include rk3328-boot.wks
|
||||
part / --ondisk ${RK_BOOT_DEVICE} --source rootfs --fstype=ext4 --label root
|
||||
|
||||
bootloader --ptable gpt --append="console=tty1 console=ttyS2,1500000n8 rw root=/dev/${RK_BOOT_DEVICE}p7 rootfstype=ext4 init=/sbin/init"
|
||||
bootloader --ptable gpt --append="console=tty1 console=${RK_CONSOLE_DEVICE},${RK_CONSOLE_BAUD}n8 rw root=/dev/${RK_BOOT_DEVICE}p7 rootfstype=ext4 init=/sbin/init"
|
||||
|
|
|
@ -5,4 +5,4 @@ include rk3288-boot.wks
|
|||
|
||||
part / --ondisk ${RK_BOOT_DEVICE} --source rootfs --fstype=ext4 --label root
|
||||
|
||||
bootloader --ptable gpt --append="console=tty1 console=ttyS2,115200n8 rw root=/dev/${RK_BOOT_DEVICE}p7 rootfstype=ext4 init=/sbin/init"
|
||||
bootloader --ptable gpt --append="console=tty1 console=${RK_CONSOLE_DEVICE},${RK_CONSOLE_BAUD}n8 rw root=/dev/${RK_BOOT_DEVICE}p7 rootfstype=ext4 init=/sbin/init"
|
||||
|
|
|
@ -4,5 +4,5 @@
|
|||
include rk3288-boot.wks
|
||||
part / --ondisk ${RK_BOOT_DEVICE} --source rootfs --fstype=ext4 --label root
|
||||
|
||||
bootloader --ptable gpt --append="console=tty1 console=ttyS2,115200n8 rw root=/dev/${RK_BOOT_DEVICE}p7 rootfstype=ext4 init=/sbin/init"
|
||||
bootloader --ptable gpt --append="console=tty1 console=${RK_CONSOLE_DEVICE},${RK_CONSOLE_BAUD}n8 rw root=/dev/${RK_BOOT_DEVICE}p7 rootfstype=ext4 init=/sbin/init"
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user