syslinux package is only built for x86_64

The syslinux package is only built for x86_64 and not for ppc64le or aarch64.

Change-Id: I773e6ddf20ba2030fdeeb1ee66e79f20f82168aa
Closes-Bug: 1749780
This commit is contained in:
Mark Hamzy 2018-02-15 13:25:52 -06:00
parent 9735112313
commit 2b41f2ba40
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.