Allow building a cross libkvm for ia64.

This commit is contained in:
Marcel Moolenaar 2013-12-28 23:02:48 +00:00
parent 3f6558c489
commit 4081b25521
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=260023

View file

@ -32,9 +32,15 @@
#include <sys/elf64.h>
#include <sys/mman.h>
#ifndef CROSS_LIBKVM
#include <machine/atomic.h>
#include <machine/bootinfo.h>
#include <machine/pte.h>
#else
#include "../../sys/ia64/include/atomic.h"
#include "../../sys/ia64/include/bootinfo.h"
#include "../../sys/ia64/include/pte.h"
#endif
#include <kvm.h>
#include <limits.h>
@ -163,7 +169,11 @@ _kvm_initvtop(kvm_t *kd)
return (-1);
}
#ifndef CROSS_LIBKVM
kd->vmst->pagesize = getpagesize();
#else
kd->vmst->pagesize = 8192;
#endif
if (_kvm_maphdrs(kd, sizeof(Elf64_Ehdr)) == -1)
return (-1);