Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/configs/baseline/profiledef.sh
diff options
context:
space:
mode:
authornl6720 <nl6720@gmail.com>2020-08-12 19:42:02 +0300
committernl6720 <nl6720@gmail.com>2020-08-17 17:14:06 +0300
commit7c2247f615ecdff8d236ac90c4bec1c3d255a497 (patch)
tree1d6ff0629d6fc4af3344859c084fc67048b49368 /configs/baseline/profiledef.sh
parent41b9b897469890ced3847e5545d5265995f21b64 (diff)
archiso/mkarchiso: allow choosing boot modes from profiledef.sh
Boot mode names are: - bios_syslinux.mbr: SYSLINUX in MBR - bios.syslinux.eltorito: SYSLINUX (ISOLINUX) via El Torito - uefi-x64.systemd-boot.esp: systemd-boot on ESP in MBR - uefi-x64.systemd-boot.eltorito: systemd-boot on ESP via El Torito It is not yet possible to create an ISO with only El Torito or only MBR boot modes!
Diffstat (limited to 'configs/baseline/profiledef.sh')
-rw-r--r--configs/baseline/profiledef.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/configs/baseline/profiledef.sh b/configs/baseline/profiledef.sh
new file mode 100644
index 0000000..9ced69e
--- /dev/null
+++ b/configs/baseline/profiledef.sh
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+# shellcheck disable=SC2034
+
+iso_name="archlinux-baseline"
+iso_label="ARCH_$(date +%Y%m)"
+iso_publisher="Arch Linux <https://www.archlinux.org>"
+iso_application="Arch Linux baseline"
+iso_version="$(date +%Y.%m.%d)"
+install_dir="arch"
+bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito')
+arch="x86_64"
+pacman_conf="pacman.conf"