Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions scripts/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ EOF
# Note: We don't modify profiledef.sh anymore as -Xthreads is not supported by mksquashfs
# The profiledef.sh file already has proper XZ compression settings

# Verify mkarchiso is available and check its version
log "Verifying mkarchiso installation..."
if ! command -v mkarchiso &> /dev/null; then
error "mkarchiso command not found. Please ensure archiso package is properly installed."
fi

log "mkarchiso version: $(mkarchiso --version 2>/dev/null || echo 'unknown')"

# Run mkarchiso with verbose option and handle errors
log "Building Arch ISO with mkarchiso..."
if mkarchiso -v -w "$work_dir" -o "$output_dir" .; then
Expand Down
Loading