manjaro-tools/bin/buildiso.in

206 lines
6 KiB
Text
Raw Normal View History

2014-12-04 19:19:54 +01:00
#!/bin/bash
2014-12-04 19:20:28 +01:00
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
2014-12-04 19:19:54 +01:00
2014-12-04 19:20:28 +01:00
version=@version@
2014-12-04 19:19:54 +01:00
2014-12-14 03:48:46 +01:00
LIBDIR='@libdir@'
2015-12-08 12:33:28 +01:00
DATADIR='@datadir@'
2014-12-14 03:48:46 +01:00
SYSCONFDIR='@sysconfdir@'
[[ -r ${LIBDIR}/util-msg.sh ]] && source ${LIBDIR}/util-msg.sh
2015-06-09 00:01:31 +02:00
import ${LIBDIR}/util.sh
2014-12-04 19:19:54 +01:00
show_profile(){
2016-02-25 06:40:39 +01:00
prepare_profile "$1"
msg2 "pacman_conf: %s" "${pacman_conf}"
if ${verbose};then
msg2 "work_dir: %s" "${work_dir}"
msg2 "iso_dir: %s" "${iso_dir}"
msg2 "iso_file: %s" "${iso_file}"
msg2 "autologin: %s" "${autologin}"
msg2 "nonfree_mhwd: %s" "${nonfree_mhwd}"
msg2 "pxe_boot: %s" "${pxe_boot}"
msg2 "plymouth_boot: %s" "${plymouth_boot}"
${plymouth_boot} && msg2 "plymouth_theme: %s" "${plymouth_theme}"
[[ ${target_arch} == 'x86_64' ]] && msg2 "multilib: %s" "${multilib}"
2016-08-19 16:54:24 +02:00
msg2 "netinstall: %s" "${netinstall}"
${netinstall} && msg2 "netgroups: %s" "$(get_yaml)"
2016-08-19 16:54:24 +02:00
msg2 "unpackfs: %s" "${unpackfs}"
msg2 "geoip: %s" "${geoip}"
msg2 "efi_boot_loader: %s" "${efi_boot_loader}"
msg2 "hostname: %s" "${hostname}"
msg2 "username: %s" "${username}"
msg2 "password: %s" "${password}"
msg2 "login_shell: %s" "${login_shell}"
msg2 "addgroups: %s" "${addgroups}"
[[ -n ${smb_workgroup} ]] && msg2 "smb_workgroup: %s" "${smb_workgroup}"
if [[ ${initsys} == 'systemd' ]];then
msg2 "enable_systemd: %s" "${enable_systemd[*]}"
msg2 "enable_systemd_live: %s" "${enable_systemd_live[*]}"
2016-08-04 21:11:28 +02:00
[[ -n ${disable_systemd[*]} ]] && msg2 "disable_systemd: %s" "${disable_systemd[*]}"
else
msg2 "enable_openrc: %s" "${enable_openrc[*]}"
msg2 "enable_openrc_live: %s" "${enable_openrc_live[*]}"
2016-08-04 21:11:28 +02:00
[[ -n ${disable_openrc[*]} ]] && msg2 "disable_openrc: %s" "${disable_openrc[*]}"
fi
2016-07-16 20:14:58 +02:00
if ${torrent};then
msg2 "tracker_url: %s" "${tracker_url}"
msg2 "piece_size: %s" "${piece_size}"
fi
fi
reset_profile
}
2014-12-04 20:05:33 +01:00
display_settings(){
show_version
show_config
2015-02-13 15:17:00 +01:00
msg "PROFILE:"
2016-06-09 18:03:38 +02:00
msg2 "list_dir_iso: %s" "${list_dir_iso}"
msg2 "build_lists: %s" "$(show_build_lists ${list_dir_iso})"
msg2 "build_list_iso: %s" "${build_list_iso}"
msg2 "is_build_list: %s" "${is_build_list}"
2016-06-09 21:58:18 +02:00
msg2 "build_mirror: %s" "${build_mirror}/${target_branch}"
2016-06-12 07:32:15 +02:00
${verbose} && msg2 "run_dir: %s" "${run_dir}"
2015-02-13 15:17:00 +01:00
msg "OPTIONS:"
msg2 "arch: %s" "${target_arch}"
msg2 "branch: %s" "${target_branch}"
msg2 "chroots_iso: %s" "${chroots_iso}"
msg2 "initsys: %s" "${initsys}"
msg2 "kernel: %s" "${kernel}"
2015-02-13 15:17:00 +01:00
msg "ARGS:"
msg2 "clean_first: %s" "${clean_first}"
msg2 "images_only: %s" "${images_only}"
msg2 "iso_only: %s" "${iso_only}"
msg2 "sign: %s" "${sign}"
2016-07-16 20:14:58 +02:00
msg2 "torrent: %s" "${torrent}"
2015-02-13 15:17:00 +01:00
2015-03-05 10:52:37 +01:00
msg "DIST SETTINGS:"
msg2 "dist_name: %s" "${dist_name}"
msg2 "dist_release: %s" "${dist_release}"
msg2 "dist_codename: %s" "${dist_codename}"
2015-03-05 10:52:37 +01:00
2015-05-22 12:40:11 +02:00
msg "ISO SETTINGS:"
msg2 "iso_label: %s" "${iso_label}"
msg2 "iso_publisher: %s" "${iso_publisher}"
msg2 "iso_app_id: %s" "${iso_app_id}"
msg2 "iso_compression: %s" "${iso_compression}"
msg2 "iso_checksum: %s" "${iso_checksum}"
msg2 "use_overlayfs: %s" "${use_overlayfs}"
2016-02-22 21:08:37 +01:00
${verbose} && msg2 "iso_fs: %s" "${iso_fs}"
2015-02-13 15:17:00 +01:00
msg "BUILD QUEUE:"
2016-06-09 18:03:38 +02:00
run show_profile "${build_list_iso}"
2015-01-15 02:49:21 +01:00
}
2015-01-13 13:41:28 +01:00
load_user_info
2014-12-14 03:48:46 +01:00
2016-06-14 17:54:44 +02:00
load_config "${USERCONFDIR}/manjaro-tools.conf" || load_config "${SYSCONFDIR}/manjaro-tools.conf"
# to force old way to have buildiso run in iso-profiles dir
# run_dir=$(pwd)
load_run_dir "${profile_repo}"
2015-12-01 12:24:23 +01:00
clean_first=true
2014-12-18 02:03:40 +01:00
pretend=false
images_only=false
2014-12-14 17:22:47 +01:00
iso_only=false
verbose=false
2016-02-22 19:24:49 +01:00
sign=false
2016-07-16 20:14:58 +02:00
torrent=false
2014-12-07 06:36:46 +01:00
usage() {
2015-02-13 15:17:00 +01:00
echo "Usage: ${0##*/} [options]"
2016-06-09 18:03:38 +02:00
echo " -p <profile> Buildset or profile [default: ${build_list_iso}]"
echo " -a <arch> Arch [default: ${target_arch}]"
echo " -b <branch> Branch [default: ${target_branch}]"
2015-02-13 15:17:00 +01:00
echo ' -r <dir> Chroots directory'
echo " [default: ${chroots_iso}]"
2015-06-04 15:18:47 +02:00
echo ' -t <dir> Target directory'
echo " [default: ${cache_dir_iso}]"
echo ' -k <name> Kernel to use'
echo " [default: ${kernel}]"
echo ' -i <name> Init system to use'
echo " [default: ${initsys}]"
2016-02-22 19:24:49 +01:00
echo ' -s Sign the iso'
2015-02-13 15:17:00 +01:00
echo ' -c Disable clean work dir'
echo ' -x Build images only'
echo ' -z Generate iso only'
2016-02-20 17:28:36 +01:00
echo ' Requires pre built images (-x)'
echo ' -w Create iso torrent'
echo ' -v Verbose output to log file, show profile detail (-q)'
2015-02-13 15:17:00 +01:00
echo ' -q Query settings and pretend build'
echo ' -h This help'
echo ''
echo ''
exit $1
2014-12-07 06:36:46 +01:00
}
orig_argv=("$@")
opts='p:a:b:r:t:k:i:czxswvqh'
2014-12-07 06:36:46 +01:00
while getopts "${opts}" arg; do
2015-02-13 15:17:00 +01:00
case "${arg}" in
2016-06-09 18:03:38 +02:00
p) build_list_iso="$OPTARG" ;;
a) target_arch="$OPTARG" ;;
b) target_branch="$OPTARG" ;;
2015-02-13 15:17:00 +01:00
r) chroots_iso="$OPTARG" ;;
2015-06-04 15:18:47 +02:00
t) cache_dir_iso="$OPTARG" ;;
k) kernel="$OPTARG" ;;
i) initsys="$OPTARG" ;;
2016-02-22 19:24:49 +01:00
s) sign=true ;;
2015-02-13 15:17:00 +01:00
c) clean_first=false ;;
x) images_only=true ;;
z) iso_only=true ;;
2016-07-16 20:14:58 +02:00
w) torrent=true ;;
v) verbose=true ;;
2015-02-13 15:17:00 +01:00
q) pretend=true ;;
h|?) usage 0 ;;
*) echo "invalid argument '${arg}'"; usage 1 ;;
esac
2014-12-07 06:36:46 +01:00
done
shift $(($OPTIND - 1))
2015-02-18 04:28:11 +01:00
timer_start=$(get_timer)
2015-02-17 19:45:35 +01:00
2015-01-15 02:49:21 +01:00
check_root "$0" "${orig_argv[@]}"
2014-12-05 02:22:14 +01:00
prepare_dir "${log_dir}"
prepare_dir "${tmp_dir}"
2016-06-09 18:03:38 +02:00
eval_build_list "${list_dir_iso}" "${build_list_iso}"
import ${LIBDIR}/util-iso.sh
check_requirements
for sig in TERM HUP QUIT; do
trap "trap_exit $sig \"$(gettext "%s signal caught. Exiting...")\" \"$sig\"" "$sig"
done
trap 'trap_exit INT "$(gettext "Aborted by user! Exiting...")"' INT
trap 'trap_exit USR1 "$(gettext "An unknown error has occurred. Exiting...")"' ERR
${pretend} && display_settings && exit 1
2016-06-09 18:03:38 +02:00
run build "${build_list_iso}"