mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
Includes: - drop local rtlwifi patches - Amlogic: disable lock debugging - Amlogic: disable some ARMv8 features not present in Amlogic SoCs Amlogic 64-bit SoC have only ARMv8.1 cores and do not support later rev features. Disable them to save a few KBs from kernel size. - Amlogic: disable unused errata Disable errata for cores not present in Amlogic's SoCs. - Amlogic: set THP to madvise - Amlogic: enable PSCI CPUIdle driver With additional entries in device tree, this can save approximately 30-40mW when idling. - Amlogic: set preemption to voluntary Aligns Amlogic with (most) other LE projects. - Amlogic: increase Linux kernel tick-rate to 300Hz Aligns Amlogic with (most) other projects. - Amlogic: disable SCHED_SMT Amlogic SoCs do not have hyperthreading, disable it to save some space - Amlogic: adjust kernel config for Docker Kernel config adjusted with tools/check_kernel_config script - enable kernel options IP_SET and NETFILTER_XT_SET - enable kernel based RTW88_8821AU and RTW88_8812AU - drop now upstream 6.14 lzma patch - enable kernel options CONFIG_IP_NF_RAW and CONFIG_IP6_NF_RAW Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
31 lines
961 B
Diff
31 lines
961 B
Diff
From 596472232f2a08c7dd62597c9c041be4333e22b0 Mon Sep 17 00:00:00 2001
|
|
From: Christian Hewitt <christianshewitt@gmail.com>
|
|
Date: Sat, 6 Nov 2021 13:01:08 +0000
|
|
Subject: [PATCH 07/37] LOCAL: arm64: dts: meson: add rtc/vrtc aliases to
|
|
Khadas VIM2
|
|
|
|
Add aliases to ensure the vrtc time (which normally proves first) is /dev/rtc1
|
|
while the onboard rtc chip claims /dev/rtc0.
|
|
|
|
Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
|
|
---
|
|
arch/arm64/boot/dts/amlogic/meson-gxm-khadas-vim2.dts | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/arch/arm64/boot/dts/amlogic/meson-gxm-khadas-vim2.dts b/arch/arm64/boot/dts/amlogic/meson-gxm-khadas-vim2.dts
|
|
index 2a09b3d550e2..8a89940869b0 100644
|
|
--- a/arch/arm64/boot/dts/amlogic/meson-gxm-khadas-vim2.dts
|
|
+++ b/arch/arm64/boot/dts/amlogic/meson-gxm-khadas-vim2.dts
|
|
@@ -18,6 +18,8 @@ / {
|
|
aliases {
|
|
serial0 = &uart_AO;
|
|
serial2 = &uart_AO_B;
|
|
+ rtc0 = &rtc;
|
|
+ rtc1 = &vrtc;
|
|
};
|
|
|
|
chosen {
|
|
--
|
|
2.34.1
|
|
|