Merge "syslinux package is only built for x86_64"

This commit is contained in:
Zuul 2018-02-21 10:16:17 +00:00 committed by Gerrit Code Review
commit d6acc352e3
2 changed files with 10 additions and 1 deletions

View File

@ -11,10 +11,15 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
'ipxe-bootimgs',
'mod_ssl',
'mod_wsgi',
'syslinux-tftpboot',
'tftp-server'
] %}
{% if base_arch == 'x86_64' %}
{% set ironic_pxe_packages = ironic_pxe_packages + [
'syslinux-tftpboot'
] %}
{% endif %}
{% if base_arch == 'aarch64' %}
ENV ironic_arch=aarch64
{% set ironic_pxe_packages = ironic_pxe_packages + [

View File

@ -0,0 +1,4 @@
---
fixes:
- |
The syslinux package is only built for x86_64 and not for ppc64le or aarch64.