2000-10-16 10:46:22 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2017-11-08 14:44:45 +00:00
|
|
|
LOADER_CD9660_SUPPORT?= yes
|
|
|
|
LOADER_EXT2FS_SUPPORT?= no
|
|
|
|
LOADER_MSDOS_SUPPORT?= no
|
|
|
|
LOADER_UFS_SUPPORT?= yes
|
|
|
|
LOADER_NET_SUPPORT?= yes
|
|
|
|
LOADER_NFS_SUPPORT?= yes
|
|
|
|
LOADER_TFTP_SUPPORT?= no
|
|
|
|
LOADER_GZIP_SUPPORT?= yes
|
|
|
|
LOADER_BZIP2_SUPPORT?= no
|
|
|
|
|
2017-10-30 03:12:28 +00:00
|
|
|
.include <bsd.init.mk>
|
2006-03-17 18:54:44 +00:00
|
|
|
|
2004-02-09 21:54:54 +00:00
|
|
|
PROG= loader
|
2007-12-26 19:15:58 +00:00
|
|
|
NEWVERSWHAT= "Open Firmware loader" ${MACHINE_ARCH}
|
2001-09-12 10:25:50 +00:00
|
|
|
INSTALLFLAGS= -b
|
2000-10-16 10:46:22 +00:00
|
|
|
|
2004-02-09 21:54:54 +00:00
|
|
|
# Architecture-specific loader code
|
2018-03-03 23:39:07 +00:00
|
|
|
SRCS= conf.c vers.c main.c elf_freebsd.c ppc64_elf_freebsd.c start.c
|
2010-07-12 00:49:22 +00:00
|
|
|
SRCS+= ucmpdi2.c
|
2000-10-16 10:46:22 +00:00
|
|
|
|
2017-11-10 23:54:24 +00:00
|
|
|
.include "${BOOTSRC}/fdt.mk"
|
|
|
|
.if ${MK_FDT} == "yes"
|
2015-03-09 02:57:34 +00:00
|
|
|
SRCS+= ofwfdt.c
|
|
|
|
.endif
|
2000-10-16 10:46:22 +00:00
|
|
|
|
2017-12-18 04:51:34 +00:00
|
|
|
HELP_FILES= ${FDTSRC}/help.fdt
|
2017-11-10 23:54:58 +00:00
|
|
|
|
2004-02-09 21:54:54 +00:00
|
|
|
# Always add MI sources
|
2017-10-30 03:12:28 +00:00
|
|
|
.include "${BOOTSRC}/loader.mk"
|
2017-10-16 03:59:44 +00:00
|
|
|
|
2017-10-30 03:12:28 +00:00
|
|
|
.PATH: ${SYSDIR}/libkern
|
2000-10-16 10:46:22 +00:00
|
|
|
|
2004-07-08 12:52:35 +00:00
|
|
|
# load address. set in linker script
|
2003-12-10 09:16:22 +00:00
|
|
|
RELOC?= 0x1C00000
|
|
|
|
CFLAGS+= -DRELOC=${RELOC}
|
2004-07-08 12:52:35 +00:00
|
|
|
|
|
|
|
LDFLAGS= -nostdlib -static -T ${.CURDIR}/ldscript.powerpc
|
2000-10-16 10:46:22 +00:00
|
|
|
|
2004-08-16 15:45:27 +00:00
|
|
|
# Open Firmware standalone support library
|
2017-10-30 03:12:28 +00:00
|
|
|
LIBOFW= ${BOOTOBJ}/ofw/libofw/libofw.a
|
|
|
|
CFLAGS+= -I${BOOTSRC}/ofw/libofw
|
2000-10-16 10:46:22 +00:00
|
|
|
|
2018-02-02 15:40:49 +00:00
|
|
|
DPADD= ${LDR_INTERP} ${LIBOFW} ${LIBFDT} ${LIBSA}
|
|
|
|
LDADD= ${LDR_INTERP} ${LIBOFW} ${LIBFDT} ${LIBSA}
|
2000-11-10 06:39:58 +00:00
|
|
|
|
2000-10-16 10:46:22 +00:00
|
|
|
.include <bsd.prog.mk>
|