File tree Expand file tree Collapse file tree 8 files changed +4
-16
lines changed
Expand file tree Collapse file tree 8 files changed +4
-16
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,6 @@ if(CMAKE_CROSSCOMPILING)
113113 # Build & link kernel and process binaries
114114 #---------------------------------------------------------------------------
115115 add_subdirectory (src/bootloader/${ARCH} )
116- add_subdirectory (src/common)
117116 add_subdirectory (src/kernel)
118117 add_subdirectory (src/kernel/${ARCH} )
119118 add_subdirectory (src/apps)
File renamed without changes.
Original file line number Diff line number Diff line change 1212#include <types.h>
1313#include <utils.h>
1414#include <config.h>
15- #include <common/ bitmap.h>
15+ #include <bitmap.h>
1616
1717typedef enum KernelPhysicalMemoryRegions
1818{
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ set(KERNEL_SOURCES
1212 ${CMAKE_CURRENT_SOURCE_DIR} /salloc.c
1313 ${CMAKE_CURRENT_SOURCE_DIR} /vmm.c
1414 ${CMAKE_CURRENT_SOURCE_DIR} /handle.c
15+ ${CMAKE_CURRENT_SOURCE_DIR} /bitmap.c
1516 )
1617
1718 if (MOS_GRAPHICS_ENABLED)
Original file line number Diff line number Diff line change 2828#include <utils.h>
2929#include <types.h>
3030#include <kerror.h>
31- #include <common/ bitmap.h>
31+ #include <bitmap.h>
3232
3333/***************************************************************************************************
3434 * Checks if a section in the bitmap exists starting at index `indexAt` having at least `len`
Original file line number Diff line number Diff line change 66
77#include <stdbool.h>
88#include <types.h>
9- #include <common/bitmap.h>
109#include <graphics.h>
1110#include <config.h>
1211#include <kernel.h>
Original file line number Diff line number Diff line change 1313#include <types.h>
1414#include <kdebug.h>
1515#include <kerror.h>
16- #include <common/ bitmap.h>
16+ #include <bitmap.h>
1717#include <utils.h>
1818#include <kernel.h>
1919#include <memloc.h>
You can’t perform that action at this time.
0 commit comments