mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
e7a1033b94
- Support journals ($LogFile) which have been modified by chkdsk. This means users can boot into Windows after we marked the volume dirty. The Windows boot will run chkdsk and then reboot. The user can then immediately boot into Linux rather than having to do a full Windows boot first before rebooting into Linux and we will recognize such a journal and empty it as it is clean by definition. - Support journals ($LogFile) with only one restart page as well as journals with two different restart pages. We sanity check both and either use the only sane one or the more recent one of the two in the case that both are valid. Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
20 lines
467 B
Makefile
20 lines
467 B
Makefile
# Rules for making the NTFS driver.
|
|
|
|
obj-$(CONFIG_NTFS_FS) += ntfs.o
|
|
|
|
ntfs-objs := aops.o attrib.o collate.o compress.o debug.o dir.o file.o \
|
|
index.o inode.o mft.o mst.o namei.o runlist.o super.o sysctl.o \
|
|
unistr.o upcase.o
|
|
|
|
EXTRA_CFLAGS = -DNTFS_VERSION=\"2.1.24-WIP\"
|
|
|
|
ifeq ($(CONFIG_NTFS_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|
|
ifeq ($(CONFIG_NTFS_RW),y)
|
|
EXTRA_CFLAGS += -DNTFS_RW
|
|
|
|
ntfs-objs += bitmap.o lcnalloc.o logfile.o quota.o usnjrnl.o
|
|
endif
|