Changeset 81dd2ed in mainline for uspace/srv/fs/ext4fs
- Timestamp:
- 2017-05-10T19:47:31Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 71fe4723
- Parents:
- fcb0d76
- Location:
- uspace/srv/fs/ext4fs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/ext4fs/Makefile
rfcb0d76 r81dd2ed 28 28 29 29 USPACE_PREFIX = ../../.. 30 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBFS_PREFIX)/libfs.a \ 31 $(LIBEXT4_PREFIX)/libext4.a $(LIBCRYPTO_PREFIX)/libcrypto.a 30 LIBS = \ 31 $(LIBEXT4_PREFIX)/libext4.a \ 32 $(LIBBLOCK_PREFIX)/libblock.a \ 33 $(LIBFS_PREFIX)/libfs.a \ 34 $(LIBCRYPTO_PREFIX)/libcrypto.a 35 32 36 EXTRA_CFLAGS += -I$(LIBBLOCK_PREFIX) -I$(LIBFS_PREFIX) -I$(LIBEXT4_PREFIX)/include -I$(LIBCRYPTO_PREFIX) 33 37 BINARY = ext4fs … … 35 39 36 40 SOURCES = \ 37 ext4fs.c \ 38 ext4fs_ops.c 41 ext4fs.c 39 42 40 43 include $(USPACE_PREFIX)/Makefile.common -
uspace/srv/fs/ext4fs/ext4fs.c
rfcb0d76 r81dd2ed 42 42 #include <task.h> 43 43 #include <ipc/services.h> 44 #include "ext4 fs.h"44 #include "ext4/ops.h" 45 45 #include "../../vfs/vfs.h" 46 46
Note:
See TracChangeset
for help on using the changeset viewer.