-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mksquashfs and unsquashfs as a library #124
Comments
So basically something like libsquashfs, which has a C API? |
Exactly. We tried to use |
A high level abstraction wrapper is implemented in I opened a ticket for this. Additional feedback is always welcome. |
The project today is binary centric around the
mksquashfs
andunsquashfs
binaries. Calling this binaries during a build can be annoying since the binaries need to be present on the system in the correct version. Calling foreign binaries is also something that may fail easily.The idea is to split the two binaries into tree parts:
libsquashfs
: Library for creating and unpacking squashfs images with a (to be defined) C APImksquashfs
: CLI tool to create squashfs images (useslibsquashfs
)unsquashfs
: CLI tool to unpack squashfs images (useslibsquashfs
)The text was updated successfully, but these errors were encountered: