OGAWA Hirofumi <[EMAIL PROTECTED]> writes: > Those are to get closer to kernel. rename of ext2_* to tux_*, and > tux_sb() stuff. > > static-http://userweb.kernel.org/~hirofumi/tux3/ > > Please review it. > > With those, we can compile files almost all in kernel if we add a few > functions (doesn't work yet though :)). Then, I hope we can do more > interesting stuff in kernel well.
I was missing xattr.c to compile. Fixed Makefile is the following, and I also pushed some more patches for xattr.c. Please review and pull it too. diff -puN fs/tux3/Makefile~makefile fs/tux3/Makefile --- tux3fs/fs/tux3/Makefile~makefile 2008-11-19 16:15:08.000000000 +0900 +++ tux3fs-hirofumi/fs/tux3/Makefile 2008-11-19 16:15:08.000000000 +0900 @@ -1,3 +1,4 @@ obj-$(CONFIG_TUX3) += tux3.o -tux3-objs += inode.o super.o -EXTRA_CFLAGS += -std=gnu99 -Wno-declaration-after-statement \ No newline at end of file +tux3-objs += balloc.o btree.o dir.o dleaf.o filemap.o hexdump.o iattr.o \ + ileaf.o inode.o super.o xattr.o +EXTRA_CFLAGS += -std=gnu99 -Wno-declaration-after-statement _ -- OGAWA Hirofumi <[EMAIL PROTECTED]> _______________________________________________ Tux3 mailing list [email protected] http://tux3.org/cgi-bin/mailman/listinfo/tux3
