mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-06-01 13:09:53 +00:00
raspberrypi3-64: set default kernel to Image
Fixes: 50fd319205 for raspberrypi3-64.
Fixes: #153
For raspberrypi3-64 set default kernel image to "Image".
"zImage" are not supported by arm64 platforms. And ".gz" images are not
handled by bootloader yet.
Signed-off-by: Loys Ollivier <lollivier@baylibre.com>
This commit is contained in:
committed by
Andrei Gherzan
parent
4c09f3e6db
commit
4d3a148b8e
@@ -51,7 +51,7 @@ KERNEL_DEVICETREE ?= " \
|
|||||||
# within u-boot to load the kernel.
|
# within u-boot to load the kernel.
|
||||||
KERNEL_BOOTCMD ??= "bootm"
|
KERNEL_BOOTCMD ??= "bootm"
|
||||||
KERNEL_IMAGETYPE_UBOOT ??= "uImage"
|
KERNEL_IMAGETYPE_UBOOT ??= "uImage"
|
||||||
KERNEL_IMAGETYPE ?= "${@bb.utils.contains('RPI_USE_U_BOOT', '1', '${KERNEL_IMAGETYPE_UBOOT}', 'zImage', d)}"
|
KERNEL_IMAGETYPE ??= "${@bb.utils.contains('RPI_USE_U_BOOT', '1', '${KERNEL_IMAGETYPE_UBOOT}', 'zImage', d)}"
|
||||||
|
|
||||||
MACHINE_FEATURES += "apm usbhost keyboard vfat ext2 screen touchscreen alsa bluetooth wifi sdio"
|
MACHINE_FEATURES += "apm usbhost keyboard vfat ext2 screen touchscreen alsa bluetooth wifi sdio"
|
||||||
|
|
||||||
|
|||||||
@@ -43,4 +43,6 @@ MACHINE_FEATURES_append = " vc4graphics"
|
|||||||
# When u-boot is enabled we need to use the "Image" format and the "booti"
|
# When u-boot is enabled we need to use the "Image" format and the "booti"
|
||||||
# command to load the kernel
|
# command to load the kernel
|
||||||
KERNEL_IMAGETYPE_UBOOT ?= "Image"
|
KERNEL_IMAGETYPE_UBOOT ?= "Image"
|
||||||
|
# "zImage" not supported on arm64 and ".gz" images not supported by bootloader yet
|
||||||
|
KERNEL_IMAGETYPE ?= "Image"
|
||||||
KERNEL_BOOTCMD ?= "booti"
|
KERNEL_BOOTCMD ?= "booti"
|
||||||
|
|||||||
Reference in New Issue
Block a user