cosmos72 / fstransform

tool for in-place filesystem conversion (for example from jfs/xfs/reiser to ext2/ext3/ext4) without backup
GNU General Public License v2.0
278 stars 28 forks source link

integrate fstransform into busybox? #41

Open AnterCreeper opened 2 years ago

cosmos72 commented 2 years ago

Ho @AnterCreeper, it could be nice, but I don't think it's technically very feasible: fsmove and fsremap (the two main back-end executables used by fstransform) are written in C++, while busybox is plain C.

The front-end program fstransform is instead a bash script, and could be rewritten in some other language with limited effort.

AnterCreeper commented 2 years ago

thanks!