-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathREADME
More file actions
20 lines (13 loc) · 697 Bytes
/
README
File metadata and controls
20 lines (13 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
cramfsswap - swap endianness of a cram filesystem (cramfs)
version 1.1
cramfs is a highly compressed and size optimized linux filesystem which is
mainly used for embedded applications. the problem with cramfs is that it
is endianness sensitive, meaning you can't mount a cramfs for a big endian
target on a little endian machine and vice versa. this is often especially
a problem in the development phase.
cramfsswap solves that problem by allowing you to swap to endianness of a
cramfs filesystem.
changelog:
v1.0 2004-12-01 first release
v1.1 2005-01-04 added correct recalculation of crc, thanks to joerg
dorchain <joerg at dorchain.net>