2011-01-05 23:12:29 -05:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
2014-05-06 00:22:01 -04:00
|
|
|
.include <src.opts.mk>
|
2011-01-05 23:12:29 -05:00
|
|
|
MK_SSP= no
|
2015-06-19 10:20:21 -04:00
|
|
|
MAN=
|
2011-01-05 23:12:29 -05:00
|
|
|
|
|
|
|
|
PROG= loader.ps3
|
|
|
|
|
NEWVERSWHAT= "Playstation 3 loader" ${MACHINE_ARCH}
|
|
|
|
|
BINDIR?= /boot
|
|
|
|
|
INSTALLFLAGS= -b
|
|
|
|
|
|
|
|
|
|
# Architecture-specific loader code
|
|
|
|
|
SRCS= start.S conf.c metadata.c vers.c main.c devicename.c ppc64_elf_freebsd.c
|
2011-08-13 20:20:37 -04:00
|
|
|
SRCS+= lv1call.S ps3cons.c font.h ps3mmu.c ps3net.c ps3repo.c \
|
|
|
|
|
ps3stor.c ps3disk.c ps3cdrom.c
|
2011-01-05 23:12:29 -05:00
|
|
|
SRCS+= ucmpdi2.c
|
|
|
|
|
|
|
|
|
|
LOADER_DISK_SUPPORT?= yes
|
|
|
|
|
LOADER_UFS_SUPPORT?= yes
|
|
|
|
|
LOADER_CD9660_SUPPORT?= yes
|
2011-07-16 15:01:09 -04:00
|
|
|
LOADER_EXT2FS_SUPPORT?= yes
|
2011-01-05 23:12:29 -05:00
|
|
|
LOADER_NET_SUPPORT?= yes
|
|
|
|
|
LOADER_NFS_SUPPORT?= yes
|
|
|
|
|
LOADER_TFTP_SUPPORT?= no
|
|
|
|
|
LOADER_GZIP_SUPPORT?= yes
|
|
|
|
|
LOADER_FDT_SUPPORT?= no
|
|
|
|
|
LOADER_BZIP2_SUPPORT?= no
|
|
|
|
|
|
|
|
|
|
.if ${LOADER_DISK_SUPPORT} == "yes"
|
|
|
|
|
CFLAGS+= -DLOADER_DISK_SUPPORT
|
|
|
|
|
.endif
|
|
|
|
|
.if ${LOADER_UFS_SUPPORT} == "yes"
|
|
|
|
|
CFLAGS+= -DLOADER_UFS_SUPPORT
|
|
|
|
|
.endif
|
|
|
|
|
.if ${LOADER_CD9660_SUPPORT} == "yes"
|
|
|
|
|
CFLAGS+= -DLOADER_CD9660_SUPPORT
|
|
|
|
|
.endif
|
|
|
|
|
.if ${LOADER_EXT2FS_SUPPORT} == "yes"
|
|
|
|
|
CFLAGS+= -DLOADER_EXT2FS_SUPPORT
|
|
|
|
|
.endif
|
|
|
|
|
.if ${LOADER_GZIP_SUPPORT} == "yes"
|
|
|
|
|
CFLAGS+= -DLOADER_GZIP_SUPPORT
|
|
|
|
|
.endif
|
|
|
|
|
.if ${LOADER_BZIP2_SUPPORT} == "yes"
|
|
|
|
|
CFLAGS+= -DLOADER_BZIP2_SUPPORT
|
|
|
|
|
.endif
|
|
|
|
|
.if ${LOADER_NET_SUPPORT} == "yes"
|
|
|
|
|
CFLAGS+= -DLOADER_NET_SUPPORT
|
|
|
|
|
.endif
|
|
|
|
|
.if ${LOADER_NFS_SUPPORT} == "yes"
|
|
|
|
|
CFLAGS+= -DLOADER_NFS_SUPPORT
|
|
|
|
|
.endif
|
|
|
|
|
.if ${LOADER_TFTP_SUPPORT} == "yes"
|
|
|
|
|
CFLAGS+= -DLOADER_TFTP_SUPPORT
|
|
|
|
|
.endif
|
|
|
|
|
.if ${LOADER_FDT_SUPPORT} == "yes"
|
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../fdt
|
|
|
|
|
CFLAGS+= -I${.OBJDIR}/../../fdt
|
|
|
|
|
CFLAGS+= -DLOADER_FDT_SUPPORT
|
|
|
|
|
LIBFDT= ${.OBJDIR}/../../fdt/libfdt.a
|
|
|
|
|
.endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.if ${MK_FORTH} != "no"
|
|
|
|
|
# Enable BootForth
|
|
|
|
|
BOOT_FORTH= yes
|
|
|
|
|
CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/powerpc
|
|
|
|
|
LIBFICL= ${.OBJDIR}/../../ficl/libficl.a
|
|
|
|
|
.endif
|
|
|
|
|
|
2016-10-13 18:43:49 -04:00
|
|
|
CFLAGS+= -mcpu=powerpc64
|
2011-01-05 23:12:29 -05:00
|
|
|
|
|
|
|
|
# Always add MI sources
|
|
|
|
|
.PATH: ${.CURDIR}/../../common ${.CURDIR}/../../../libkern
|
|
|
|
|
.include "${.CURDIR}/../../common/Makefile.inc"
|
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../../..
|
|
|
|
|
CFLAGS+= -I.
|
|
|
|
|
|
2016-12-19 09:40:59 -05:00
|
|
|
CLEANFILES+= loader.help
|
2011-01-05 23:12:29 -05:00
|
|
|
|
|
|
|
|
CFLAGS+= -Wall -ffreestanding -msoft-float -DAIM
|
|
|
|
|
# load address. set in linker script
|
|
|
|
|
RELOC?= 0x0
|
|
|
|
|
CFLAGS+= -DRELOC=${RELOC}
|
|
|
|
|
|
|
|
|
|
LDFLAGS= -nostdlib -static -T ${.CURDIR}/ldscript.powerpc
|
|
|
|
|
|
|
|
|
|
# Pull in common loader code
|
|
|
|
|
#.PATH: ${.CURDIR}/../../ofw/common
|
|
|
|
|
#.include "${.CURDIR}/../../ofw/common/Makefile.inc"
|
|
|
|
|
|
|
|
|
|
# where to get libstand from
|
2014-02-07 17:49:42 -05:00
|
|
|
LIBSTAND= ${.OBJDIR}/../../libstand32/libstand.a
|
2011-01-05 23:12:29 -05:00
|
|
|
CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
|
|
|
|
|
|
|
|
|
|
DPADD= ${LIBFICL} ${LIBOFW} ${LIBSTAND}
|
2014-02-07 17:49:42 -05:00
|
|
|
LDADD= ${LIBFICL} ${LIBOFW} ${LIBSTAND}
|
2011-01-05 23:12:29 -05:00
|
|
|
|
|
|
|
|
SC_DFLT_FONT=cp437
|
|
|
|
|
|
|
|
|
|
font.h:
|
|
|
|
|
uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x16.fnt && file2c 'u_char dflt_font_16[16*256] = {' '};' < ${SC_DFLT_FONT}-8x16 > font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x14.fnt && file2c 'u_char dflt_font_14[14*256] = {' '};' < ${SC_DFLT_FONT}-8x14 >> font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x8.fnt && file2c 'u_char dflt_font_8[8*256] = {' '};' < ${SC_DFLT_FONT}-8x8 >> font.h
|
|
|
|
|
|
2013-02-10 21:15:26 -05:00
|
|
|
loader.help: help.common help.ps3 ${.CURDIR}/../../fdt/help.fdt
|
2011-01-05 23:12:29 -05:00
|
|
|
cat ${.ALLSRC} | \
|
|
|
|
|
awk -f ${.CURDIR}/../../common/merge_help.awk > ${.TARGET}
|
|
|
|
|
|
2015-04-02 22:37:43 -04:00
|
|
|
.PATH: ${.CURDIR}/../../forth
|
2015-04-02 16:07:05 -04:00
|
|
|
.include "${.CURDIR}/../../forth/Makefile.inc"
|
2011-01-05 23:12:29 -05:00
|
|
|
|
2015-08-06 12:07:27 -04:00
|
|
|
FILES+= loader.rc menu.rc
|
2011-05-28 04:50:38 -04:00
|
|
|
|
2011-01-05 23:12:29 -05:00
|
|
|
.include <bsd.prog.mk>
|