diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2023-01-22 19:29:11 +0100 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2023-01-22 19:29:11 +0100 |
commit | 9c990fca729353b9076cf109e732fd2a55573d81 (patch) | |
tree | 45d95155eacad886c1fc70d2e3d8edea61ad7376 /profiledef.sh | |
parent | a3600e528b02f8ba965ec3fac46f681088bf8338 (diff) |
2023 update
Diffstat (limited to 'profiledef.sh')
-rw-r--r-- | profiledef.sh | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/profiledef.sh b/profiledef.sh index fd65beb..b1204d7 100644 --- a/profiledef.sh +++ b/profiledef.sh @@ -2,16 +2,19 @@ # shellcheck disable=SC2034 iso_name="toms_arch" -iso_label="_$(date +%Y%m)" -iso_publisher="Tom Barrett <https://tombarrett.xyz>" +iso_label="TA_$(date +%Y%m)" +iso_publisher="tom barrett <https://tombarrett.xyz>" iso_application="toms archlinux installer" iso_version="$(date +%Y.%m.%d)" install_dir="arch" -bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito') +buildmodes=('iso') +bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' + 'uefi-ia32.grub.esp' 'uefi-x64.grub.esp' + 'uefi-ia32.grub.eltorito' 'uefi-x64.grub.eltorito') arch="x86_64" pacman_conf="pacman.conf" -airootfs_image_type="squashfs" -airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M') +airootfs_image_type="erofs" +airootfs_image_tool_options=('-zlzma,9' -E ztailpacking) file_permissions=( ["/etc/shadow"]="0:0:400" ["/root/bootstrap"]="0:0:700" |