The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=4e9d303c8300c6674230ff1cdcb317edb27b48cc
commit 4e9d303c8300c6674230ff1cdcb317edb27b48cc Author: Warner Losh <[email protected]> AuthorDate: 2026-06-26 14:48:04 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2026-06-26 14:54:37 +0000 pxeldr: Bump the limit by 30k for loader size We have a ltitle wiggle room, so go ahead and bump the pxeldr size. It should be a little larger than the limit we have for the /boot/loader since we embed that in this loader... Sponsored by: Netflix --- stand/i386/pxeldr/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/i386/pxeldr/Makefile b/stand/i386/pxeldr/Makefile index 715a13f19e6f..5380682ffa0b 100644 --- a/stand/i386/pxeldr/Makefile +++ b/stand/i386/pxeldr/Makefile @@ -33,7 +33,7 @@ LOADERBIN= ${BOOTOBJ}/i386/loader_${L}/loader_${L}.bin # may have a bit more, the limit of 500,000 (488k) provides enough margin to # work in a huge array of environments. Larger values may work for specific # environments. -PXEBOOTSIZE?=500000 +PXEBOOTSIZE?=530000 CLEANFILES+= ${BOOT}.tmp
