Add bootloader configs to archiso profile (syslinux/efiboot/grub)
All checks were successful
Mirror to GitHub / mirror (push) Successful in 11s
All checks were successful
Mirror to GitHub / mirror (push) Successful in 11s
The profile declared syslinux + systemd-boot bootmodes but lacked the required config directories, so mkarchiso would fail. Added from the official releng profile, rebranded to Bread OS; %PLACEHOLDER% tokens are substituted by mkarchiso at build time. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
8e41d9fc2b
commit
ed0eea3cb1
14 changed files with 353 additions and 0 deletions
32
iso/syslinux/archiso_pxe-linux.cfg
Normal file
32
iso/syslinux/archiso_pxe-linux.cfg
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
LABEL arch_nbd
|
||||
TEXT HELP
|
||||
Boot the Bread OS install medium using NBD.
|
||||
It allows you to install Bread OS or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Bread OS install medium (%ARCH%, NBD)
|
||||
LINUX ::/%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux
|
||||
INITRD ::/%INSTALL_DIR%/boot/%ARCH%/initramfs-linux.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archisosearchuuid=%ARCHISO_UUID% archiso_nbd_srv=${pxeserver} cms_verify=y
|
||||
SYSAPPEND 3
|
||||
|
||||
LABEL arch_nfs
|
||||
TEXT HELP
|
||||
Boot the Bread OS live medium using NFS.
|
||||
It allows you to install Bread OS or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Bread OS install medium (%ARCH%, NFS)
|
||||
LINUX ::/%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux
|
||||
INITRD ::/%INSTALL_DIR%/boot/%ARCH%/initramfs-linux.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archiso_nfs_srv=${pxeserver}:/run/archiso/bootmnt cms_verify=y
|
||||
SYSAPPEND 3
|
||||
|
||||
LABEL arch_http
|
||||
TEXT HELP
|
||||
Boot the Bread OS live medium using HTTP.
|
||||
It allows you to install Bread OS or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Bread OS install medium (%ARCH%, HTTP)
|
||||
LINUX ::/%INSTALL_DIR%/boot/%ARCH%/vmlinuz-linux
|
||||
INITRD ::/%INSTALL_DIR%/boot/%ARCH%/initramfs-linux.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archiso_http_srv=http://${pxeserver}/ cms_verify=y
|
||||
SYSAPPEND 3
|
||||
Loading…
Add table
Add a link
Reference in a new issue