From 8b750998d28221d31998f6025a469aef4420b586 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sun, 3 Apr 2022 15:09:44 -0700 Subject: [PATCH] Kernel: Fix aarch64 kernel build on case sensitive file systems The dummy file has the wrong case, so it would fail to be found on case sensitive file systems. --- Kernel/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt index b668c688919c4b..0452c6c19f083b 100644 --- a/Kernel/CMakeLists.txt +++ b/Kernel/CMakeLists.txt @@ -404,7 +404,7 @@ else() Arch/aarch64/UART.cpp Arch/aarch64/Utils.cpp - Arch/aarch64/Dummy.cpp + Arch/aarch64/dummy.cpp # Preload specific Arch/aarch64/init.cpp