kernel: x86: MMU: Build system support for x86 MMU
Makefile rule to create the MMU page tables at boot time. This rule invokes the gen_mmu.py script to create a binary which is then placed into the kernel image using objcopy. Makefile.mmu is included only when CONFIG_X86_MMU is enabled. JIRA: ZEP-2095 Signed-off-by: Adithya Baglody <adithya.nagaraj.baglody@intel.com>
This commit is contained in:
parent
9bbf5335b9
commit
83644a493e
2 changed files with 28 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -893,6 +893,9 @@ WARN_ABOUT_DEPRECATION := $(if $(CONFIG_BOARD_DEPRECATED),echo -e \
|
|||
|
||||
ifeq ($(ARCH),x86)
|
||||
include $(srctree)/arch/x86/Makefile.idt
|
||||
ifeq ($(CONFIG_X86_MMU),y)
|
||||
include $(srctree)/arch/x86/Makefile.mmu
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_GEN_ISR_TABLES),y)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue