diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2009-07-28 20:19:14 -0700 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2009-07-28 20:20:16 -0700 |
| commit | 3cdc491e358508621ce19d851f148aa2932b87bf (patch) | |
| tree | 9292e9b52b49adb1b0a071db046085187c6d5652 /core/pxelinux.asm | |
| parent | f4b44a7b44faf9bcc345153f3ba23cabc68135da (diff) | |
| download | syslinux-3.83-pre2.tar.gz | |
PXELINUX: allow filenames up to 251 characters longsyslinux-3.83-pre2
At least one users really need this, so be nice and provide it...
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/pxelinux.asm')
| -rw-r--r-- | core/pxelinux.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pxelinux.asm b/core/pxelinux.asm index 58201a0b..190f4c66 100644 --- a/core/pxelinux.asm +++ b/core/pxelinux.asm @@ -29,7 +29,7 @@ ; Some semi-configurable constants... change on your own risk. ; my_id equ pxelinux_id -FILENAME_MAX_LG2 equ 7 ; log2(Max filename size Including final null) +FILENAME_MAX_LG2 equ 8 ; log2(Max filename size Including final null) FILENAME_MAX equ (1 << FILENAME_MAX_LG2) NULLFILE equ 0 ; Zero byte == null file name NULLOFFSET equ 4 ; Position in which to look |
