arm:refactor move pagetable to the common directory.
Change-Id: Ic3178241f86156f729f016017f61017653ddbd23
This commit is contained in:
parent
65ceab5261
commit
84c0f81c09
4 changed files with 1 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
PROG= vm
|
PROG= vm
|
||||||
SRCS= main.c alloc.c utility.c exit.c fork.c break.c \
|
SRCS= main.c alloc.c utility.c exit.c fork.c break.c \
|
||||||
mmap.c slaballoc.c region.c pagefaults.c \
|
mmap.c slaballoc.c region.c pagefaults.c pagetable.c \
|
||||||
rs.c queryexit.c pb.c regionavl.c \
|
rs.c queryexit.c pb.c regionavl.c \
|
||||||
mem_anon.c mem_directphys.c mem_anon_contig.c mem_shared.c \
|
mem_anon.c mem_directphys.c mem_anon_contig.c mem_shared.c \
|
||||||
mem_cache.c cache.c vfs.c mem_file.c fdref.c acl.c
|
mem_cache.c cache.c vfs.c mem_file.c fdref.c acl.c
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
.include <bsd.own.mk>
|
.include <bsd.own.mk>
|
||||||
|
|
||||||
#Arch-specific sources
|
#Arch-specific sources
|
||||||
.PATH: ${.CURDIR}/arch/i386
|
|
||||||
SRCS+= pagetable.c
|
|
||||||
|
|
|
@ -2,4 +2,3 @@
|
||||||
|
|
||||||
#Arch-specific sources
|
#Arch-specific sources
|
||||||
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}
|
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}
|
||||||
SRCS+= pagetable.c #util.S
|
|
||||||
|
|
Loading…
Reference in a new issue