magiskboot: be clear lzop is not a supported compression format

- keep detection and always display detected format type to fascilitate external support
This commit is contained in:
osm0sis
2019-05-28 12:47:52 -03:00
committed by John Wu
parent c0d1ce96d1
commit bf58205b0a
4 changed files with 9 additions and 4 deletions

View File

@@ -89,7 +89,7 @@ const char *Fmt2Ext::operator[](format_t fmt) {
case GZIP:
return ".gz";
case LZOP:
return ".lzop";
return ".lzo";
case XZ:
return ".xz";
case LZMA: