From 8e0fe174fee43677b27613ed8d8695689c87f1d7 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 14 Aug 2010 01:56:13 +0000 Subject: Beginning to add on-demand paging logic git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2850 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/sched/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'nuttx/sched/Makefile') diff --git a/nuttx/sched/Makefile b/nuttx/sched/Makefile index ec9923e1c..40392504c 100644 --- a/nuttx/sched/Makefile +++ b/nuttx/sched/Makefile @@ -139,10 +139,15 @@ ifeq ($(CONFIG_SCHED_WORKQUEUE),y) WORK_SRCS = work_thread.c work_queue.c work_cancel.c endif +ifeq ($(CONFIG_PAGING),y) +PGFILL_SRCS = pg_miss.c +endif + IRQ_SRCS = irq_initialize.c irq_attach.c irq_dispatch.c irq_unexpectedisr.c CSRCS = $(MISC_SRCS) $(TSK_SRCS) $(SCHED_SRCS) $(WDOG_SRCS) $(TIME_SRCS) \ - $(SEM_SRCS) $(TIMER_SRCS) $(WORK_SRCS) $(IRQ_SRCS) + $(SEM_SRCS) $(TIMER_SRCS) $(WORK_SRCS) $(PGFILL_SRCS) $(IRQ_SRCS) + ifneq ($(CONFIG_DISABLE_CLOCK),y) CSRCS += $(CLOCK_SRCS) endif -- cgit v1.2.3