aboutsummaryrefslogtreecommitdiffstats
path: root/testing/unetbootin/allow-ntfs.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/unetbootin/allow-ntfs.patch')
-rw-r--r--testing/unetbootin/allow-ntfs.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/unetbootin/allow-ntfs.patch b/testing/unetbootin/allow-ntfs.patch
deleted file mode 100644
index d8e72c1912..0000000000
--- a/testing/unetbootin/allow-ntfs.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- src.orig/unetbootin.cpp
-+++ src/unetbootin.cpp
-@@ -572,7 +572,7 @@
- {
- if (!volidcommand.isEmpty())
- {
-- if (QString(callexternapp(volidcommand, QString("-t %2").arg(usbfileinfoL.at(i).canonicalFilePath()))).contains(QRegExp("(vfat|ext2|ext3|ext4)")))
-+ if (QString(callexternapp(volidcommand, QString("-t %2").arg(usbfileinfoL.at(i).canonicalFilePath()))).contains(QRegExp("(vfat|ntfs|ext2|ext3|ext4)")))
- fulldrivelist.append(usbfileinfoL.at(i).canonicalFilePath());
- }
- else
-@@ -580,7 +580,7 @@
- QString tstrblk = QString(callexternapp(blkidcommand, QString("-s TYPE %2").arg(usbfileinfoL.at(i).canonicalFilePath())));
- if (tstrblk.contains('='))
- {
-- if (tstrblk.section('=', -1, -1).remove('"').contains(QRegExp("(vfat|ext2|ext3|ext4)")))
-+ if (tstrblk.section('=', -1, -1).remove('"').contains(QRegExp("(vfat|ntfs|ext2|ext3|ext4)")))
- fulldrivelist.append(usbfileinfoL.at(i).canonicalFilePath());
- }
- }