From fccffd5baf99fd53c4d8880eecb89b0617fb0658 Mon Sep 17 00:00:00 2001 From: hpa Date: Tue, 17 Apr 2001 16:15:32 +0000 Subject: [PATCH] Fix reversed values in "ip=" option. --- NEWS | 2 ++ pxelinux.asm | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 1626a22..4e98967 100644 --- a/NEWS +++ b/NEWS @@ -6,6 +6,8 @@ Changes in 1.62: configuration file name and pathname prefix, using "site-specific" DHCP options. * PXELINUX: Documentation fixes. + * PXELINUX: Fix the "ipappend" option; the last two values + were reversed vs. what the kernel expected. Changes in 1.61: * ISOLINUX: Support full pathname searches. Max length for a diff --git a/pxelinux.asm b/pxelinux.asm index 74ca65f..99e0793 100644 --- a/pxelinux.asm +++ b/pxelinux.asm @@ -4326,11 +4326,11 @@ genipopt: call gendotquad mov al,':' stosb - mov eax,[Netmask] + mov eax,[Gateway] call gendotquad mov al,':' stosb - mov eax,[Gateway] + mov eax,[Netmask] call gendotquad ; Zero-terminates its output sub di,IPOption mov [IPOptionLen],di -- 2.7.4