2020-07-11 10:42:57 +02:00
|
|
|
#!/usr/bin/env bash
|
2020-05-30 00:01:28 +02:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2011-06-18 23:38:58 +02:00
|
|
|
|
|
|
|
set -e -u
|
|
|
|
|
2011-08-29 06:45:49 +02:00
|
|
|
iso_name=archlinux
|
2011-06-18 23:38:58 +02:00
|
|
|
iso_label="ARCH_$(date +%Y%m)"
|
2018-06-24 03:38:34 +02:00
|
|
|
iso_publisher="Arch Linux <http://www.archlinux.org>"
|
|
|
|
iso_application="Arch Linux Live/Rescue CD"
|
2011-08-29 06:45:49 +02:00
|
|
|
iso_version=$(date +%Y.%m.%d)
|
2011-06-18 23:38:58 +02:00
|
|
|
install_dir=arch
|
|
|
|
work_dir=work
|
2011-08-29 06:45:49 +02:00
|
|
|
out_dir=out
|
2020-06-25 23:01:54 +02:00
|
|
|
gpg_key=""
|
2011-06-18 23:38:58 +02:00
|
|
|
|
2012-12-16 16:55:27 +01:00
|
|
|
verbose=""
|
2020-07-16 22:54:16 +02:00
|
|
|
script_path="$( cd -P "$( dirname "$(readlink -f "$0")" )" && pwd )"
|
2012-06-23 11:37:56 +02:00
|
|
|
|
2018-06-23 21:09:33 +02:00
|
|
|
umask 0022
|
|
|
|
|
2012-12-16 16:55:27 +01:00
|
|
|
_usage ()
|
|
|
|
{
|
|
|
|
echo "usage ${0} [options]"
|
|
|
|
echo
|
|
|
|
echo " General options:"
|
|
|
|
echo " -N <iso_name> Set an iso filename (prefix)"
|
|
|
|
echo " Default: ${iso_name}"
|
|
|
|
echo " -V <iso_version> Set an iso version (in filename)"
|
|
|
|
echo " Default: ${iso_version}"
|
|
|
|
echo " -L <iso_label> Set an iso label (disk label)"
|
|
|
|
echo " Default: ${iso_label}"
|
2018-06-24 03:38:34 +02:00
|
|
|
echo " -P <publisher> Set a publisher for the disk"
|
|
|
|
echo " Default: '${iso_publisher}'"
|
|
|
|
echo " -A <application> Set an application name for the disk"
|
|
|
|
echo " Default: '${iso_application}'"
|
2012-12-16 16:55:27 +01:00
|
|
|
echo " -D <install_dir> Set an install_dir (directory inside iso)"
|
|
|
|
echo " Default: ${install_dir}"
|
|
|
|
echo " -w <work_dir> Set the working directory"
|
|
|
|
echo " Default: ${work_dir}"
|
|
|
|
echo " -o <out_dir> Set the output directory"
|
|
|
|
echo " Default: ${out_dir}"
|
|
|
|
echo " -v Enable verbose output"
|
|
|
|
echo " -h This help message"
|
2020-06-25 23:01:54 +02:00
|
|
|
exit "${1}"
|
2012-06-23 11:37:56 +02:00
|
|
|
}
|
2011-07-14 05:46:42 +02:00
|
|
|
|
2012-12-16 16:55:27 +01:00
|
|
|
# Helper function to run make_*() only one time per architecture.
|
|
|
|
run_once() {
|
2020-06-25 23:01:54 +02:00
|
|
|
if [[ ! -e "${work_dir}/build.${1}" ]]; then
|
|
|
|
"$1"
|
|
|
|
touch "${work_dir}/build.${1}"
|
2012-12-16 16:55:27 +01:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Setup custom pacman.conf with current cache directories.
|
|
|
|
make_pacman_conf() {
|
|
|
|
local _cache_dirs
|
2020-06-25 23:01:54 +02:00
|
|
|
_cache_dirs=("$(pacman -v 2>&1 | grep '^Cache Dirs:' | sed 's/Cache Dirs:\s*//g')")
|
|
|
|
sed -r "s|^#?\\s*CacheDir.+|CacheDir = $(echo -n "${_cache_dirs[@]}")|g" \
|
|
|
|
"${script_path}/pacman.conf" > "${work_dir}/pacman.conf"
|
2012-12-16 16:55:27 +01:00
|
|
|
}
|
|
|
|
|
2020-07-28 10:50:25 +02:00
|
|
|
# Prepare working directory and copy custom airootfs files (airootfs)
|
|
|
|
make_custom_airootfs() {
|
|
|
|
local _airootfs="${work_dir}/x86_64/airootfs"
|
|
|
|
mkdir -p -- "${_airootfs}"
|
|
|
|
|
|
|
|
if [[ -d "${script_path}/airootfs" ]]; then
|
|
|
|
cp -af --no-preserve=ownership -- "${script_path}/airootfs/." "${_airootfs}"
|
|
|
|
|
|
|
|
[[ -e "${_airootfs}/etc/shadow" ]] && chmod -f 0400 -- "${_airootfs}/etc/shadow"
|
|
|
|
[[ -e "${_airootfs}/etc/gshadow" ]] && chmod -f 0400 -- "${_airootfs}/etc/gshadow"
|
2020-07-20 11:18:16 +02:00
|
|
|
|
|
|
|
# Set up user home directories and permissions
|
|
|
|
if [[ -e "${_airootfs}/etc/passwd" ]]; then
|
|
|
|
while IFS=':' read -a passwd -r; do
|
|
|
|
[[ "${passwd[5]}" == '/' ]] && continue
|
|
|
|
|
|
|
|
if [[ -d "${_airootfs}${passwd[5]}" ]]; then
|
|
|
|
chown -hR -- "${passwd[2]}:${passwd[3]}" "${_airootfs}${passwd[5]}"
|
|
|
|
chmod -f 0750 -- "${_airootfs}${passwd[5]}"
|
|
|
|
else
|
|
|
|
install -d -m 0750 -o "${passwd[2]}" -g "${passwd[3]}" -- "${_airootfs}${passwd[5]}"
|
|
|
|
fi
|
|
|
|
done < "${_airootfs}/etc/passwd"
|
|
|
|
fi
|
2020-06-25 23:01:54 +02:00
|
|
|
fi
|
2014-12-21 22:54:24 +01:00
|
|
|
|
2012-12-16 16:55:27 +01:00
|
|
|
local _hook
|
2020-07-29 17:18:33 +02:00
|
|
|
mkdir -p -- "${work_dir}/x86_64/airootfs/etc/initcpio/hooks"
|
|
|
|
mkdir -p -- "${work_dir}/x86_64/airootfs/etc/initcpio/install"
|
2012-12-16 16:55:27 +01:00
|
|
|
for _hook in archiso archiso_shutdown archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs archiso_loop_mnt; do
|
2020-07-29 17:18:33 +02:00
|
|
|
cp "/usr/lib/initcpio/hooks/${_hook}" "${work_dir}/x86_64/airootfs/etc/initcpio/hooks/"
|
|
|
|
cp "/usr/lib/initcpio/install/${_hook}" "${work_dir}/x86_64/airootfs/etc/initcpio/install/"
|
2012-12-16 16:55:27 +01:00
|
|
|
done
|
2020-06-25 23:01:54 +02:00
|
|
|
sed -i "s|/usr/lib/initcpio/|/etc/initcpio/|g" "${work_dir}/x86_64/airootfs/etc/initcpio/install/archiso_shutdown"
|
2020-07-29 17:18:33 +02:00
|
|
|
cp /usr/lib/initcpio/install/archiso_kms "${work_dir}/x86_64/airootfs/etc/initcpio/install/"
|
|
|
|
cp /usr/lib/initcpio/archiso_shutdown "${work_dir}/x86_64/airootfs/etc/initcpio/"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Packages (airootfs)
|
|
|
|
make_packages() {
|
2020-06-25 23:01:54 +02:00
|
|
|
if [[ "${gpg_key}" ]]; then
|
|
|
|
gpg --export "${gpg_key}" > "${work_dir}/gpgkey"
|
|
|
|
exec 17<>"${work_dir}/gpgkey"
|
|
|
|
fi
|
|
|
|
if [ -n "${verbose}" ]; then
|
2020-07-29 17:18:33 +02:00
|
|
|
ARCHISO_GNUPG_FD="${gpg_key:+17}" mkarchiso -v -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" \
|
|
|
|
-p "$(grep -h -v '^#' "${script_path}/packages.x86_64"| sed ':a;N;$!ba;s/\n/ /g')" install
|
2020-06-25 23:01:54 +02:00
|
|
|
else
|
2020-07-29 17:18:33 +02:00
|
|
|
ARCHISO_GNUPG_FD="${gpg_key:+17}" mkarchiso -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" \
|
|
|
|
-p "$(grep -h -v '^#' "${script_path}/packages.x86_64"| sed ':a;N;$!ba;s/\n/ /g')" install
|
2016-02-13 10:08:38 +01:00
|
|
|
fi
|
2020-06-25 23:01:54 +02:00
|
|
|
if [[ "${gpg_key}" ]]; then
|
2016-02-13 10:08:38 +01:00
|
|
|
exec 17<&-
|
|
|
|
fi
|
2011-06-18 23:38:58 +02:00
|
|
|
}
|
|
|
|
|
2014-06-28 05:35:50 +02:00
|
|
|
# Customize installation (airootfs)
|
|
|
|
make_customize_airootfs() {
|
2020-07-20 14:54:11 +02:00
|
|
|
if [[ -e "${script_path}/airootfs/etc/passwd" ]]; then
|
|
|
|
while IFS=':' read -a passwd -r; do
|
|
|
|
[[ "${passwd[5]}" == '/' ]] && continue
|
|
|
|
cp -RdT --preserve=mode,timestamps,links -- "${work_dir}/x86_64/airootfs/etc/skel" "${work_dir}/x86_64/airootfs${passwd[5]}"
|
|
|
|
chown -hR -- "${passwd[2]}:${passwd[3]}" "${work_dir}/x86_64/airootfs${passwd[5]}"
|
|
|
|
|
|
|
|
done < "${script_path}/airootfs/etc/passwd"
|
|
|
|
fi
|
|
|
|
|
2020-07-17 11:10:35 +02:00
|
|
|
if [[ -e "${work_dir}/x86_64/airootfs/root/customize_airootfs.sh" ]]; then
|
|
|
|
if [ -n "${verbose}" ]; then
|
|
|
|
mkarchiso -v -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" \
|
|
|
|
-r '/root/customize_airootfs.sh' run
|
|
|
|
else
|
|
|
|
mkarchiso -w "${work_dir}/x86_64" -C "${work_dir}/pacman.conf" -D "${install_dir}" \
|
|
|
|
-r '/root/customize_airootfs.sh' run
|
|
|
|
fi
|
|
|
|
rm "${work_dir}/x86_64/airootfs/root/customize_airootfs.sh"
|
2020-06-25 23:01:54 +02:00
|
|
|
fi
|
2012-09-26 17:24:41 +02:00
|
|
|
}
|
2012-09-26 17:24:41 +02:00
|
|
|
|
2012-12-16 16:55:27 +01:00
|
|
|
# Prepare kernel/initramfs ${install_dir}/boot/
|
|
|
|
make_boot() {
|
2020-06-25 23:01:54 +02:00
|
|
|
mkdir -p "${work_dir}/iso/${install_dir}/boot/x86_64"
|
2020-07-28 11:38:04 +02:00
|
|
|
cp "${work_dir}/x86_64/airootfs/boot/archiso.img" "${work_dir}/iso/${install_dir}/boot/x86_64/"
|
|
|
|
cp "${work_dir}/x86_64/airootfs/boot/vmlinuz-linux" "${work_dir}/iso/${install_dir}/boot/x86_64/"
|
2012-12-16 16:55:27 +01:00
|
|
|
}
|
2012-09-26 17:24:41 +02:00
|
|
|
|
2012-12-16 16:55:27 +01:00
|
|
|
# Add other aditional/extra files to ${install_dir}/boot/
|
|
|
|
make_boot_extra() {
|
2020-07-12 15:28:38 +02:00
|
|
|
if [[ -e "${work_dir}/x86_64/airootfs/boot/memtest86+/memtest.bin" ]]; then
|
2020-07-28 11:38:04 +02:00
|
|
|
# rename for PXE: https://wiki.archlinux.org/index.php/Syslinux#Using_memtest
|
2020-07-12 15:28:38 +02:00
|
|
|
cp "${work_dir}/x86_64/airootfs/boot/memtest86+/memtest.bin" "${work_dir}/iso/${install_dir}/boot/memtest"
|
2020-07-28 11:38:04 +02:00
|
|
|
mkdir -p "${work_dir}/iso/${install_dir}/boot/licenses/memtest86+/"
|
2020-07-12 15:28:38 +02:00
|
|
|
cp "${work_dir}/x86_64/airootfs/usr/share/licenses/common/GPL2/license.txt" \
|
2020-07-28 11:38:04 +02:00
|
|
|
"${work_dir}/iso/${install_dir}/boot/licenses/memtest86+/"
|
2020-07-12 15:28:38 +02:00
|
|
|
fi
|
|
|
|
if [[ -e "${work_dir}/x86_64/airootfs/boot/intel-ucode.img" ]]; then
|
2020-07-28 11:38:04 +02:00
|
|
|
cp "${work_dir}/x86_64/airootfs/boot/intel-ucode.img" "${work_dir}/iso/${install_dir}/boot/"
|
|
|
|
mkdir -p "${work_dir}/iso/${install_dir}/boot/licenses/intel-ucode/"
|
|
|
|
cp "${work_dir}/x86_64/airootfs/usr/share/licenses/intel-ucode/"* \
|
|
|
|
"${work_dir}/iso/${install_dir}/boot/licenses/intel-ucode/"
|
2020-07-12 15:28:38 +02:00
|
|
|
fi
|
|
|
|
if [[ -e "${work_dir}/x86_64/airootfs/boot/amd-ucode.img" ]]; then
|
2020-07-28 11:38:04 +02:00
|
|
|
cp "${work_dir}/x86_64/airootfs/boot/amd-ucode.img" "${work_dir}/iso/${install_dir}/boot/"
|
|
|
|
mkdir -p "${work_dir}/iso/${install_dir}/boot/licenses/amd-ucode/"
|
|
|
|
cp "${work_dir}/x86_64/airootfs/usr/share/licenses/amd-ucode/"* \
|
|
|
|
"${work_dir}/iso/${install_dir}/boot/licenses/amd-ucode/"
|
2020-07-12 15:28:38 +02:00
|
|
|
fi
|
[configs/releng] Add UEFI boot support via Linux >= 3.3 EFI boot stub on x86_64
Makes an efiboot.img (FAT16) for "El Torito" (additional).
Under an EFI-system, implies that this .ISO works only if is used
as "CD-ROM/DVD-ROM" not in ISO-HYBRID-MBR mode.
If you want, an EFI-ready USB-key, just unpack this "<ISO>/EFI/efiboot.img" (FAT16) to
"<USB-key-FAT-formatted>/EFI" then copy "<ISO>/arch" and setup the filesystem label.
An aditional EFI shell is provided with an startup script for automatic booting
until EFI_STUB supports "linux.conf" to pass boot parms to kernel.
Anyway I think that is a good idea to keep this shell, so can customize boot parms,
or for doing other tasks on systems without an EFI-shell.
RFCv1: Initial efiboot.img build with vmlinuz.efi (Linux with EFI_STUB enabled)
and archiso.img (initramfs).
RFCv2: Use an startup.nsh with EFI-Shell 2.0 (generated from build.sh) for automatic boot.
RFCv3: Use and older EFI-Shell 1.0 instead of 2.0, since not all UEFI-systems
are compatible with 2.3+ specs.
RFCv4: The script "startup.nsh" improved by Keshav P R, using a for-loop
(see notes below from original commit), now that has more than 1-line,
I moved it to an independent file and is parsed by build.sh.
----
About startup.nsh:
Author: Keshav P R <the.ridikulus.rat@gmail.com>
Date: Thu Apr 5 10:33:20 2012 +0530
[configs/releng] Search in all existing UEFI FS mountpoints for archiso efistub kernel file
There is no guarantee that the efistub kernel will always be in fs0:
(similar to the case inside linux OS where the sda, sdb confusion exists,
hence the need for UUIDs), especially when USB (instead os CD/ISO) is
used for booting.
Hence loop through all possible fs mountpoints (in UEFI) in startup.nsh
and try to launch the first mountpoint that contains the archiso files.
Cd's into the fs%m:\EFI\archiso directory also may remove future issues
with efistub's linux.conf where the efistub might have problems
identifying the directory from which the kernel was launched.
Also add an helpful echo message showing the user the UEFI PATH to the
archiso kernel file being launched by startup.nsh .
Hopefully this should work in both CD and USB. Tested in Tianocore
UDK/EDK2 DuetPkg X64 UEFI 2.3.1 firmware with EdkShellBinPkg's Shell.
----
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
2012-04-11 02:01:12 +02:00
|
|
|
}
|
|
|
|
|
2011-06-18 23:38:58 +02:00
|
|
|
# Prepare /${install_dir}/boot/syslinux
|
|
|
|
make_syslinux() {
|
2020-06-25 23:01:54 +02:00
|
|
|
_uname_r=$(file -b "${work_dir}/x86_64/airootfs/boot/vmlinuz-linux"| awk 'f{print;f=0} /version/{f=1}' RS=' ')
|
|
|
|
mkdir -p "${work_dir}/iso/${install_dir}/boot/syslinux"
|
|
|
|
for _cfg in "${script_path}/syslinux/"*.cfg; do
|
2012-12-16 16:55:27 +01:00
|
|
|
sed "s|%ARCHISO_LABEL%|${iso_label}|g;
|
2020-06-25 23:01:54 +02:00
|
|
|
s|%INSTALL_DIR%|${install_dir}|g" "${_cfg}" > "${work_dir}/iso/${install_dir}/boot/syslinux/${_cfg##*/}"
|
2012-12-16 16:55:27 +01:00
|
|
|
done
|
2020-07-28 11:38:04 +02:00
|
|
|
cp "${script_path}/syslinux/splash.png" "${work_dir}/iso/${install_dir}/boot/syslinux/"
|
|
|
|
cp "${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/"*.c32 "${work_dir}/iso/${install_dir}/boot/syslinux/"
|
|
|
|
cp "${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/lpxelinux.0" "${work_dir}/iso/${install_dir}/boot/syslinux/"
|
|
|
|
cp "${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/memdisk" "${work_dir}/iso/${install_dir}/boot/syslinux/"
|
2020-06-25 23:01:54 +02:00
|
|
|
mkdir -p "${work_dir}/iso/${install_dir}/boot/syslinux/hdt"
|
|
|
|
gzip -c -9 "${work_dir}/x86_64/airootfs/usr/share/hwdata/pci.ids" > \
|
|
|
|
"${work_dir}/iso/${install_dir}/boot/syslinux/hdt/pciids.gz"
|
|
|
|
gzip -c -9 "${work_dir}/x86_64/airootfs/usr/lib/modules/${_uname_r}/modules.alias" > \
|
|
|
|
"${work_dir}/iso/${install_dir}/boot/syslinux/hdt/modalias.gz"
|
2011-06-18 23:38:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Prepare /isolinux
|
|
|
|
make_isolinux() {
|
2020-06-25 23:01:54 +02:00
|
|
|
mkdir -p "${work_dir}/iso/isolinux"
|
|
|
|
sed "s|%INSTALL_DIR%|${install_dir}|g" \
|
|
|
|
"${script_path}/isolinux/isolinux.cfg" > "${work_dir}/iso/isolinux/isolinux.cfg"
|
|
|
|
cp "${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/isolinux.bin" "${work_dir}/iso/isolinux/"
|
|
|
|
cp "${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/isohdpfx.bin" "${work_dir}/iso/isolinux/"
|
|
|
|
cp "${work_dir}/x86_64/airootfs/usr/lib/syslinux/bios/ldlinux.c32" "${work_dir}/iso/isolinux/"
|
2011-06-18 23:38:58 +02:00
|
|
|
}
|
|
|
|
|
2012-12-16 16:55:27 +01:00
|
|
|
# Prepare /EFI
|
|
|
|
make_efi() {
|
2020-06-25 23:01:54 +02:00
|
|
|
mkdir -p "${work_dir}/iso/EFI/boot"
|
|
|
|
cp "${work_dir}/x86_64/airootfs/usr/lib/systemd/boot/efi/systemd-bootx64.efi" \
|
|
|
|
"${work_dir}/iso/EFI/boot/bootx64.efi"
|
2012-12-16 16:55:27 +01:00
|
|
|
|
2020-06-25 23:01:54 +02:00
|
|
|
mkdir -p "${work_dir}/iso/loader/entries"
|
|
|
|
cp "${script_path}/efiboot/loader/loader.conf" "${work_dir}/iso/loader/"
|
2012-12-16 16:55:27 +01:00
|
|
|
|
|
|
|
sed "s|%ARCHISO_LABEL%|${iso_label}|g;
|
|
|
|
s|%INSTALL_DIR%|${install_dir}|g" \
|
2020-06-25 23:01:54 +02:00
|
|
|
"${script_path}/efiboot/loader/entries/archiso-x86_64-usb.conf" > \
|
|
|
|
"${work_dir}/iso/loader/entries/archiso-x86_64.conf"
|
2012-12-16 16:55:27 +01:00
|
|
|
|
2020-05-23 13:32:28 +02:00
|
|
|
# edk2-shell based UEFI shell
|
2020-06-23 20:44:29 +02:00
|
|
|
# shellx64.efi is picked up automatically when on /
|
2020-06-25 23:01:54 +02:00
|
|
|
cp /usr/share/edk2-shell/x64/Shell_Full.efi "${work_dir}/iso/shellx64.efi"
|
2011-06-18 23:38:58 +02:00
|
|
|
}
|
|
|
|
|
2012-12-16 16:55:27 +01:00
|
|
|
# Prepare efiboot.img::/EFI for "El Torito" EFI boot mode
|
|
|
|
make_efiboot() {
|
2020-06-25 23:01:54 +02:00
|
|
|
mkdir -p "${work_dir}/iso/EFI/archiso"
|
|
|
|
truncate -s 64M "${work_dir}/iso/EFI/archiso/efiboot.img"
|
|
|
|
mkfs.fat -n ARCHISO_EFI "${work_dir}/iso/EFI/archiso/efiboot.img"
|
2011-06-18 23:38:58 +02:00
|
|
|
|
2020-06-25 23:01:54 +02:00
|
|
|
mkdir -p "${work_dir}/efiboot"
|
|
|
|
mount "${work_dir}/iso/EFI/archiso/efiboot.img" "${work_dir}/efiboot"
|
2011-06-18 23:38:58 +02:00
|
|
|
|
2020-06-25 23:01:54 +02:00
|
|
|
mkdir -p "${work_dir}/efiboot/EFI/archiso"
|
2020-07-28 11:38:04 +02:00
|
|
|
cp "${work_dir}/iso/${install_dir}/boot/x86_64/vmlinuz-linux" "${work_dir}/efiboot/EFI/archiso/"
|
|
|
|
cp "${work_dir}/iso/${install_dir}/boot/x86_64/archiso.img" "${work_dir}/efiboot/EFI/archiso/"
|
2011-06-18 23:38:58 +02:00
|
|
|
|
2020-07-28 11:38:04 +02:00
|
|
|
cp "${work_dir}/iso/${install_dir}/boot/intel-ucode.img" "${work_dir}/efiboot/EFI/archiso/"
|
|
|
|
cp "${work_dir}/iso/${install_dir}/boot/amd-ucode.img" "${work_dir}/efiboot/EFI/archiso/"
|
2014-10-30 01:13:29 +01:00
|
|
|
|
2020-06-25 23:01:54 +02:00
|
|
|
mkdir -p "${work_dir}/efiboot/EFI/boot"
|
|
|
|
cp "${work_dir}/x86_64/airootfs/usr/lib/systemd/boot/efi/systemd-bootx64.efi" \
|
|
|
|
"${work_dir}/efiboot/EFI/boot/bootx64.efi"
|
2011-06-18 23:38:58 +02:00
|
|
|
|
2020-06-25 23:01:54 +02:00
|
|
|
mkdir -p "${work_dir}/efiboot/loader/entries"
|
|
|
|
cp "${script_path}/efiboot/loader/loader.conf" "${work_dir}/efiboot/loader/"
|
2011-06-18 23:38:58 +02:00
|
|
|
|
2012-12-16 16:55:27 +01:00
|
|
|
sed "s|%ARCHISO_LABEL%|${iso_label}|g;
|
|
|
|
s|%INSTALL_DIR%|${install_dir}|g" \
|
2020-06-25 23:01:54 +02:00
|
|
|
"${script_path}/efiboot/loader/entries/archiso-x86_64-cd.conf" > \
|
|
|
|
"${work_dir}/efiboot/loader/entries/archiso-x86_64.conf"
|
2011-08-29 06:45:49 +02:00
|
|
|
|
2020-06-23 20:44:29 +02:00
|
|
|
# shellx64.efi is picked up automatically when on /
|
2020-06-25 23:01:54 +02:00
|
|
|
cp "${work_dir}/iso/shellx64.efi" "${work_dir}/efiboot/"
|
2011-08-29 06:45:49 +02:00
|
|
|
|
2020-06-25 23:01:54 +02:00
|
|
|
umount -d "${work_dir}/efiboot"
|
2011-08-29 06:45:49 +02:00
|
|
|
}
|
2011-06-18 23:38:58 +02:00
|
|
|
|
2014-06-28 05:35:50 +02:00
|
|
|
# Build airootfs filesystem image
|
2012-12-16 16:55:27 +01:00
|
|
|
make_prepare() {
|
2020-06-25 23:01:54 +02:00
|
|
|
cp -a -l -f "${work_dir}/x86_64/airootfs" "${work_dir}"
|
|
|
|
if [ -n "${verbose}" ]; then
|
|
|
|
mkarchiso -v -w "${work_dir}" -D "${install_dir}" pkglist
|
|
|
|
mkarchiso -v -w "${work_dir}" -D "${install_dir}" ${gpg_key:+-g ${gpg_key}} prepare
|
|
|
|
else
|
|
|
|
mkarchiso -w "${work_dir}" -D "${install_dir}" pkglist
|
|
|
|
mkarchiso -w "${work_dir}" -D "${install_dir}" ${gpg_key:+-g ${gpg_key}} prepare
|
|
|
|
fi
|
|
|
|
rm -rf "${work_dir}/airootfs"
|
|
|
|
# rm -rf "${work_dir}/x86_64/airootfs" (if low space, this helps)
|
2011-08-29 06:45:49 +02:00
|
|
|
}
|
2011-06-18 23:38:58 +02:00
|
|
|
|
2012-12-16 16:55:27 +01:00
|
|
|
# Build ISO
|
|
|
|
make_iso() {
|
2020-06-25 23:01:54 +02:00
|
|
|
if [ -n "${verbose}" ]; then
|
|
|
|
mkarchiso -v -w "${work_dir}" -D "${install_dir}" -L "${iso_label}" -P "${iso_publisher}" \
|
|
|
|
-A "${iso_application}" -o "${out_dir}" iso "${iso_name}-${iso_version}-x86_64.iso"
|
|
|
|
else
|
|
|
|
mkarchiso -w "${work_dir}" -D "${install_dir}" -L "${iso_label}" -P "${iso_publisher}" \
|
|
|
|
-A "${iso_application}" -o "${out_dir}" iso "${iso_name}-${iso_version}-x86_64.iso"
|
|
|
|
fi
|
2011-06-18 23:38:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if [[ ${EUID} -ne 0 ]]; then
|
|
|
|
echo "This script must be run as root."
|
|
|
|
_usage 1
|
|
|
|
fi
|
|
|
|
|
2018-06-24 03:38:34 +02:00
|
|
|
while getopts 'N:V:L:P:A:D:w:o:g:vh' arg; do
|
2011-08-29 06:45:49 +02:00
|
|
|
case "${arg}" in
|
2012-12-16 16:55:27 +01:00
|
|
|
N) iso_name="${OPTARG}" ;;
|
|
|
|
V) iso_version="${OPTARG}" ;;
|
|
|
|
L) iso_label="${OPTARG}" ;;
|
2018-06-24 03:38:34 +02:00
|
|
|
P) iso_publisher="${OPTARG}" ;;
|
|
|
|
A) iso_application="${OPTARG}" ;;
|
2012-12-16 16:55:27 +01:00
|
|
|
D) install_dir="${OPTARG}" ;;
|
|
|
|
w) work_dir="${OPTARG}" ;;
|
|
|
|
o) out_dir="${OPTARG}" ;;
|
2016-02-13 10:08:38 +01:00
|
|
|
g) gpg_key="${OPTARG}" ;;
|
2012-12-16 16:55:27 +01:00
|
|
|
v) verbose="-v" ;;
|
|
|
|
h) _usage 0 ;;
|
2011-08-29 06:45:49 +02:00
|
|
|
*)
|
2012-12-16 16:55:27 +01:00
|
|
|
echo "Invalid argument '${arg}'"
|
|
|
|
_usage 1
|
|
|
|
;;
|
2011-08-29 06:45:49 +02:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2020-06-25 23:01:54 +02:00
|
|
|
mkdir -p "${work_dir}"
|
2011-08-29 06:45:49 +02:00
|
|
|
|
2012-12-16 16:55:27 +01:00
|
|
|
run_once make_pacman_conf
|
2020-07-28 10:50:25 +02:00
|
|
|
run_once make_custom_airootfs
|
2018-06-23 21:26:36 +02:00
|
|
|
run_once make_packages
|
|
|
|
run_once make_customize_airootfs
|
|
|
|
run_once make_boot
|
2012-12-16 16:55:27 +01:00
|
|
|
run_once make_boot_extra
|
|
|
|
run_once make_syslinux
|
|
|
|
run_once make_isolinux
|
|
|
|
run_once make_efi
|
|
|
|
run_once make_efiboot
|
2018-06-23 21:26:36 +02:00
|
|
|
run_once make_prepare
|
2012-12-16 16:55:27 +01:00
|
|
|
run_once make_iso
|