diff --git a/documentation/bsp-guide/bsp.xml b/documentation/bsp-guide/bsp.xml
index 0327f6db62..1d37a443ec 100644
--- a/documentation/bsp-guide/bsp.xml
+++ b/documentation/bsp-guide/bsp.xml
@@ -1902,10 +1902,11 @@
IMAGE_INSTALL_append = " kernel-devicetree kernel-image-zimage"
do_image_wic[depends] += "mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot"
- SERIAL_CONSOLES = "115200;ttyO0"
+ SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyO0"
+ SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}"
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
- PREFERRED_VERSION_linux-yocto ?= "4.12%"
+ PREFERRED_VERSION_linux-yocto ?= "5.0%"
KERNEL_IMAGETYPE = "zImage"
KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb am335x-bonegreen.dtb"
@@ -1913,13 +1914,13 @@
SPL_BINARY = "MLO"
UBOOT_SUFFIX = "img"
- UBOOT_MACHINE = "am335x_boneblack_config"
+ UBOOT_MACHINE = "am335x_evm_defconfig"
UBOOT_ENTRYPOINT = "0x80008000"
UBOOT_LOADADDRESS = "0x80008000"
MACHINE_FEATURES = "usbgadget usbhost vfat alsa"
- IMAGE_BOOT_FILES ?= "u-boot.${UBOOT_SUFFIX} MLO"
+ IMAGE_BOOT_FILES ?= "u-boot.${UBOOT_SUFFIX} MLO zImage am335x-bone.dtb am335x-boneblack.dtb am335x-bonegreen.dtb"
The variables used to configure the machine define
machine-specific properties.
@@ -1948,7 +1949,7 @@
In this case, the recipe that provides
"virtual/xserver" is "xserver-xorg", which
exists in
- poky/meta/recipes-graphics/xserver-xorg.
+ poky/meta/recipes-graphics/xorg-xserver.
XSERVER:
@@ -2061,7 +2062,7 @@
PREFERRED_VERSION_linux-yocto:
Defines the version of the recipe used
- to build the kernel, which is "4.12" in this
+ to build the kernel, which is "5.0" in this
case.
@@ -2072,8 +2073,8 @@
KERNEL_DEVICETREE:
- The name of the generated Linux kernel device
- tree (i.e. the .dtb) file.
+ The names of the generated Linux kernel device
+ trees (i.e. the *.dtb) files.
All the device trees for the various BeagleBone
devices are included.