commit | 480f17691d1c846ea8d6fc1d6b971d6fcd92503c | [log] [tgz] |
---|---|---|
author | swissChili <swisschili@fastmail.com> | Mon Jul 26 22:17:34 2021 -0700 |
committer | swissChili <swisschili@fastmail.com> | Mon Jul 26 22:17:34 2021 -0700 |
tree | a64d9424042f7d61d4cec14cff8ed30ecbea6ba3 | |
parent | d98781b75eb3eed1997b9c8e6befd3381f81b1cf [diff] [blame] |
Add ext2 VFS implementation
diff --git a/src/kernel/dri/fs/ext2/Jmk b/src/kernel/dri/fs/ext2/Jmk index aac4c5c..8ad9344 100644 --- a/src/kernel/dri/fs/ext2/Jmk +++ b/src/kernel/dri/fs/ext2/Jmk
@@ -1,3 +1,5 @@ +# -*- mode:makefile -*- + init(ext2, ext2.a) preset(freestanding) @@ -10,7 +12,7 @@ CFLAGS += -I$(ROOT)/include/kernel -OBJECTS = ext2.o +OBJECTS = ext2.o ext2_vfs.o type(static_lib)