Merge pull request #5507 from HiassofT/le10-rpi4-kernel-arm64

RPi4: switch to 64bit kernel
This commit is contained in:
CvH 2021-07-23 12:11:52 +02:00 committed by GitHub
commit 0b9677f685
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6389 additions and 0 deletions

View File

@ -2,6 +2,8 @@
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
# WARNING: DO NOT EDIT THIS FILE - IT WILL BE OVERWRITTEN WHEN UPGRADING!
arm_64bit=1
kernel=kernel.img
dtoverlay=vc4-kms-v3d,cma-512
dtoverlay=rpivid-v4l2
dtoverlay=

File diff suppressed because it is too large Load Diff

View File

@ -13,3 +13,14 @@
# set the addon project
ADDON_PROJECT="ARMv8"
# build 64bit kernel
case $TARGET_ARCH in
arm)
TARGET_KERNEL_ARCH="arm64"
TARGET_KERNEL_PATCH_ARCH="aarch64"
;;
esac
# Kernel target
KERNEL_TARGET="Image"