mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
For some reason crt0.o needs to be linked first for pxeboot(8) to
work. This is odd because loader(8) doesn't suffer from this problem. Perhaps pxeboot bootstrap can be fixed to handle this better. Anyway, PXE booting should work again.
This commit is contained in:
parent
e0aca24352
commit
eec24f3275
1 changed files with 5 additions and 2 deletions
|
|
@ -82,8 +82,11 @@ FILESDIR_loader.conf= /boot/defaults
|
|||
FILES+= ${.CURDIR}/loader.rc
|
||||
.endif
|
||||
|
||||
DPADD= ${BTXCRT} ${LIBFICL} ${LIBI386} ${LIBSTAND}
|
||||
LDADD= ${BTXCRT} ${LIBFICL} ${LIBI386} -lstand
|
||||
# XXX crt0.o needs to be first for pxeboot(8) to work
|
||||
OBJS= ${BTXCRT}
|
||||
|
||||
DPADD= ${LIBFICL} ${LIBI386} ${LIBSTAND}
|
||||
LDADD= ${LIBFICL} ${LIBI386} -lstand
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue