memdisk: Force ld output format to 32-bits
[syslinux.git] / efi / derivative.c
blob12edd7052430c9a83008a0ca55ab2601eace4677
1 /*
2 * Copyright 2012-2014 Intel Corporation - All Rights Reserved
3 */
5 #include <syslinux/config.h>
7 /*
8 * IP information. Note that the field are in the same order as the
9 * Linux kernel expects in the ip= option.
11 struct syslinux_ipinfo IPInfo;
12 uint16_t APIVer; /* PXE API version found */
14 static enum syslinux_filesystem __filesystem;
16 void efi_derivative(enum syslinux_filesystem fs)
18 __filesystem = fs;
20 __export void get_derivative_info(union syslinux_derivative_info *di)
22 di->disk.filesystem = __filesystem;