c3a3c7bee0
grub2-efi-aa64-modules ships in RHEL and CentOS on all GRUB architectures (x86_64, ppc64le, aarch64, but not s390x), and therefore can be used on any of them to support heterogeneous clusters with AArch64. Change-Id: Icf7e7bfddec89c4aec89410884480539b6bbfd74
44 lines
1.5 KiB
Bash
44 lines
1.5 KiB
Bash
#!/bin/bash
|
|
|
|
|
|
function prepare_pxe {
|
|
chown -R ironic: /tftpboot
|
|
for pxe_file in /var/lib/tftpboot/pxelinux.0 /var/lib/tftpboot/chain.c32 /usr/lib/syslinux/pxelinux.0 \
|
|
/usr/lib/syslinux/chain.c32 /usr/lib/PXELINUX/pxelinux.0 \
|
|
/usr/lib/syslinux/modules/bios/chain.c32 /usr/lib/syslinux/modules/bios/ldlinux.c32; do
|
|
if [[ -e "$pxe_file" ]]; then
|
|
cp "$pxe_file" /tftpboot
|
|
fi
|
|
done
|
|
}
|
|
|
|
function prepare_ipxe {
|
|
if [[ "${KOLLA_BASE_DISTRO}" =~ debian|ubuntu ]]; then
|
|
cp /usr/lib/ipxe/{undionly.kpxe,ipxe.efi} /tftpboot
|
|
elif [[ "${KOLLA_BASE_DISTRO}" =~ centos|rhel ]]; then
|
|
cp /usr/share/ipxe/{undionly.kpxe,ipxe*.efi} /tftpboot
|
|
fi
|
|
}
|
|
|
|
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
|
|
# of the KOLLA_BOOTSTRAP variable being set, including empty.
|
|
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
|
|
prepare_pxe
|
|
prepare_ipxe
|
|
exit 0
|
|
fi
|
|
|
|
if [[ -d /usr/lib/grub/arm64-efi ]]; then
|
|
modules="boot chain configfile efinet ext2 fat gettext help hfsplus loadenv \
|
|
lsefi normal part_gpt part_msdos read search search_fs_file search_fs_uuid \
|
|
search_label terminal terminfo tftp linux"
|
|
|
|
if [[ "${KOLLA_BASE_DISTRO}" =~ debian|ubuntu ]]; then
|
|
grub-mkimage -v -o /tftpboot/grubaa64.efi -O arm64-efi -p "grub" $modules
|
|
elif [[ "${KOLLA_BASE_DISTRO}" =~ centos|rhel ]]; then
|
|
grub2-mkimage -v -o /tftpboot/grubaa64.efi -O arm64-efi -p "EFI/centos" $modules
|
|
fi
|
|
fi
|
|
|
|
. /usr/local/bin/kolla_httpd_setup
|