- look at target variants when determining if syslinux is supported or not.
Closes #637
This commit is contained in:
parent
d15b0f98f1
commit
085f7b3ed9
@ -1,4 +1,21 @@
|
||||
SYSLINUX_SUPPORTED_ARCH=n
|
||||
ifeq ($(ARCH),i386)
|
||||
SYSLINUX_SUPPORTED_ARCH=y
|
||||
endif
|
||||
ifeq ($(ARCH),i486)
|
||||
SYSLINUX_SUPPORTED_ARCH=y
|
||||
endif
|
||||
ifeq ($(ARCH),i586)
|
||||
SYSLINUX_SUPPORTED_ARCH=y
|
||||
endif
|
||||
ifeq ($(ARCH),i686)
|
||||
SYSLINUX_SUPPORTED_ARCH=y
|
||||
endif
|
||||
ifeq ($(ARCH),x86_64)
|
||||
SYSLINUX_SUPPORTED_ARCH=y
|
||||
endif
|
||||
ifeq ($(SYSLINUX_SUPPORTED_ARCH),y)
|
||||
|
||||
#############################################################
|
||||
#
|
||||
# syslinux to make target msdos/iso9660 filesystems bootable
|
||||
|
Loading…
Reference in New Issue
Block a user