1 /* 2 * Copyright 2012-2014 Intel Corporation - All Rights Reserved 3 */ 4 5 #include <syslinux/config.h> 6 7 /* 8 * IP information. Note that the field are in the same order as the 9 * Linux kernel expects in the ip= option. 10 */ 11 struct syslinux_ipinfo IPInfo; 12 uint16_t APIVer; /* PXE API version found */ 13 14 static enum syslinux_filesystem __filesystem; 15 16 void efi_derivative(enum syslinux_filesystem fs) 17 { 18 __filesystem = fs; 19 } 20 __export void get_derivative_info(union syslinux_derivative_info *di) 21 { 22 di->disk.filesystem = __filesystem; 23 } 24