forked from Thomas-Tsai/partclone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2827 lines (1705 loc) · 105 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2013-03-28 Thomas Tsai <[email protected]>
update rules for squeeze
2013-02-21 Thomas Tsai <[email protected]>
0.2.59
2013-02-20 Thomas Tsai <[email protected]>
add count_used_block
update git ignore
fix minix version 3
2013-02-06 Thomas Tsai <[email protected]>
fix minix clone error
2013-02-05 Thomas Tsai <[email protected]>
initial minix clone
2013-01-30 Thomas Tsai <[email protected]>
add option w, --skip_write_error to skip block write erro and keep restoring data
2013-01-22 Thomas Tsai <[email protected]>
fix path of fallmbr
0.2.58
2013-01-21 Thomas Tsai <[email protected]>
update small screen issue
2013-01-18 Thomas Tsai <[email protected]>
add test file
try to fix terminal size issue
2013-01-14 Thomas Tsai <[email protected]>
package failmbr
update makefile for fail-mbr
0.2.57
update jfs
2013-01-10 Thomas Tsai <[email protected]>
fix jfs clone issue
2013-01-02 Thomas Tsai <[email protected]>
update todo
Merge branch 'master' into free
Conflicts:
TODO
update ufs
2012-11-19 Thomas Tsai <[email protected]>
Merge pull request #28 from okkez/add-missing-declarations
Add missing declarations.
Merge pull request #27 from okkez/suppress-warnings-by-gcc-xfs
Suppress warnings reported by gcc for xfsclone.[ch]
Merge pull request #26 from okkez/suppress-warnings-by-gcc-vmfs
Suppress warnings reported by gcc for vmfsclone.[ch] and vmfs5clone.c
Merge pull request #25 from okkez/suppress-warnings-by-gcc-extfs
Suppress warnings reported by gcc for extfsclone.[ch]
Merge pull request #24 from okkez/suppress-warnings-by-gcc-fat
Suppress warnings reported by gcc for fatclone.[ch]
Merge pull request #23 from okkez/cleanup-common
Suppress warnings reported by gcc for main.c, partclone.c, progress.h
Merge pull request #22 from okkez/cleanup-restore
Remove unused variables in restore.c
Merge pull request #21 from okkez/cleanup-chkimg
Remove unused variables in chkimg.c.
Merge pull request #20 from okkez/suppress-warnings-by-gcc-exfat
Suppress warnings reported by gcc for exfatclone.[ch]
Merge pull request #19 from okkez/suppress-warnings-by-gcc-btrfs
Suppress warnings reported by gcc for btrfsclone.h.
Merge pull request #18 from okkez/fix-ufs-problems
Fix ufs problems
2012-11-17 Thomas Tsai <[email protected]>
Merge pull request #17 from okkez/fix-jfs-problems
Fix jfs problems
Merge pull request #16 from okkez/fix-format-string-for-reiser4
Fix format string for reiser4clone.c
Merge pull request #15 from okkez/suppress-warnings-by-gcc-reiser4
Suppress warnings reported by gcc for reiser4clone.h
Merge pull request #14 from okkez/suppress-warnings-by-gcc-reiserfs
Suppress warnings reported by gcc for reiserfsclone.[ch]
Merge pull request #13 from okkez/suppress-warnings-by-gcc-hfsp
Suppress warnings by gcc for hfspclone.[ch]
Merge pull request #12 from moriyama/fix-calling-vmfs_fs_open
Fix calling vmfs_fs_open()
Merge pull request #11 from okkez/cleanup-ddclone
Cleanup ddclone
Merge pull request #10 from okkez/add-default-cflags
Add default CFLAGS
Merge pull request #8 from okkez/use-vsnprintf
Use vsnprintf() instead of vsprintf() in src/partclone.c
Merge pull request #7 from okkez/fix-infinite-loop
Avoid infinite loop in src/main.c
Merge pull request #6 from okkez/plug-a-memory-leak
Plug a memory leak in src/partclone.c
2012-11-14 Kenji Okimoto <[email protected]>
Add missing declarations.
main.c:314: warning: implicit declaration of function 'get_image_bitmap'
main.c:642: warning: implicit declaration of function 'write_last_block'
Remove an unused variable.
xfsclone.c:180: warning: unused variable 's_pos'
Do not declare static functions in header file.
xfsclone.h:40: warning: 'set_bitmap' declared 'static' but never defined
xfsclone.h:43: warning: 'fs_open' declared 'static' but never defined
xfsclone.h:46: warning: 'fs_close' declared 'static' but never defined
2012-11-13 Kenji Okimoto <[email protected]>
Suppress warnings reported by gcc
vmfs5clone.c:235: warning: control reaches end of non-void function
vmfs5clone.c:194: warning: control reaches end of non-void function
Add missing include to suppress a warning
vmfs5clone.c:405: warning: implicit declaration of function 'sleep'
Suppress warnings reported by gcc.
vmfs5clone.c:268: warning: unused variable 'next'
vmfs5clone.c:265: warning: unused variable 'lvm'
vmfs5clone.c:315: warning: unused variable 'status'
vmfs5clone.c:314: warning: unused variable 'total'
vmfs5clone.c:313: warning: unused variable 'prog_total'
Suppress warnings reported by gcc
vmfsclone.c:33: warning: unused variable 'next'
vmfsclone.c:30: warning: unused variable 'lvm'
Do not declare static functions in header file.
vmfsclone.h:15: warning: 'fs_open' declared 'static' but never defined
vmfsclone.h:18: warning: 'fs_close' declared 'static' but never defined
Use blk_t instead of int to suppress a warning.
extfsclone.c: In function ‘device_size’:
extfsclone.c:87:5: warning: pointer targets in passing argument 3 of ‘ext2fs_get_device_size’ differ in signedness [-Wpointer-sign]
In file included from extfsclone.c:17:0:
/usr/include/ext2fs/ext2fs.h:1196:18: note: expected ‘blk_t *’ but argument is of type ‘int *’
Add missing braces to suppress a warning
extfsclone.c:193:8: warning: suggest explicit braces to avoid ambiguous ‘else’ [-Wparentheses]
Do not declare static functions in header file.
extfsclone.h:15:13: warning: ‘fs_open’ declared ‘static’ but never defined [-Wunused-function]
extfsclone.h:18:13: warning: ‘fs_close’ declared ‘static’ but never defined [-Wunused-function]
extfsclone.h:21:12: warning: ‘block_size’ declared ‘static’ but never defined [-Wunused-function]
extfsclone.h:24:27: warning: ‘device_size’ declared ‘static’ but never defined [-Wunused-function]
extfsclone.h:27:27: warning: ‘block_count’ declared ‘static’ but never defined [-Wunused-function]
extfsclone.h:30:27: warning: ‘get_used_blocks’ declared ‘static’ but never defined [-Wunused-function]
extfsclone.h:36:12: warning: ‘test_extfs_type’ declared ‘static’ but never defined [-Wunused-function]
Add prototype declaration
Rename variable name j -> i
Remove unused variables in fatclone.c
fatclone.c:246:24: warning: unused variable ‘i’ [-Wunused-variable]
fatclone.c:274:24: warning: unused variable ‘i’ [-Wunused-variable]
fatclone.c:301:24: warning: unused variable ‘i’ [-Wunused-variable]
fatclone.c:332:24: warning: unused variable ‘free_blocks’ [-Wunused-variable]
fatclone.c:331:24: warning: unused variable ‘cluster_count’ [-Wunused-variable]
fatclone.c:330:24: warning: unused variable ‘sec_per_fat’ [-Wunused-variable]
fatclone.c:329:24: warning: unused variable ‘data_sec’ [-Wunused-variable]
fatclone.c:326:10: warning: unused variable ‘sig’ [-Wunused-variable]
fatclone.c:370:20: warning: unused variable ‘opt’ [-Wunused-variable]
fatclone.c:369:14: warning: unused variable ‘Fat32_Entry’ [-Wunused-variable]
fatclone.c:368:14: warning: unused variable ‘Fat16_Entry’ [-Wunused-variable]
fatclone.c:362:9: warning: unused variable ‘rd’ [-Wunused-variable]
fatclone.c:361:31: warning: unused variable ‘j’ [-Wunused-variable]
fatclone.c:431:9: warning: unused variable ‘rd’ [-Wunused-variable]
Do not declare static functions in header file.
fatclone.h:89:13: warning: ‘fs_open’ declared ‘static’ but never defined [-Wunused-function]
fatclone.h:92:13: warning: ‘fs_close’ declared ‘static’ but never defined [-Wunused-function]
fatclone.h:101:27: warning: ‘get_used_block’ declared ‘static’ but never defined [-Wunused-function]
fatclone.h:104:14: warning: ‘get_fat_type’ declared ‘static’ but never defined [-Wunused-function]
fatclone.h:122:27: warning: ‘mark_reserved_sectors’ declared ‘static’ but never defined [-Wunused-function]
Remove an unused variable
partclone.c:348:20: warning: unused variable ‘opt’ [-Wunused-variable]
This warning is displayed if specified "--enable-ncursesw".
Remove unused variables in main.c
main.c:130:11: warning: unused variable ‘s_count’ [-Wunused-variable]
main.c:128:11: warning: unused variable ‘n_crc_size’ [-Wunused-variable]
Do not declare static functions in header file.
progress.h:53:13: warning: ‘calculate_speed’ declared ‘static’ but never defined [-Wunused-function]
progress.h:63:8: warning: ‘open_p_ncurses’ declared ‘static’ but never defined [-Wunused-function]
progress.h:64:8: warning: ‘close_p_ncurses’ declared ‘static’ but never defined [-Wunused-function]
Remove unused variables in partclone.c
partclone.c:1056:24: warning: unused variable ‘dev_size’ [-Wunused-variable]
partclone.c:1126:9: warning: unused variable ‘block’ [-Wunused-variable]
Suppress a warning reported by gcc.
partclone.c:343:9: warning: unused variable ‘debug’ [-Wunused-variable]
This warning is displayed if specify "--enable-ncursesw".
Remove unused variables in restore.c
restore.c:80:11: warning: unused variable ‘s_count’ [-Wunused-variable]
restore.c:75:19: warning: unused variable ‘crc’ [-Wunused-variable]
restore.c:68:24: warning: unused variable ‘needed_size’ [-Wunused-variable]
Remove unused variables in chkimg.c.
chkimg.c:187:11: warning: unused variable ‘image_hdr_magic’ [-Wunused-variable]
chkimg.c:185:11: warning: unused variable ‘raw’ [-Wunused-variable]
chkimg.c:182:11: warning: unused variable ‘rescue_num’ [-Wunused-variable]
chkimg.c:181:11: warning: unused variable ‘s_count’ [-Wunused-variable]
chkimg.c:162:12: warning: unused variable ‘source’ [-Wunused-variable]
Remove unused variables.
ddclone.c:77:9: warning: variable ‘pres’ set but not used [-Wunused-but-set-variable]
ddclone.c:71:11: warning: unused variable ‘s_count’ [-Wunused-variable]
ddclone.c:68:11: warning: unused variable ‘cmp’ [-Wunused-variable]
ddclone.c:67:11: warning: unused variable ‘bitmagic_r’ [-Wunused-variable]
ddclone.c:66:11: warning: unused variable ‘bitmagic’ [-Wunused-variable]
ddclone.c:61:24: warning: unused variable ‘sf’ [-Wunused-variable]
ddclone.c:61:12: warning: unused variable ‘offset’ [-Wunused-variable]
Remove unused variables.
exfatclone.c:53: warning: unused variable 'free_clusters'
exfatclone.c:53: warning: unused variable 'free_sectors'
exfatclone.c:52: warning: unused variable 'sb'
Suppress warnings reported by gcc.
exfatclone.h:15: warning: 'fs_open' declared 'static' but never defined
exfatclone.h:18: warning: 'fs_close' declared 'static' but never defined
2012-11-12 Kenji Okimoto <[email protected]>
Suppress warnings reported by gcc.
btrfsclone.h:15: warning: 'fs_open' declared 'static' but never defined
btrfsclone.h:18: warning: 'fs_close' declared 'static' but never defined
Remove unused variables reported by cppcheck.
[src/jfsclone.c:126]: (style) Unused variable: btotal
[src/jfsclone.c:126]: (style) Unused variable: bfree
[src/jfsclone.c:299]: (style) Variable 'lblock' is assigned a value that is never used
[src/jfsclone.c:305]: (style) Unused variable: dmap_l2bpp
[src/jfsclone.c:306]: (style) Unused variable: d_address
[src/jfsclone.c:307]: (style) Unused variable: d_map
[src/jfsclone.c:308]: (style) Unused variable: dmap
[src/jfsclone.c:308]: (style) Unused variable: l0
[src/jfsclone.c:308]: (style) Unused variable: l1
[src/jfsclone.c:309]: (style) Variable 'next' is assigned a value that is never used
[src/jfsclone.c:310]: (style) Unused variable: btotal
[src/jfsclone.c:310]: (style) Unused variable: bfree
[src/jfsclone.c:311]: (style) Unused variable: tub
[src/jfsclone.c:312]: (style) Variable 'tb' is assigned a value that is never used
[src/jfsclone.c:313]: (style) Variable 'pb' is assigned a value that is never used
[src/jfsclone.c:314]: (style) Variable 'block_used' is assigned a value that is never used
[src/jfsclone.c:315]: (style) Variable 'block_free' is assigned a value that is never used
Do not declare static functions in header file.
This fix suppresses GCC warnings.
Remove unused variables reported by cppcheck.
[src/ufsclone.c:184]: (style) Variable 'start' is assigned a value that is never used
[src/ufsclone.c:184]: (style) Variable 'bit_size' is assigned a value that is never used
Initialize `fsflags` and update it correctly.
Before apply this patch, sometimes this program can crash.
Do not declare static functions in header file.
This fix suppresses GCC warnings.
Use "%llu" instead of "%lli".
Because `block` and `bfree` are unsigned long long.
Fix arguments order
Suppress warnings reported by gcc
reiser4clone.h:15:13: warning: ‘fs_open’ declared ‘static’ but never defined [-Wunused-function]
reiser4clone.h:18:13: warning: ‘fs_close’ declared ‘static’ but never defined [-Wunused-function]
Remove an unused variable.
reiserfsclone.c:71: warning: unused variable 'node'
Suppress warnings reported by gcc
reiserfsclone.h:15: warning: 'fs_open' declared 'static' but never defined
reiserfsclone.h:18: warning: 'fs_close' declared 'static' but never defined
2012-11-08 Masayuki Moriyama <[email protected]>
fstype.c: fix incompatible pointer types warning
vmfs5clone.c: fix incompatible pointer types warning
vmfsclone.c: fix incompatible pointer types warning
2012-11-08 Kenji Okimoto <[email protected]>
Remove an unused variable reported by gcc
hfsplusclone.c:129: warning: unused variable 'i'
Suppress warnings reported by gcc.
hfsplusclone.h:69: warning: 'reverseShort' declared 'static' but never defined
hfsplusclone.h:71: warning: 'reverseInt' declared 'static' but never defined
hfsplusclone.h:73: warning: 'IsAllocationBlockUsed' declared 'static' but never defined
hfsplusclone.h:75: warning: 'print_fork_data' declared 'static' but never defined
hfsplusclone.h:78: warning: 'fs_open' declared 'static' but never defined
hfsplusclone.h:81: warning: 'fs_close' declared 'static' but never defined
2012-11-07 Kenji Okimoto <[email protected]>
Add default CFLAGS
Remove needless cast
Use "%llu" instead of "%lli" because total_write is unsigned long long
2012-11-06 Kenji Okimoto <[email protected]>
Use vsnprintf() instead of vsprintf().
This may avoid buffer overflow
2012-11-06 Thomas Tsai <[email protected]>
add check to fail-mbr
add fail-mbr
fix error: ‘debug’ undeclared again
fix error: ‘debug’ undeclared
2012-11-06 Kenji Okimoto <[email protected]>
Plug a memory leak
Use unsigned long long instead of int
image_hdr.totalblock may be unsigned 64 bits in size.
2012-11-06 Thomas Tsai <[email protected]>
Merge pull request #4 from okkez/malloc-check
Add malloc/calloc result check
Merge pull request #3 from okkez/fix-problems-reported-by-cppcheck
Fix problems reported by cppcheck
2012-11-06 Thomas Tsai <[email protected]>
Revert "remove exfat temporarily"
This reverts commit cda497b0bc6f6dda2777e1eacd45841b5766a35b.
Merge branch 'master' of ssh://free.nchc.org.tw:3322/home/gitpool/partclone
Revert "add test script for offset" rollback exfat
This reverts commit ca18098bebb3585545e62a62bb651c3d0534891c.
try to branch exfat
release 0.2.56
remove exfat temporarily
2012-11-02 Kenji Okimoto <[email protected]>
Add check calloc() result
Add check calloc() result
Exit if calloc() failed
Add check malloc() result
Add check malloc() result
Add check malloc() result
ensure NULL terminated string
do not free NULL
plug a memory leak
fix buffer overflow
2012-10-22 Thomas Tsai <[email protected]>
add test script for offset
add offset function
2012-10-11 Thomas Tsai <[email protected]>
update TODO
update configure
release 0.2.55
2012-10-08 Thomas Tsai <[email protected]>
fix bug from sourceforge track system: some files restored by partclone.vmfs3 is corrupted incorrect information in the log accept patch files: partclone-0.2.54-fix-printf-format-1.patch from Masayuki Moriyama partclone-fix-wrong-bitmap-of-vmfsclone.patch from Masayuki Moriyama
Masayuki Moriyama report two bugs and patchs, Thank You.
2012-10-01 Thomas Tsai <[email protected]>
update TODO
2012-09-26 Thomas Tsai <[email protected]>
* upgrade btrfs version (still 0.19 accept patches from debian source) * add --enable-fs-test to run file system clone/restore test suite * add dd test as default test * versioin 0.2.54
update test script
2012-09-25 Thomas Tsai <[email protected]>
update tests
comment some test
add tests add make check but not work well set version 0.2.53
2012-09-24 Thomas Tsai <[email protected]>
add debian.squeeze back and rename debian to debian.sid
2012-09-21 Thomas Tsai <[email protected]>
update makefile
add more man pages
update man page
add man page
remove sid squeeze
update debian folder
2012-09-20 Thomas Tsai <[email protected]>
update ncurses interface.
fix issue: ncurses interface can't work on saving partition with pipe because both use stdout at the same time.
since initscr() use stdout default, and we try to replace with newterm() with stderr.
set ncurses window to stderr
modified: src/Makefile.in
modified: src/ddclone.c
modified: src/main.c
modified: src/partclone.c
modified: src/restore.c
2012-09-17 Thomas Tsai <[email protected]>
update TODO
2012-07-31 Thomas Tsai <[email protected]>
update some docs
2012-07-30 Thomas Tsai <[email protected]>
update version to 0.2.51
update process for elapsed time over 24hr
2012-07-25 Thomas Tsai <[email protected]>
update supported list
2012-07-13 Thomas Tsai <[email protected]>
update makefile
2012-07-10 Thomas Tsai <[email protected]>
version 0.2.50
update test and size information
add test for exfat
update exfat and add exfat man docs
add exfat
2012-06-27 Thomas Tsai <[email protected]>
add more detail message in image head output
2012-06-15 Thomas Tsai <[email protected]>
add partclone.btrfs.8
update control
update control
fix quiet mode issue. The issue make partclone can't stop/finish even action is done. bug report from pille
2012-05-30 Thomas Tsai <[email protected]>
update manpage
2012-05-29 Thomas Tsai <[email protected]>
update docs
update docs
2012-05-18 Thomas Tsai <[email protected]>
minor update readme
2012-05-16 Thomas Tsai <[email protected]>
update TODO
2012-05-01 Thomas Tsai <[email protected]>
Merge branch 'master' of partclone.nchc.org.tw:/home/partclone
update vmfs for some unallocated block
2012-04-29 Thomas Tsai <[email protected]>
A partclone bug found when it backs up WindowsServer2008R2 (64bit) on
2012-04-26 Thomas Tsai <[email protected]>
update bitmap progress
2012-04-26 thomas <[email protected]>
ignore unallocated block for vmfs
2012-04-19 Thomas Tsai <[email protected]>
update control for vmfs
2012-04-18 Thomas Tsai <[email protected]>
0.2.47
update fresh done
update fresh, add sleep in progress thread to reduce cpu usage, contributed and bug information from http://sourceforge.net/tracker/?func=detail&aid=3509757&group_id=115473&atid=671650
2012-04-12 Thomas Tsai <[email protected]>
change row to raw, noticed from Vincent van Adrighem
try to fix ID: 3509757 from clonezilla track system
2012-04-01 Thomas Tsai <[email protected]>
update vmfs5
2012-03-29 Thomas Tsai <[email protected]>
remove vmfs5clone.c
2012-03-28 Thomas Tsai <[email protected]>
update for vmfs-tool 0.2.5
come back
Merge branch 'master' of partclone.nchc.org.tw:/home/partclone
update for vmfs-tool 0.2.5
Merge branch 'fixcrc'
remove new crc and accept vmfs5
update for vmfs-tool 0.2.5
2012-03-27 Thomas Tsai <[email protected]>
crc32
2012-02-17 Matthew Booth <[email protected]>
Make crc32() explicitly 32 bit
Remove redundant copy of crc_buffer
Allocate crc_buffer on the stack
Avoid repeated malloc/free of a 4 byte buffer by allocating crc_buffer on the
stack.
Make constant string static const *const
Minor log message cleanup
2012-02-11 Thomas Tsai <[email protected]>
add partclone.vmfs5 ignored
update vmfs5
2012-02-09 Thomas Tsai <[email protected]>
add vmfs5clone.c to clone vmfs5 update vmfs5 update makefile to create partclone.vmfs5
2012-02-08 Thomas Tsai <[email protected]>
0.2.46
* accept patch from Rommer to update memory usage
* update document, some example error. * update vmfsclone to backup vmfs5 well
2012-01-28 Thomas Tsai <[email protected]>
merge
update manpages
2012-01-18 Thomas Tsai <[email protected]>
add compatibility of vmfs3 and vmfs5
2012-01-17 Thomas Tsai <[email protected]>
print vmfs version from fstype
update pui for mode dev-yo-dev
2012-01-05 Thomas Tsai <[email protected]>
update for vmfs
2011-12-27 Thomas Tsai <[email protected]>
0.2.43
add option B to disable block detail
0.2.42
add finish progress to dd
0.2.41
add thread to dd, restore and chkimg
2011-12-26 Thomas Tsai <[email protected]>
add thread to display progress, draft
update progress bar
2011-12-23 Thomas Tsai <[email protected]>
add block status
update progress seeking at 100%
2011-12-12 Thomas Tsai <[email protected]>
update version to "1.0" at ntfsfixboot.c line 218
0.2.39
update ntfsfixboot.c to version 1.0
2011-11-25 Thomas Tsai <[email protected]>
0.2.38
update for progress
2011-11-23 Thomas Tsai <[email protected]>
update for makefile for ncursesw
release 0.2.37
add -I/usr/include/ncursesw/
2011-11-09 Thomas Tsai <[email protected]>
0.2.36
update ncurses size
2011-11-02 Thomas Tsai <[email protected]>
update toolbox
update toolbox
update toolbox
update toolbox
update
2011-11-01 Thomas Tsai <[email protected]>
move partclone.spec to README.Packages/partclone.spec
remove debian
add debian
update TODO
re remove debian
add debian
update version script
save last changelog ($version)
update control for debian-sid
move debian folder to README.Packages as sample
2011-10-31 Thomas Tsai <[email protected]>
update autoconf and automake for squeeze
2011-10-27 Thomas Tsai <[email protected]>
update script folder done
update debain/control
re release 0.2.33
update test script
2011-10-27 root <root@debian.(none)>
update memory mangment
update memory managment
2011-10-26 root <root@debian.(none)>
update ncurses
2011-10-26 Thomas Tsai <[email protected]>
test ncurses progress bar
2011-10-25 Thomas Tsai <[email protected]>
update 0.2.33
2011-10-19 Thomas Tsai <[email protected]>
release 0.2.32
update test script
add bitmap.h
2011-10-18 Thomas Tsai <[email protected]>
accept patch from Rommer
2011-10-12 Thomas Tsai <[email protected]>
release 0.2.31
2011-10-13 Thomas Tsai <[email protected]>
update for vmfs5
2011-10-11 Thomas Tsai <[email protected]>
patch vmfs and release
patch for new vmfs library
2011-09-14 Thomas Tsai <[email protected]>
performance issue from Randy Syring "I came across something you may want to update: in get_image_bitmap() you loop through the blocks and increment bused and bfree. However, those values are only used if debug >= 2. Seems like that loop could be moved inside the if statement just below it."
2011-09-12 Thomas Tsai <[email protected]>
release 0.2.29
2011-09-10 Thomas Tsai <[email protected]>
release 0.2.29
2011-09-09 Thomas Tsai <[email protected]>
make e2fs compact for squeeze
2011-09-05 Thomas Tsai <[email protected]>
update configure
update ncurses for sid
2011-08-30 Thomas Tsai <[email protected]>
fix bug for reiserfs
0.2.27
0.2.27
accept suggestion from Paul, many thanks
Merge branch 'master' of partclone.nchc.org.tw:/home/partclone
accept patches from Georges - 10-configure.ac.patch removes a flag '-static' in a compilation - 20-manpages fixes a few typos in manpages (s/sp1/sp 1/) - 30-fixIntTypes fixes a more subtle bug, it make the definition of integer types more precise and architecture-agnostic. See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=636927
2011-08-18 Thomas Tsai <[email protected]>
try to release dbg version
update test script
release 0.2.26 stable
update help description
update test script
2011-08-17 Thomas Tsai <[email protected]>
add dbg package
script can do basic test for developer
initial extra test script
2011-08-14 Thomas Tsai <[email protected]>
Merge branch 'master' of ssh://partclone.nchc.org.tw/home/partclone
2011-08-15 Thomas Tsai <[email protected]>
release version 0.2.25
update for e2fslibs 1.42~WIP-2011-07-02
2011-08-14 Thomas Tsai <[email protected]>
release version 0.2.25 update configure.ac for new e2fslibrary
2011-08-01 Thomas Tsai <[email protected]>
compact ntfs and ntfs-3g
2011-07-28 Thomas Tsai <[email protected]>
add ntfs-3g library support for ntfs accept patch from Arkadiusz Patyk because In PLD Linux now we switch from ntfsprog to ntfs-3g. update patch and try to keep ntfsprogs.
2011-05-24 Thomas Tsai <[email protected]>
release 0.2.4 with deb file
* accept patch from Ian Abbott. * Ian Abbott realized it would be quicker if it only copied the in-use areas of the partition. ddrescue has a '--domain-log=FILE' option which can be used to restrict it to certain areas, so the problem is to create such a domain log file to cover the areas used by the filesystem on the partition. ... check mail list to get more details...
2011-05-14 Thomas Tsai <[email protected]>
Merge branch '0.2.8-update' of partclone.nchc.org.tw:/home/partclone into 0.2.8-update
add docbook style manpages : partclone.xxx.xml
2011-04-28 Thomas Tsai <[email protected]>
update test script
add chkimg test
add test
2011-04-22 Thomas Tsai <[email protected]>
lost xxxfs.8
add template man page for all file system
update marco so
release 0.2.23 for better manpages
2011-04-13 Thomas Tsai <[email protected]>
update gitignore
update manual as link
update manual
update man
2011-03-28 Thomas Tsai <[email protected]>
0.2.22 release
typo error for progress
2011-03-22 Thomas Tsai <[email protected]>
release version 0.2.21
fix bug for partclone.dd
2011-03-21 Thomas Tsai <[email protected]>
Merge branch '0.2.8-update' of partclone.nchc.org.tw:/home/partclone into 0.2.8-update
fix bug for partclone.dd
2011-03-17 Thomas Tsai <[email protected]>
release 0.2.20
2011-03-14 Thomas Tsai <[email protected]>
fix partclone.dd / partclone.restore hard to show right message for stdin data. We use target size as source size for the special case.
2011-03-09 Thomas Tsai <[email protected]>
0.2.19: fixbug: progress fail when just 10 block restore
release 0.2.19
update makefile for btrfs
2011-02-18 Thomas Tsai <[email protected]>
* add option max_block_cache to get better performance escpcially small block size(fat) * update typo error * Version 0.2.18
2011-01-25 Thomas Tsai <[email protected]>
update ChangeLog
fix ufs error
update ext4 mismatch and new release version
2011-01-18 Thomas Tsai <[email protected]>
fix commit: replace reiserfs with ntfs, thanks for Marcos Felipe Rasia de Mello
2011-01-13 Thomas Tsai <[email protected]>
fix bug for ufs unclean
2010-11-02 Thomas Tsai <[email protected]>
update POs
2010-11-01 Thomas Tsai <[email protected]>