Export the actual KERNBASE to the symbol table. We can use nlist() to get

this without having to second guess it in userland.
This commit is contained in:
Peter Wemm 2001-08-24 08:29:54 +00:00
parent 5897d41109
commit c1c2006ca7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=82262
3 changed files with 18 additions and 0 deletions

View File

@ -100,6 +100,12 @@
.set lapic,SMP_prvspace + (NPTEPG-1) * PAGE_SIZE
#endif /* SMP */
/*
* Compiled KERNBASE location
*/
.globl kernbase
.set kernbase,KERNBASE
/*
* Globals
*/

View File

@ -100,6 +100,12 @@
.set lapic,SMP_prvspace + (NPTEPG-1) * PAGE_SIZE
#endif /* SMP */
/*
* Compiled KERNBASE location
*/
.globl kernbase
.set kernbase,KERNBASE
/*
* Globals
*/

View File

@ -100,6 +100,12 @@
.set lapic,SMP_prvspace + (NPTEPG-1) * PAGE_SIZE
#endif /* SMP */
/*
* Compiled KERNBASE location
*/
.globl kernbase
.set kernbase,KERNBASE
/*
* Globals
*/