OSDN Git Service

fixed squashfs
[alterlinux/LFBS.git] / lfbs
1 #!/usr/bin/env bash
2
3 # SPDX-License-Identifier: GPL-3.0
4 #
5 # kokkiemouse
6 # Twitter: @kokkiemouse
7 # Email  : kokkiemouse@gmail.com
8 #
9 # lfbs
10 #
11
12 set -e
13 # set -u
14
15 #export LANG=C
16
17 script_path=$(readlink -f "${0%/*}")
18 work_dir="${script_path}/work"
19 channels_dir="${script_path}/channels"
20 nfb_dir="${script_path}/nfb"
21 codename="32"
22 os_name="SereneLinux"
23 iso_name="Fedora"
24 language="ja_JP.UTF-8"
25 channel_name="serene"
26 cache_dir="${script_path}/cache"
27 bootsplash=false
28 arch="x86_64"
29
30 out_dir="${script_path}/out"
31 iso_label="${os_name}_${codename}_${arch}"
32 iso_publisher='Fascode Network <https://fascode.net>'
33 iso_application="${os_name} Live/Rescue CD"
34 iso_version="${codename}-$(date +%Y.%m.%d)"
35 iso_filename="${iso_name}-${iso_version}-${arch}.iso"
36 liveuser_name="fedora"
37 liveuser_password="fedora"
38 liveuser_shell="/usr/bin/zsh"
39
40 #-- language config --#
41
42 # Sets the default locale for the live environment.
43 # You can also place a package list for that locale name and install packages specific to that locale.
44 locale_name="en"
45 locale_gen_name="en_US.UTF-8"
46 locale_version="gl"
47 locale_time="UTC"
48 locale_fullname="global"
49
50 debug=false
51 cache_only=false
52 grub2_standalone_cmd=grub2-mkstandalone
53
54 start_time="$(date +%s)"
55
56 _msg_common() {
57     if [[ "${debug}" = true ]]; then
58         local _current_time
59         local _time
60         _current_time="$(date +%s)"
61         _time="$(("${_current_time}"-"${start_time}"))"
62
63         if [[ "${_time}" -ge 3600 ]]; then
64             echo "[$(date -d @${_time} +%H:%M.%S)]$("${script_path}/echo_color" -t 6 "[LFBS Core]")"
65         elif [[ "${_time}" -ge 60 ]]; then
66             echo "[00:$(date -d @${_time} +%M.%S)]$("${script_path}/echo_color" -t 6 "[LFBS Core]")"
67         else
68             echo "[00:00.$(date -d @${_time} +%S)] $("${script_path}/echo_color" -t 6 "[LFBS Core]")"
69         fi
70     else
71         "${script_path}/echo_color" -t 6 "[LFBS Core]"
72     fi
73 }
74
75 # Show an INFO message
76 # _msg_info <message>
77 _msg_info() {
78     local _msg
79     _msg="${@}"
80     echo "$(_msg_common)  $("${script_path}/echo_color" -t 2 "Info:") ${_msg}"
81 }
82
83 # Show an debug message
84 # _msg_debug <message>
85 _msg_debug() {
86     if [[ "${debug}" = true ]]; then
87         local _msg
88         _msg="${@}"
89         echo "$(_msg_common)  $("${script_path}/echo_color" -t 3 "Debug:") ${_msg}"
90     fi
91 }
92
93 # Show an ERROR message then exit with status
94 # _msg_error <message> <exit code>
95 _msg_error() {
96     local _msg
97     local _error
98     _msg="${1}"
99     _error=${2}
100     echo "$(_msg_common)  $("${script_path}/echo_color" -t 1 "Error:") ${_msg}"
101
102     if [[ ! ${_error} = 0 ]]; then
103         exit ${_error}
104     fi
105 }
106
107 # Unmount chroot dir
108 umount_chroot () {
109     local mount
110
111     for mount in $(mount | awk '{print $3}' | grep "$(realpath "${work_dir}")" | sort -r); do
112         if [[ ! "${mount}" == "${work_dir}/airootfs" ]]; then
113             _msg_info "Unmounting ${mount}"
114             umount -fl "${mount}"
115         fi
116     done
117 }
118
119 # Unmount chroot dir and airootfs
120 umount_chroot_airootfs () {
121     local mount
122
123     for mount in $(mount | awk '{print $3}' | grep "$(realpath "${work_dir}")" | sort -r); do
124         _msg_info "Unmounting ${mount}"
125         umount -fl "${mount}"
126     done
127 }
128 # Helper function to run make_*() only one time.
129 run_once() {
130     local name
131     umount_chroot
132     name="$1"
133
134     if [[ ! -e "${work_dir}/build.${name}" ]]; then
135         _msg_info "$(echo $name | sed "s@_@ @g") is starting."
136         "${1}"
137         _msg_info "$(echo $name | sed "s@_@ @g") was done!"
138         touch "${work_dir}/build.${name}"
139     fi
140 }
141
142 run_cmd() {
143     local mount
144
145     for mount in "dev" "dev/pts" "proc" "sys" "etc/resolv.conf"; do
146     #for mount in "dev" "dev/pts" "proc" "sys" ; do
147         if [[ "${mount}" == "etc/resolv.conf" ]]; then
148             cp /etc/resolv.conf "${work_dir}/airootfs/${mount}"
149         else
150             mount --bind /${mount} "${work_dir}/airootfs/${mount}"
151         fi
152     done
153     
154     unshare --fork --pid chroot "${work_dir}/airootfs" "${@}"
155
156     for mount in $(mount | awk '{print $3}' | grep "$(realpath "${work_dir}")" | sort -r); do
157         if [[ ! "${mount}" == "${work_dir}/airootfs" ]]; then
158             umount -fl "${mount}"
159         fi
160     done
161 }
162
163 _dnf_install() {    
164     mount --bind "${cache_dir}" "${work_dir}/airootfs/dnf_cache"
165     run_cmd dnf -c /dnf_conf install -y ${@}
166 }
167
168 # rm helper
169 # Delete the file if it exists.
170 # For directories, rm -rf is used.
171 # If the file does not exist, skip it.
172 # remove <file> <file> ...
173 remove() {
174     local _list
175     local _file
176     _list=($(echo "$@"))
177
178     for _file in "${_list[@]}"; do
179         _msg_debug "Removeing ${_file}"
180
181         if [[ -f ${_file} ]]; then
182             rm -f "${_file}"
183         elif [[ -d ${_file} ]]; then
184             rm -rf "${_file}"
185         fi
186     done
187 }
188
189 # Show help
190 _usage () {
191     echo "usage ${0} [options] [channel]"
192     echo
193     echo " General options:"
194     echo
195     echo "    -a | --arch <str>      Set architecture"
196     echo "                           Default: ${arch}"
197     echo "    -b | --bootsplash      Enable Plymouth"
198     echo "    -l | --lang <lang>     Specifies the default language for the live environment"
199     echo "                           Default: ${locale_name}"
200     echo "    -m | --mirror <url>    Set apt mirror server."
201     echo "                           Default: ${mirror}"
202     echo "    -o | --out <out_dir>   Set the output directory"
203     echo "                           Default: ${out_dir}"
204     echo "    -w | --work <work_dir> Set the working directory"
205     echo "                           Default: ${work_dir}"
206     echo "    -c | --cache <cache_dir> Set the cache directory"
207     echo "                           Default: ${cache_dir}"
208     echo
209     echo "    -d | --debug           "
210     echo "    -h | --help            This help message and exit"
211     echo
212     echo "You can switch between installed packages, files included in images, etc. by channel."
213     echo
214     echo " Language for each architecture:"
215     for _list in ${script_path}/system/locale-* ; do
216         _arch="${_list#${script_path}/system/locale-}"
217         echo -n "    ${_arch}"
218         for i in $( seq 1 $(( ${blank} - 4 - ${#_arch} )) ); do
219             echo -ne " "
220         done
221         _locale_name_list=$(cat ${_list} | grep -h -v ^'#' | awk '{print $1}')
222         for _lang in ${_locale_name_list[@]};do
223             echo -n "${_lang} "
224         done
225         echo
226     done
227     echo " Channel:"
228     
229     local _channel
230     local channel_list
231     local description
232
233     for _channel in $(ls -l "${channels_dir}" | awk '$1 ~ /d/ {print $9 }'); do
234         if [[ -n $(ls "${channels_dir}/${_channel}") ]] && [[ ! "${_channel}" = "share" ]]; then
235             channel_list+=( "${_channel}" )
236         fi
237     done
238
239     for _channel in ${channel_list[@]}; do
240         if [[ -f "${channels_dir}/${_channel}/description.txt" ]]; then
241             description=$(cat "${channels_dir}/${_channel}/description.txt")
242         else
243             description="This channel does not have a description.txt."
244         fi
245
246         echo -ne "    ${_channel}"
247
248         for i in $( seq 1 $(( 23 - ${#_channel} )) ); do
249             echo -ne " "
250         done
251         
252         echo -ne "${description}\n"
253     done
254 }
255
256 dnfstrap() {
257     if [[ ! -d "${cache_dir}" ]]; then
258         mkdir -p "${cache_dir}"
259     fi
260     cp -rf "${script_path}/system/dnfconf.conf" "${work_dir}/airootfs/dnf_conf"
261     if [[ ! -d "${work_dir}/airootfs/dnf_cache" ]]; then
262         mkdir -p "${work_dir}/airootfs/dnf_cache"
263     fi
264     mount --bind "${cache_dir}" "${work_dir}/airootfs/dnf_cache"
265     dnf -c "${work_dir}/airootfs/dnf_conf" --installroot="${work_dir}/airootfs" $(${script_path}/system/repository-json-parser.py ${script_path}/system/repository.json) install ${@} -y
266     umount -fl "${work_dir}/airootfs/dnf_cache"
267 }
268
269 make_basefs() {
270     _msg_info "Installing Fedora to '${work_dir}/airootfs'..."
271     dnfstrap @Core yamad-repo
272     _msg_info "${codename} installed successfully!"
273     
274     echo 'PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${PATH}' > "${work_dir}/airootfs/etc/bash.bashrc"
275     mount --bind "${cache_dir}" "${work_dir}/airootfs/dnf_cache"
276     run_cmd dnf -c /dnf_conf update -y
277     run_cmd dnf -c /dnf_conf -y remove $(run_cmd dnf -c /dnf_conf repoquery --installonly --latest-limit=-1 -q)
278     # run_cmd apt-get upgrade
279 }
280
281
282 # Parse files
283 parse_files() {
284     #-- ロケールを解析、設定 --#
285     local _get_locale_line_number _locale_config_file _locale_name_list _locale_line_number _locale_config_line
286
287     # 選択されたロケールの設定が描かれた行番号を取得
288     _locale_config_file="${script_path}/system/locale-${arch}"
289     _locale_name_list=($(cat "${_locale_config_file}" | grep -h -v ^'#' | awk '{print $1}'))
290     _get_locale_line_number() {
291         local _lang _count=0
292         for _lang in ${_locale_name_list[@]}; do
293             _count=$(( _count + 1 ))
294             if [[ "${_lang}" == "${locale_name}" ]]; then echo "${_count}"; return 0; fi
295         done
296         echo -n "failed"
297     }
298     _locale_line_number="$(_get_locale_line_number)"
299
300     # 不正なロケール名なら終了する
301     [[ "${_locale_line_number}" == "failed" ]] && _msg_error "${locale_name} is not a valid language." "1"
302
303     # ロケール設定ファイルから該当の行を抽出
304     _locale_config_line=($(cat "${_locale_config_file}" | grep -h -v ^'#' | grep -v ^$ | head -n "${_locale_line_number}" | tail -n 1))
305
306     # 抽出された行に書かれた設定をそれぞれの変数に代入
307     # ここで定義された変数のみがグローバル変数
308     locale_name="${_locale_config_line[0]}"
309     locale_gen_name="${_locale_config_line[1]}"
310     locale_version="${_locale_config_line[2]}"
311     locale_time="${_locale_config_line[3]}"
312     locale_fullname="${_locale_config_line[4]}"
313 }
314
315 prepare_build() {
316     if [[ ${EUID} -ne 0 ]]; then
317         _msg_error "This script must be run as root." 1
318     fi
319     umount_chroot_airootfs
320     # Check codename
321     if [[ -z "$(grep -h -v ^'#' ${channels_dir}/${channel_name}/codename.${arch} | grep -x ${codename})" ]]; then
322         _msg_error "This codename (${channel_name}) is not supported on this channel (${codename})."
323     fi
324     if [[ ! -d "${work_dir}/squashfsroot/LiveOS/" ]]; then
325         mkdir -p "${work_dir}/squashfsroot/LiveOS/"
326         mkdir -p "${work_dir}/airootfs/"
327         _msg_info "Make rootfs image..."
328         truncate -s 6G "${work_dir}/squashfsroot/LiveOS/rootfs.img"
329         _msg_info "Format rootfs image..."
330         mkfs.ext4 -F "${work_dir}/squashfsroot/LiveOS/rootfs.img"
331     fi    
332     mkdir -p "${out_dir}"
333     _msg_info "Mount rootfs image..."
334     mount -o loop,rw,sync "${work_dir}/squashfsroot/LiveOS/rootfs.img" "${work_dir}/airootfs"
335
336 }
337
338 make_systemd() {
339     _dnf_install dbus-tools
340     run_cmd dbus-uuidgen --ensure=/etc/machine-id
341     if [[ ! -d "${work_dir}/airootfs/var/lib/dbus" ]]; then
342         run_cmd mkdir /var/lib/dbus
343     fi
344     run_cmd ln -sf /etc/machine-id /var/lib/dbus/machine-id
345 }
346 make_dnf_packages() {
347     remove "${work_dir}/airootfs/dnfpkglist"
348     #_apt_install initramfs-tools
349     # run_cmd env -i bash -c 'DEBIAN_FRONTEND=noninteractive apt-get dist-upgrade --yes'
350
351     if [[ -f "${channels_dir}/share/packages.${arch}" ]]; then
352         grep -h -v ^'#' "${channels_dir}/share/packages.${arch}" | grep -v "^$" >> "${work_dir}/airootfs/dnfpkglist"
353     fi
354     if [[ -f "${channels_dir}/share/packages-${locale_name}.${arch}" ]]; then
355         grep -h -v ^'#' "${channels_dir}/share/packages-${locale_name}.${arch}" | grep -v "^$" >> "${work_dir}/airootfs/dnfpkglist"
356     fi
357
358     if [[ -f "${channels_dir}/${channel_name}/packages.${arch}" ]]; then
359         grep -h -v ^'#' "${channels_dir}/${channel_name}/packages.${arch}" | grep -v "^$" >> "${work_dir}/airootfs/dnfpkglist"
360     fi
361
362     if [[ -f "${channels_dir}/${channel_name}/packages-${locale_name}.${arch}" ]]; then
363         grep -h -v ^'#' "${channels_dir}/${channel_name}/packages-${locale_name}.${arch}" | grep -v "^$" >> "${work_dir}/airootfs/dnfpkglist"
364     fi
365     if [[ ${bootsplash} == true ]]; then
366         if [[ -f "${channels_dir}/share/packages_plymouth.${arch}" ]]; then
367             grep -h -v ^'#' "${channels_dir}/share/packages_plymouth.${arch}" | grep -v "^$" >> "${work_dir}/airootfs/dnfpkglist"
368         fi
369         
370         if [[ -f "${channels_dir}/${channel_name}/packages_plymouth.${arch}" ]]; then
371             grep -h -v ^'#' "${channels_dir}/${channel_name}/packages_plymouth.${arch}" | grep -v "^$" >> "${work_dir}/airootfs/dnfpkglist"
372         fi
373     fi
374     if [[ -s "${work_dir}/airootfs/dnfpkglist" ]]; then
375         mount --bind "${cache_dir}" "${work_dir}/airootfs/dnf_cache"
376         run_cmd env -i bash -c 'dnf -y --nogpgcheck -c /dnf_conf install $(echo $(<dnfpkglist))'
377     fi
378
379     remove "${work_dir}/airootfs/dnfpkglist"
380 }
381
382 make_cp_airootfs() {
383     local _copy_airootfs
384
385     _copy_airootfs() {
386         local _dir="${1%/}"
387         if [[ -d "${_dir}" ]]; then
388             cp -af "${_dir}"/* "${work_dir}/airootfs"
389         fi
390     }
391     _copy_airootfs "${channels_dir}/share/airootfs"
392     _copy_airootfs "${channels_dir}/share/airootfs.${locale_name}"
393     _copy_airootfs "${channels_dir}/${channel_name}/airootfs"
394     _copy_airootfs "${channels_dir}/${channel_name}/airootfs.${locale_name}"
395 }
396
397 make_config() {
398     # customize_airootfs options
399     # -b                        : Enable boot splash.
400     # -d                        : Enable debug mode.
401     # -g <locale_gen_name>      : Set locale-gen.
402     # -i <inst_dir>             : Set install dir
403     # -k <kernel config line>   : Set kernel name.
404     # -o <os name>              : Set os name.
405     # -p <password>             : Set password.
406     # -s <shell>                : Set user shell.
407     # -t                        : Set plymouth theme.
408     # -u <username>             : Set live user name.
409     # -x                        : Enable bash debug mode.
410     # -r                        : Enable rebuild.
411     # -z <locale_time>          : Set the time zone.
412     # -l <locale_name>          : Set language.
413     #
414     # -j is obsolete in AlterISO3 and cannot be used.
415     # -k changed in AlterISO3 from passing kernel name to passing kernel configuration.
416     local _airootfs_script_options _run_script
417     _airootfs_script_options="-p ${liveuser_password} -u ${liveuser_name} -o ${os_name} -s ${liveuser_shell} -a ${arch} -g ${locale_gen_name} -l ${locale_name} -z ${locale_time} "
418     if [[ ${bootsplash} == true ]]; then
419         _airootfs_script_options="${_airootfs_script_options} -b"
420     fi
421     _run_script() {
422         local _file
423         for _file in ${@}; do
424             if [[ -f "${work_dir}/airootfs${_file}" ]]; then run_cmd "${_file}" ${_airootfs_script_options}; fi
425             if [[ -f "${work_dir}/airootfs${_file}" ]]; then chmod 755 "${work_dir}/airootfs${_file}"; fi
426         done
427     }
428
429     _run_script "/root/customize_airootfs.sh" "/root/customize_airootfs_${channel_name}.sh"
430 }
431
432 make_clean() {
433     mount --bind "${cache_dir}" "${work_dir}/airootfs/dnf_cache"
434     run_cmd dnf -c /dnf_conf -y remove $(run_cmd dnf -c /dnf_conf repoquery --installonly --latest-limit=-1 -q)
435 }
436
437 make_squashfs() {
438     # prepare
439     remove "${bootfiles_dir}"
440     if [[ -d "${work_dir}/airootfs/dnf_cache" ]]; then
441         rm -rf "${work_dir}/airootfs/dnf_cache"
442     fi
443     mkdir -p "${bootfiles_dir}"/{grub,LiveOS,boot,isolinux}
444     #generate initrd
445     _msg_info "make initrd..."
446     run_cmd dracut --xz --add "dmsquash-live convertfs pollcdrom" --no-hostonly --no-early-microcode /boot/initrd0 `run_cmd ls /lib/modules`
447     cp ${work_dir}/airootfs/boot/vmlinuz-$(run_cmd ls /lib/modules) ${bootfiles_dir}/boot/vmlinuz
448     mv ${work_dir}/airootfs/boot/initrd0 ${bootfiles_dir}/boot/initrd
449     #cp isolinux
450     cp "${nfb_dir}"/isolinux/* "${bootfiles_dir}/isolinux/"
451     # make squashfs
452     remove "${work_dir}/airootfs/boot"
453     mkdir "${work_dir}/airootfs/boot"
454     cp ${bootfiles_dir}/boot/vmlinuz ${work_dir}/airootfs/boot/vmlinuz-$(run_cmd ls /lib/modules)
455     kernelkun=$(run_cmd ls /lib/modules)
456     echo -e "\nkernel-install add ${kernelkun} /boot/vmlinuz-${kernelkun}" >> ${work_dir}/airootfs/usr/share/calamares/final-process
457     umount "${work_dir}/airootfs"
458     _msg_info "Minimize rootfs..."
459     resize2fs -M "${work_dir}/squashfsroot/LiveOS/rootfs.img"
460     _msg_info "Compress rootfs.."
461     mksquashfs "${work_dir}/squashfsroot/" "${bootfiles_dir}/LiveOS/squashfs.img" -noappend -no-recovery -comp zstd -Xcompression-level 19 -b 1048576
462     _msg_info "Deleting block image..."
463     rm -rf "${work_dir}/squashfsroot/LiveOS/rootfs.img"
464 }
465
466 make_nfb() {
467     touch "${bootfiles_dir}/fedora_lfbs"
468     # isolinux setup
469     sed "s|%OS_NAME%|${os_name}|g" "${nfb_dir}/isolinux.cfg" | sed "s|%CD_LABEL%|${iso_label}|g"  > "${bootfiles_dir}/isolinux/isolinux.cfg"
470     #grub
471     sed "s|%OS_NAME%|${os_name}|g" "${nfb_dir}/grub.cfg" | sed "s|%CD_LABEL%|${iso_label}|g" > "${bootfiles_dir}/grub/grub.cfg"
472 }
473 make_efi() {
474     # UEFI 32bit (ia32)
475     ${grub2_standalone_cmd} \
476         --format=i386-efi \
477         --output="${bootfiles_dir}/grub/bootia32.efi" \
478         --locales="" \
479         --fonts="" \
480         "boot/grub/grub.cfg=${bootfiles_dir}/grub/grub.cfg"
481     
482     # UEFI 64bit (x64)
483     ${grub2_standalone_cmd} \
484         --format=x86_64-efi \
485         --output="${bootfiles_dir}/grub/bootx64.efi" \
486         --locales="" \
487         --fonts="" \
488         "boot/grub/grub.cfg=${bootfiles_dir}/grub/grub.cfg"
489
490     # create efiboot.img
491     truncate -s 200M "${bootfiles_dir}/grub/efiboot.img"
492     mkfs.fat -F 16 -f 1 -r 112 "${bootfiles_dir}/grub/efiboot.img"
493     mkdir "${bootfiles_dir}/mnt"
494     mount "${bootfiles_dir}/grub/efiboot.img" "${bootfiles_dir}/mnt"
495     mkdir -p "${bootfiles_dir}/mnt/efi/boot"
496     cp "${bootfiles_dir}/grub/bootia32.efi" "${bootfiles_dir}/mnt/efi/boot"
497     cp "${bootfiles_dir}/grub/bootx64.efi" "${bootfiles_dir}/mnt/efi/boot"
498     umount -d "${bootfiles_dir}/mnt"
499     remove "${bootfiles_dir}/mnt"
500 }
501 make_iso() {
502     cd "${bootfiles_dir}"
503
504     # create checksum (using at booting)
505     bash -c "(find . -type f -print0 | xargs -0 md5sum | grep -v "\./md5sum.txt" > md5sum.txt)"
506
507     # create iso
508     xorriso \
509         -as mkisofs \
510         -iso-level 3 \
511         -full-iso9660-filenames \
512         -volid "${iso_label}" \
513         -appid "${iso_application}" \
514         -publisher "${iso_publisher}" \
515         -preparer "prepared by LFBS" \
516         -b isolinux/isolinux.bin \
517             -no-emul-boot \
518             -boot-load-size 4 \
519             -boot-info-table \
520         -eltorito-alt-boot \
521             -eltorito-platform efi \
522             -eltorito-boot EFI/efiboot.img \
523             -no-emul-boot \
524         -isohybrid-mbr "${bootfiles_dir}/isolinux/isohdpfx.bin" \
525         -isohybrid-gpt-basdat \
526         -eltorito-catalog isolinux/boot.cat \
527         -output "${out_dir}/${iso_filename}" \
528         -graft-points \
529             "." \
530             "/isolinux/isolinux.bin=isolinux/isolinux.bin" \
531             "/EFI/efiboot.img=grub/efiboot.img"
532     
533     cd - > /dev/null
534 }
535
536 make_checksum() {
537     cd "${out_dir}"
538     _msg_info "Creating md5 checksum ..."
539     md5sum "${iso_filename}" > "${iso_filename}.md5"
540
541     _msg_info "Creating sha256 checksum ..."
542     sha256sum "${iso_filename}" > "${iso_filename}.sha256"
543     cd - > /dev/null 2>&1
544     umount_chroot_airootfs
545 }
546
547 # 引数解析()
548 # 参考記事:https://0e0.pw/ci83 https://0e0.pw/VJlg
549
550 _opt_short="w:l:o:hba:-:m:c:d"
551 _opt_long="help,arch:,codename:,debug,help,lang,mirror:,out:,work,cache-only,bootsplash"
552 OPT=$(getopt -o ${_opt_short} -l ${_opt_long} -- "${@}")
553
554 if [[ ${?} != 0 ]]; then
555     exit 1
556 fi
557
558 eval set -- "${OPT}"
559
560 while :; do
561     case ${1} in
562         -a | --arch)
563             arch="${2}"
564             shift 2
565             ;;
566         -b | --bootsplash)
567             bootsplash=true
568             shift 1
569             ;;
570         -c | --cache)
571             cache_dir="${2}"
572             shift 2
573             ;;
574         -d | --debug)
575             debug=true
576             shift 1
577             ;;
578         -h | --help)
579             _usage
580             exit 0
581             ;;
582         -m | --mirror)
583             mirror="${2}"
584             shift 2
585             ;;
586         -l | --lang)
587             locale_name="${2}"
588             shift 2
589             ;;
590         -o | --out)
591             out_dir="${2}"
592             shift 2
593             ;;
594         -w | --work)
595             work_dir="${2}"
596             shift 2
597             ;;
598         --cache-only)
599             cache_only=true
600             shift 1
601             ;;
602         --)
603             shift
604             break
605             ;;
606         *)
607             _msg_error "Invalid argument '${1}'"
608             _usage 1
609             ;;
610     esac
611 done
612 if [[ -f /etc/arch-release ]]; then
613     grub2_standalone_cmd=grub-mkstandalone
614 fi
615 bootfiles_dir="${work_dir}/bootfiles"
616 trap  umount_chroot_airootfs 0 2 15
617
618 if [[ -n "${1}" ]]; then
619     channel_name="${1}"
620     if [[ "${channel_name}" = "umount" ]]; then
621         umount_chroot_airootfs
622         exit 0
623     fi
624     if [[ "${channel_name}" = "clean" ]]; then
625         umount_chroot_airootfs
626         _msg_info "deleting work dir..."
627         remove "${work_dir}"
628         exit 0
629     fi
630     check_channel() {
631         local channel_list
632         local i
633         channel_list=()
634         
635         for _channel in $(ls -l "${channels_dir}" | awk '$1 ~ /d/ {print $9 }'); do
636             if [[ -n "$(ls "${channels_dir}/${_channel}")" ]] && [[ ! "${_channel}" = "share" ]]; then
637                 channel_list+=( "${_channel}" )
638             fi
639         done
640
641         for i in ${channel_list[@]}; do
642             if [[ "${i}" = "${channel_name}" ]]; then
643                 echo -n "true"
644                 return 0
645             fi
646         done
647
648         echo -n "false"
649         return 1
650     }
651
652     if [[ "$(check_channel ${channel_name})" = false ]]; then
653         _msg_error "Invalid channel ${channel_name}"
654         exit 1
655     fi
656 fi
657 iso_filename="${iso_name}-${codename}-${channel_name}-${locale_name}-$(date +%Y.%m.%d)-${arch}.iso"
658 umount_chroot_airootfs
659 if [[ -d "${work_dir}" ]]; then
660     _msg_info "deleting work dir..."
661     remove "${work_dir}"
662 fi
663
664 prepare_build
665 parse_files
666 run_once make_basefs
667 run_once make_systemd
668 run_once make_dnf_packages
669 run_once make_cp_airootfs
670 run_once make_config
671 run_once make_clean
672 run_once make_squashfs
673 run_once make_nfb
674 run_once make_efi
675 run_once make_iso
676 run_once make_checksum