Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
alpine
mkinitfs
Commits
7005b193
Commit
7005b193
authored
Dec 22, 2020
by
Natanael Copa
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'add-zstd-support' into 'master'
Add zstd compression support See merge request
!75
parents
59204d36
830b8ddc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
mkinitfs.in
mkinitfs.in
+1
-0
No files found.
mkinitfs.in
View file @
7005b193
...
...
@@ -280,6 +280,7 @@ fi
case
"
$initfscomp
"
in
gzip
)
comp
=
"
$(
command
-v
pigz 2>/dev/null
||
echo gzip
)
-9"
;;
xz
)
cmd_exists xz
;
comp
=
"xz -C crc32 -T 0"
;;
zstd
)
cmd_exists zstd
;
comp
=
"zstd -19"
;;
*
)
echo
"Initramfs compression
\"
$initfscomp
\"
not supported!"
;
exit
1
;;
esac
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment