summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/pxelinux.asm4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/pxelinux.asm b/core/pxelinux.asm
index 097b856c..a7333ce6 100644
--- a/core/pxelinux.asm
+++ b/core/pxelinux.asm
@@ -290,10 +290,12 @@ KernelType resb 1 ; Kernel type, from vkernel, if known
global KernelName
KernelName resb FILENAME_MAX ; Mangled name for kernel
section .data16
- extern IPOption
+ extern IPOption, BOOTIFStr, SYSUUIDStr
global IPAppends, numIPAppends
alignz 2
IPAppends dw IPOption
+ dw BOOTIFStr
+ dw SYSUUIDStr
numIPAppends equ ($-IPAppends)/2
section .text16