summaryrefslogtreecommitdiffstats
path: root/bsps/x86_64/amd64/start/bspstart.c
diff options
context:
space:
mode:
authorAmaan Cheval <amaan.cheval@gmail.com>2018-08-13 16:03:12 +0530
committerJoel Sherrill <joel@rtems.org>2018-08-13 10:48:20 -0500
commit4544749e3c163c511a9a28992b3ac429515c0a5a (patch)
tree34043f7607ab3931634efa12da7b1f922cda4479 /bsps/x86_64/amd64/start/bspstart.c
parentbsps/x86_64: Reduce default RamSize to 1GiB (diff)
downloadrtems-4544749e3c163c511a9a28992b3ac429515c0a5a.tar.bz2
bsps/x86_64: Add paging support with 1GiB super pages
Updates #2898.
Diffstat (limited to 'bsps/x86_64/amd64/start/bspstart.c')
-rw-r--r--bsps/x86_64/amd64/start/bspstart.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/bsps/x86_64/amd64/start/bspstart.c b/bsps/x86_64/amd64/start/bspstart.c
index 784748ce3f..5a5b46bcec 100644
--- a/bsps/x86_64/amd64/start/bspstart.c
+++ b/bsps/x86_64/amd64/start/bspstart.c
@@ -26,7 +26,9 @@
#include <bsp.h>
#include <bsp/bootcard.h>
+#include <libcpu/page.h>
void bsp_start(void)
{
+ paging_init();
}