605261992c
This was committed due to what was later diagnosed as an msdosfs bug preventing in-place strip. This bug was fixed in r352564, and we agreed to keep the workaround in for a bit to allow the driver fix a suitable amount of propagation time for folks building/installing powerpc/ubldr, seeing as how we were not in any hurry to revert.
35 lines
780 B
Makefile
35 lines
780 B
Makefile
# $FreeBSD$
|
|
|
|
LOADER_UFS_SUPPORT?= yes
|
|
LOADER_CD9660_SUPPORT?= no
|
|
LOADER_EXT2FS_SUPPORT?= no
|
|
LOADER_NET_SUPPORT?= yes
|
|
LOADER_NFS_SUPPORT?= yes
|
|
LOADER_TFTP_SUPPORT?= no
|
|
LOADER_GZIP_SUPPORT?= no
|
|
LOADER_BZIP2_SUPPORT?= no
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
BINDIR= /boot/uboot
|
|
PROG= ubldr
|
|
NEWVERSWHAT= "U-Boot loader" ${MACHINE_ARCH}
|
|
INSTALLFLAGS= -b
|
|
|
|
# Architecture-specific loader code
|
|
SRCS= start.S conf.c vers.c ppc64_elf_freebsd.c
|
|
SRCS+= ucmpdi2.c
|
|
|
|
# Always add MI sources
|
|
.include "${BOOTSRC}/loader.mk"
|
|
.PATH: ${SYSDIR}/libkern
|
|
|
|
LDFLAGS= -nostdlib -static -T ${.CURDIR}/ldscript.powerpc
|
|
|
|
.include "${BOOTSRC}/uboot.mk"
|
|
|
|
DPADD= ${LDR_INTERP} ${LIBUBOOT} ${LIBFDT} ${LIBUBOOT_FDT} ${LIBSA}
|
|
LDADD= ${LDR_INTERP} ${LIBUBOOT} ${LIBFDT} ${LIBUBOOT_FDT} ${LIBSA}
|
|
|
|
.include <bsd.prog.mk>
|