Skip to content

Commit

Permalink
Add support for .tcz packages
Browse files Browse the repository at this point in the history
  • Loading branch information
dfandrich committed Feb 3, 2025
1 parent 769f500 commit 18fceab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion automtime
Original file line number Diff line number Diff line change
Expand Up @@ -1217,7 +1217,7 @@ for f in "$@" ; do
TYPE=spdx
;;

*.sqsh | *.squashfs | *.sqfs | *.snap)
*.sqsh | *.squashfs | *.sqfs | *.snap | *.tcz)
TYPE=squashfs
;;

Expand Down
3 changes: 2 additions & 1 deletion fv
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,9 @@ EOF

# See https://github.com/plougher/squashfs-tools/
# Also Snap package .snap
# Also Tiny Core Linux package .tcz
# requires: squashfs
*.sqsh | *.squashfs | *.sqfs | *.snap) archive_label Squashfs filesystem image
*.sqsh | *.squashfs | *.sqfs | *.snap | *.tcz) archive_label Squashfs filesystem image
unsquashfs -ll "$sf"
;;

Expand Down
3 changes: 2 additions & 1 deletion fvi
Original file line number Diff line number Diff line change
Expand Up @@ -540,8 +540,9 @@ for f in "$@" ; do

# See https://github.com/plougher/squashfs-tools/
# Also Snap package .snap
# Also Tiny Core Linux package .tcz
# requires: squashfs-tools
*.sqsh | *.squashfs | *.sqfs | *.snap) filetype_label Squashfs filesystem image
*.sqsh | *.squashfs | *.sqfs | *.snap | *.tcz) filetype_label Squashfs filesystem image
unsquashfs -s "$sf"
;;

Expand Down

0 comments on commit 18fceab

Please sign in to comment.