cmd: pxe: Increase maximum path length
authorBen Wolsieffer <benwolsieffer@gmail.com>
Thu, 28 Nov 2019 05:07:08 +0000 (00:07 -0500)
committerJoe Hershberger <joe.hershberger@ni.com>
Mon, 9 Dec 2019 15:49:48 +0000 (09:49 -0600)
On NixOS, cross compiled kernels have long suffixes that cause them to
exceed the current maximum path length. The PXE/TFTP max path length is
used for extlinux.conf support as well, which is where this problem
usually manifest's itself.

Signed-off-by: Ben Wolsieffer <benwolsieffer@gmail.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
cmd/pxe_utils.c

index 42b584ead3259526a0798571d99ae31269248943..a636346bb51ff0a88603133cda331230e40df0db 100644 (file)
@@ -22,7 +22,7 @@
 
 #include "pxe_utils.h"
 
-#define MAX_TFTP_PATH_LEN 127
+#define MAX_TFTP_PATH_LEN 512
 
 bool is_pxe;