mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-18 18:56:29 +00:00
hw_x86_64: Enable Physical Address Extension (PAE)
This is a prerequisite for IA-32e mode.
This commit is contained in:
parent
8c9b79fab0
commit
be430b9648
@ -27,6 +27,11 @@
|
||||
.global _start
|
||||
_start:
|
||||
|
||||
/* Enable PAE (prerequisite for IA-32e mode) */
|
||||
movl %cr4, %eax
|
||||
btsl $5, %eax
|
||||
movl %eax, %cr4
|
||||
|
||||
/*
|
||||
* Install initial temporary environment that is replaced later by the
|
||||
* environment that init_main_thread creates.
|
||||
|
Loading…
Reference in New Issue
Block a user