mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 12:59:03 +02:00
linux-raspberrypi: Add option for disabling rpi boot logo.
Signed-off-by Zdzisław Krajewski <zdzichucb@gmail.com>
This commit is contained in:
parent
88478c3874
commit
7a7d871cc1
|
@ -95,6 +95,12 @@ this variable in local.conf:
|
|||
|
||||
ENABLE_KGDB = "1"
|
||||
|
||||
## Disable rpi boot logo
|
||||
|
||||
To disable rpi boot logo, set this variable in local.conf:
|
||||
|
||||
DISABLE_RPI_BOOT_LOGO = "1"
|
||||
|
||||
## Boot to U-Boot
|
||||
|
||||
To have u-boot load kernel image, set in your local.conf:
|
||||
|
|
|
@ -23,6 +23,9 @@ CMDLINE ?= "dwc_otg.lpm_enable=0 console=serial0,115200 root=/dev/mmcblk0p2 root
|
|||
# Add the kernel debugger over console kernel command line option if enabled
|
||||
CMDLINE_append = ' ${@base_conditional("ENABLE_KGDB", "1", "kgdboc=serial0,115200", "", d)}'
|
||||
|
||||
# Disable rpi logo on boot
|
||||
CMDLINE_append += ' ${@base_conditional("DISABLE_RPI_BOOT_LOGO", "1", "logo.nologo", "", d)}'
|
||||
|
||||
UDEV_GE_141 ?= "1"
|
||||
|
||||
KERNEL_MODULE_AUTOLOAD += "${@bb.utils.contains("MACHINE_FEATURES", "pitft28r", "stmpe-ts", "", d)}"
|
||||
|
|
Loading…
Reference in New Issue
Block a user