From 758d0a83c3eea9c096583e33b2e6f0aedb7025b8 Mon Sep 17 00:00:00 2001 From: Caleb Gardner Date: Sun, 8 Nov 2020 11:14:43 -0600 Subject: [PATCH] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 57b4721..3d0d29d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,16 @@ # GoSquashfs My playground to mess around with Squashfs in Go. Might turn into an actual library someday. Mainly for AppImage + +# Ideas +* Link directly to squashfs-tool using cgo + * cgo is a butt + * would require the least amount of code for me to do +* Improve [distri's](https://github.com/distr1/distri) or [diskfs](https://github.com/diskfs/go-diskfs) squashfs library to meet my needs + * Both don't work at all ATM. + * distri's doesn't seem to support any sort of compression, which causes issues all over the place. + * diskfs seems closer, but the squashfs code is incomplete +* Create an original squashfs library + * MUCH more research needed + * Could look at [squashfs-tools'](https://github.com/plougher/squashfs-tools) code to help out + * Don't have to deal with other people's code :P + * Honestly a bit unnecessary based on how close distri & diskfs's code is.