erofsDiff does erofs comparison and application
| 47 | |
| 48 | // erofsDiff does erofs comparison and application |
| 49 | type erofsDiff struct { |
| 50 | store content.Store |
| 51 | mkfsExtraOpts []string |
| 52 | // enableTarIndex enables generating tar index for tar content |
| 53 | // instead of fully converting the tar to EROFS format |
| 54 | enableTarIndex bool |
| 55 | // enableDmverity enables formatting layers with dm-verity after creation |
| 56 | enableDmverity bool |
| 57 | } |
| 58 | |
| 59 | // DifferOpt is an option for configuring the erofs differ |
| 60 | type DifferOpt func(d *erofsDiff) |
nothing calls this directly
no outgoing calls
no test coverage detected