Compare commits

..

6 Commits
0.25 ... 0.25.2

Author SHA1 Message Date
11dd9be3f1 comp (#56)
Reviewed-on: #56
Co-authored-by: artoo <artoo@artixlinux.org>
Co-committed-by: artoo <artoo@artixlinux.org>
2021-07-13 11:07:33 +02:00
f058b9155b iso.conf: better explaining comments 2021-07-11 10:31:06 +02:00
7c3d1343e8 buildiso: fix checksum file 2021-07-11 09:24:06 +02:00
80b14b7f1f buildiso: make suqsh compression configurable 2021-07-11 00:08:03 +02:00
29a1e98c0e buildiso: add -l arg 2021-07-10 22:23:23 +02:00
8bcb311bbd buildiso: make compression level configurable 2021-07-10 22:14:39 +02:00
5 changed files with 27 additions and 5 deletions

View File

@@ -221,6 +221,8 @@ display_settings(){
msg "ISO SETTINGS:"
msg2 "ISO_VERSION: %s" "${ISO_VERSION}"
msg2 "COMPRESSION: %s" "${COMPRESSION}"
[[ "${COMPRESSION}" == 'zstd' ]] && msg2 "COMPRESSION_LEVEL: %s" "${COMPRESSION_LEVEL}"
msg "BUILD:"
show_profile
@@ -332,7 +334,7 @@ usage() {
echo ' -i <name> Init system to use'
echo " [default: ${INITSYS}]"
echo ' -g <key> The gpg key for img signing'
echo " [default: ${GPG_KEY}]"
echo " [default: none]"
echo ' -m Set SquashFS image mode to persistence'
echo ' -c Disable clean work dir'
echo ' -x Build chroot only'

View File

@@ -13,3 +13,9 @@
# gpg key; leave empty or commented to skip img signing
# GPG_KEY=""
# possible values: zstd (default), xz
# COMPRESSION="zstd"
# zstd only: range 1..22
# COMPRESSION_LEVEL=15

View File

@@ -5,13 +5,17 @@
make_checksum(){
local file="$1"
msg2 "Creating md5sum ..."
cd "${iso_root}${live_dir}"
md5sum "$file" > "$file".md5
cd "${OLDPWD}"
}
make_sig () {
local file="$1"
msg2 "Creating signature file..."
chown "${owner}:$(id --group "${owner}")" "${iso_root}${live_dir}"
su "${owner}" -c "gpg --detach-sign --output $file.sig --default-key ${GPG_KEY} $file"
chown "root:root" "${iso_root}${live_dir}"
}
export_gpg_publickey() {

View File

@@ -67,16 +67,14 @@ make_sfs() {
mksfs_args+=("${sfs_out}")
mksfs_args+=(-comp zstd -noappend)
mksfs_args+=(-comp "${COMPRESSION}" "${COMPRESSION_ARGS[@]}" -noappend)
mksquashfs "${mksfs_args[@]}"
if ! ${use_dracut}; then
make_checksum "${iso_root}${live_dir}/${img_name}"
make_checksum "${img_name}"
if [[ -n ${GPG_KEY} ]];then
chown "${owner}:$(id --group "${owner}")" "${iso_root}${live_dir}"
make_sig "${iso_root}${live_dir}/${img_name}"
chown "root:root" "${iso_root}${live_dir}"
fi
fi
if ${persist}; then

View File

@@ -19,6 +19,18 @@ load_iso_config(){
GPG_KEY=${GPG_KEY:-''}
COMPRESSION="${COMPRESSION:-zstd}"
COMPRESSION_LEVEL="${COMPRESSION_LEVEL:-15}"
if [[ -z "${COMPRESSION_ARGS[*]}" ]]; then
COMPRESSION_ARGS=(-Xcompression-level "${COMPRESSION_LEVEL}")
fi
if [[ "${COMPRESSION}" == 'xz' ]]; then
COMPRESSION_ARGS=(-Xbcj x86)
fi
return 0
}