summaryrefslogtreecommitdiffstats
path: root/exfat/mkfs
diff options
context:
space:
mode:
authorbigbiff bigbiff <bigbiff@teamw.in>2013-01-28 14:14:25 +0100
committerDees_Troy <dees_troy@teamw.in>2013-01-28 16:24:04 +0100
commitca829c4b81bfcdb7ea676694c5cfd0b79ccbb646 (patch)
treec182c6075b31a4536edcfa41f290b5e7e6caa8c2 /exfat/mkfs
parentMerge "Pull fix for exFAT from original source" into twrp2.4 (diff)
downloadandroid_bootable_recovery-ca829c4b81bfcdb7ea676694c5cfd0b79ccbb646.tar
android_bootable_recovery-ca829c4b81bfcdb7ea676694c5cfd0b79ccbb646.tar.gz
android_bootable_recovery-ca829c4b81bfcdb7ea676694c5cfd0b79ccbb646.tar.bz2
android_bootable_recovery-ca829c4b81bfcdb7ea676694c5cfd0b79ccbb646.tar.lz
android_bootable_recovery-ca829c4b81bfcdb7ea676694c5cfd0b79ccbb646.tar.xz
android_bootable_recovery-ca829c4b81bfcdb7ea676694c5cfd0b79ccbb646.tar.zst
android_bootable_recovery-ca829c4b81bfcdb7ea676694c5cfd0b79ccbb646.zip
Diffstat (limited to 'exfat/mkfs')
-rw-r--r--exfat/mkfs/cbm.c2
-rw-r--r--exfat/mkfs/cbm.h2
-rw-r--r--exfat/mkfs/fat.c2
-rw-r--r--exfat/mkfs/fat.h2
-rw-r--r--exfat/mkfs/main.c4
-rw-r--r--exfat/mkfs/mkexfat.c2
-rw-r--r--exfat/mkfs/mkexfat.h2
-rw-r--r--exfat/mkfs/rootdir.c2
-rw-r--r--exfat/mkfs/rootdir.h2
-rw-r--r--exfat/mkfs/uct.c2
-rw-r--r--exfat/mkfs/uct.h2
-rw-r--r--exfat/mkfs/uctc.c2
-rw-r--r--exfat/mkfs/uctc.h2
-rw-r--r--exfat/mkfs/vbr.c2
-rw-r--r--exfat/mkfs/vbr.h2
15 files changed, 16 insertions, 16 deletions
diff --git a/exfat/mkfs/cbm.c b/exfat/mkfs/cbm.c
index 6d948b4cd..f255fb10a 100644
--- a/exfat/mkfs/cbm.c
+++ b/exfat/mkfs/cbm.c
@@ -2,7 +2,7 @@
cbm.c (09.11.10)
Clusters Bitmap creation code.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/cbm.h b/exfat/mkfs/cbm.h
index 176504c0f..64883c730 100644
--- a/exfat/mkfs/cbm.h
+++ b/exfat/mkfs/cbm.h
@@ -2,7 +2,7 @@
cbm.h (09.11.10)
Clusters Bitmap creation code.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/fat.c b/exfat/mkfs/fat.c
index 82feff8ba..158f59f6d 100644
--- a/exfat/mkfs/fat.c
+++ b/exfat/mkfs/fat.c
@@ -2,7 +2,7 @@
fat.c (09.11.10)
File Allocation Table creation code.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/fat.h b/exfat/mkfs/fat.h
index 8d7b86c10..f7eb395cf 100644
--- a/exfat/mkfs/fat.h
+++ b/exfat/mkfs/fat.h
@@ -2,7 +2,7 @@
fat.h (09.11.10)
File Allocation Table creation code.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/main.c b/exfat/mkfs/main.c
index 9feb750ee..97e465a5b 100644
--- a/exfat/mkfs/main.c
+++ b/exfat/mkfs/main.c
@@ -2,7 +2,7 @@
main.c (15.08.10)
Creates exFAT file system.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -242,7 +242,7 @@ int main(int argc, char* argv[])
}
else if (strcmp(*pp, "-v") == 0)
{
- puts("Copyright (C) 2011, 2012 Andrew Nayenko");
+ puts("Copyright (C) 2011-2013 Andrew Nayenko");
return 0;
}
else if (spec == NULL)
diff --git a/exfat/mkfs/mkexfat.c b/exfat/mkfs/mkexfat.c
index 7018aaae2..aeb48a26c 100644
--- a/exfat/mkfs/mkexfat.c
+++ b/exfat/mkfs/mkexfat.c
@@ -2,7 +2,7 @@
mkexfat.c (22.04.12)
FS creation engine.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/mkexfat.h b/exfat/mkfs/mkexfat.h
index 4634d0d95..47a13b00b 100644
--- a/exfat/mkfs/mkexfat.h
+++ b/exfat/mkfs/mkexfat.h
@@ -2,7 +2,7 @@
mkexfat.h (09.11.10)
FS creation engine.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/rootdir.c b/exfat/mkfs/rootdir.c
index ddc476f4c..4890e120f 100644
--- a/exfat/mkfs/rootdir.c
+++ b/exfat/mkfs/rootdir.c
@@ -2,7 +2,7 @@
rootdir.c (09.11.10)
Root directory creation code.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/rootdir.h b/exfat/mkfs/rootdir.h
index 64e533243..f3e7843ac 100644
--- a/exfat/mkfs/rootdir.h
+++ b/exfat/mkfs/rootdir.h
@@ -2,7 +2,7 @@
rootdir.h (09.11.10)
Root directory creation code.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/uct.c b/exfat/mkfs/uct.c
index e6fd2c02e..1d22b095d 100644
--- a/exfat/mkfs/uct.c
+++ b/exfat/mkfs/uct.c
@@ -2,7 +2,7 @@
uct.c (09.11.10)
Upper Case Table creation code.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/uct.h b/exfat/mkfs/uct.h
index 4b4f024cb..f726debb1 100644
--- a/exfat/mkfs/uct.h
+++ b/exfat/mkfs/uct.h
@@ -2,7 +2,7 @@
uct.h (09.11.10)
Upper Case Table creation code.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/uctc.c b/exfat/mkfs/uctc.c
index 573981168..b4358d999 100644
--- a/exfat/mkfs/uctc.c
+++ b/exfat/mkfs/uctc.c
@@ -2,7 +2,7 @@
uctc.c (30.04.12)
Upper Case Table contents.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/uctc.h b/exfat/mkfs/uctc.h
index 67d2bba6b..499a60ed1 100644
--- a/exfat/mkfs/uctc.h
+++ b/exfat/mkfs/uctc.h
@@ -2,7 +2,7 @@
uctc.h (30.10.10)
Upper Case Table declaration.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/vbr.c b/exfat/mkfs/vbr.c
index 80e7a61e6..935c96bee 100644
--- a/exfat/mkfs/vbr.c
+++ b/exfat/mkfs/vbr.c
@@ -2,7 +2,7 @@
vbr.c (09.11.10)
Volume Boot Record creation code.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/exfat/mkfs/vbr.h b/exfat/mkfs/vbr.h
index c3a6362e0..738d8d763 100644
--- a/exfat/mkfs/vbr.h
+++ b/exfat/mkfs/vbr.h
@@ -2,7 +2,7 @@
vbr.h (09.11.10)
Volume Boot Record creation code.
- Copyright (C) 2011, 2012 Andrew Nayenko
+ Copyright (C) 2011-2013 Andrew Nayenko
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by