Skip to content

Commit 120bf8e

Browse files
lab4-1
1 parent 9248931 commit 120bf8e

24 files changed

+1217
-620
lines changed

Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ vmlinux_elf := kernel.elf
77
vmlinux_img := kernel8.img
88
link_script := kernel.lds
99

10-
modules := boot drivers init lib mm
10+
modules := boot drivers init lib mm user
1111
objects := $(boot_dir)/*.o \
1212
$(init_dir)/*.o \
1313
$(drivers_dir)/rpi3/*.o \
1414
$(lib_dir)/*.o \
15-
$(mm_dir)/*.o
15+
$(mm_dir)/*.o \
16+
user/*.o
1617

1718
.PHONY: all $(modules) clean debug run
1819

0 commit comments

Comments
 (0)