devstack: Remove syslinux dependency
syslinux should no longer be required by any arch. This patch removes the dependency. Change-Id: Id4aea9acb9bf4ac34c0d5e9bca27fb48ea1b009a
This commit is contained in:
parent
e8a8b7897f
commit
c2588c4de4
@ -28,7 +28,6 @@ qemu-kvm
|
||||
qemu-utils
|
||||
sgabios
|
||||
shellinabox
|
||||
syslinux # dist:xenial,bionic
|
||||
syslinux-common # dist:xenial,bionic
|
||||
tftpd-hpa
|
||||
xinetd
|
||||
|
@ -1014,8 +1014,12 @@ function configure_ironic_dirs {
|
||||
fi
|
||||
|
||||
# Copy PXE binary
|
||||
cp $IRONIC_PXE_BOOT_IMAGE $IRONIC_TFTPBOOT_DIR
|
||||
setup_syslinux_modules
|
||||
# NOTE(mjturek): The PXE binary is x86_64 specific. So it should only be copied when
|
||||
# deploying to an x86_64 node.
|
||||
if [[ $IRONIC_HW_ARCH == "x86_64" ]]; then
|
||||
cp $IRONIC_PXE_BOOT_IMAGE $IRONIC_TFTPBOOT_DIR
|
||||
setup_syslinux_modules
|
||||
fi
|
||||
|
||||
if [[ "$IRONIC_BOOT_MODE" == "uefi" ]]; then
|
||||
local uefi_ipxe_boot_file
|
||||
|
Loading…
Reference in New Issue
Block a user