Re: [LEDE-DEV] [PATCH] squashfs4: use upstream xz compression header format

2016-06-22 Thread Hauke Mehrtens
On 06/22/2016 06:01 PM, Conor O'Gorman wrote: > On 21/06/16 21:05, Hauke Mehrtens wrote: >> In the upstream kernel and the upstream squashfs4 tools the xz >> compression header looks the following: >> struct disk_comp_opts { >> __le32 dictionary_size; >> __le32 flags; >> }; >> >>

Re: [LEDE-DEV] [PATCH] squashfs4: use upstream xz compression header format

2016-06-22 Thread Conor O'Gorman
On 21/06/16 21:05, Hauke Mehrtens wrote: In the upstream kernel and the upstream squashfs4 tools the xz compression header looks the following: struct disk_comp_opts { __le32 dictionary_size; __le32 flags; }; We added some other members and also moved some existing members. Pla

[LEDE-DEV] [PATCH] squashfs4: use upstream xz compression header format

2016-06-21 Thread Hauke Mehrtens
In the upstream kernel and the upstream squashfs4 tools the xz compression header looks the following: struct disk_comp_opts { __le32 dictionary_size; __le32 flags; }; We added some other members and also moved some existing members. Place the members which are already in upstream