diff options
Diffstat (limited to 'source/installer')
-rw-r--r-- | source/installer/ChangeLog.txt | 4 | ||||
-rwxr-xr-x | source/installer/build_installer.sh | 2 | ||||
-rwxr-xr-x | source/installer/sources/initrd/usr/lib/setup/SeTDOS | 4 |
3 files changed, 8 insertions, 2 deletions
diff --git a/source/installer/ChangeLog.txt b/source/installer/ChangeLog.txt index eb6372f08..0e7466d63 100644 --- a/source/installer/ChangeLog.txt +++ b/source/installer/ChangeLog.txt @@ -1,3 +1,7 @@ +Wed Nov 3 19:36:08 UTC 2021 + Added ntfs3.ko.xz module. + SeTDOS: use FS type ntfs3 for NTFS partitions in /etc/fstab. ++--------------------------+ Mon Oct 11 17:33:21 UTC 2021 /etc/issue: Don't tell people to enter TERM=vt100 if they do not have a color monitor. That's so last century. diff --git a/source/installer/build_installer.sh b/source/installer/build_installer.sh index 111036180..aa271f703 100755 --- a/source/installer/build_installer.sh +++ b/source/installer/build_installer.sh @@ -1531,7 +1531,7 @@ for ind in $(seq 0 $((${#KERNELS[*]} -1)) ); do cp -a fs.orig/{udf*,isofs*,cifs*,ext*,fat*,fscache,jfs*,lockd,nfs,nfs_common,jbd*,nls,reiserfs,xfs,binfmt*,mbcache*,exportfs*} fs/ ;; *86*) - cp -a fs.orig/{cifs*,fscache,lockd,nfs,nfs_common} fs/ + cp -a fs.orig/{cifs*,fscache,lockd,nfs,nfs_common,ntfs3} fs/ ;; *) cp -a fs.orig/cifs* fs/ diff --git a/source/installer/sources/initrd/usr/lib/setup/SeTDOS b/source/installer/sources/initrd/usr/lib/setup/SeTDOS index 0a7098200..bb87022ad 100755 --- a/source/installer/sources/initrd/usr/lib/setup/SeTDOS +++ b/source/installer/sources/initrd/usr/lib/setup/SeTDOS @@ -152,7 +152,9 @@ EOF if [ "$FS_UMASK" = "1" ]; then exit 1 else - FS_TYPE="$TYPE" + #FS_TYPE="$TYPE" + # Use the new ntfs3 type: + FS_TYPE="ntfs3" fi else # Must be fat or exfat: fat_security |