diff options
author | hpa <hpa> | 2003-11-25 04:12:43 +0000 |
---|---|---|
committer | hpa <hpa> | 2003-11-25 04:12:43 +0000 |
commit | 16f5c17703a99c5fdef488274a037962b2fb72c1 (patch) | |
tree | 3522286888f7990546558ad45184981abb1fbbd3 /isolinux.asm | |
parent | ebedc65698898aaa701e5ff1e6bfe1cc318485ec (diff) | |
download | syslinux-2.08-pre3.tar.gz |
- Handle ARP requests while idle in pxelinuxsyslinux-2.08-pre3
- Actually reallocate sockets correctly in pxelinux
Diffstat (limited to 'isolinux.asm')
-rw-r--r-- | isolinux.asm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/isolinux.asm b/isolinux.asm index 7b92fd4c..e8e98064 100644 --- a/isolinux.asm +++ b/isolinux.asm @@ -41,6 +41,13 @@ SECTORSIZE_LG2 equ 11 ; 2048 bytes/sector (El Torito requirement) SECTORSIZE equ (1 << SECTORSIZE_LG2) ; +; This is what we need to do when idle +; +%macro DO_IDLE 0 + ; Nothing +%endmacro + +; ; The following structure is used for "virtual kernels"; i.e. LILO-style ; option labels. The options we permit here are `kernel' and `append ; Since there is no room in the bottom 64K for all of these, we |