From 1e4c01064351d2f8ce3d55a173c5022d2601ad40 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 25 Dec 2020 02:14:56 +0100 Subject: LibELF: Remove ELF::Loader and move everyone to ELF::Image This commit gets rid of ELF::Loader entirely since its very ambiguous purpose was actually to load executables for the kernel, and that is now handled by the kernel itself. This patch includes some drive-by cleanup in LibDebug and CrashDaemon enabled by the fact that we no longer need to keep the ref-counted ELF::Loader around. --- Kernel/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) (limited to 'Kernel/CMakeLists.txt') diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt index c5497e7303..8ac692e840 100644 --- a/Kernel/CMakeLists.txt +++ b/Kernel/CMakeLists.txt @@ -224,7 +224,6 @@ set(AK_SOURCES set(ELF_SOURCES ../Libraries/LibELF/Image.cpp - ../Libraries/LibELF/Loader.cpp ../Libraries/LibELF/Validation.cpp ) -- cgit v1.2.3