summaryrefslogtreecommitdiff
path: root/stand/powerpc/ps3/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'stand/powerpc/ps3/Makefile')
-rw-r--r--stand/powerpc/ps3/Makefile48
1 files changed, 48 insertions, 0 deletions
diff --git a/stand/powerpc/ps3/Makefile b/stand/powerpc/ps3/Makefile
new file mode 100644
index 000000000000..07ad135d9796
--- /dev/null
+++ b/stand/powerpc/ps3/Makefile
@@ -0,0 +1,48 @@
+# $FreeBSD$
+
+LOADER_UFS_SUPPORT?= yes
+LOADER_CD9660_SUPPORT?= yes
+LOADER_EXT2FS_SUPPORT?= yes
+LOADER_NET_SUPPORT?= yes
+LOADER_NFS_SUPPORT?= yes
+LOADER_TFTP_SUPPORT?= no
+LOADER_GZIP_SUPPORT?= yes
+LOADER_BZIP2_SUPPORT?= no
+
+.include <bsd.init.mk>
+MK_SSP= no
+MAN=
+
+PROG= loader.ps3
+NEWVERSWHAT= "Playstation 3 loader" ${MACHINE_ARCH}
+INSTALLFLAGS= -b
+
+# Architecture-specific loader code
+SRCS= start.S conf.c metadata.c vers.c main.c devicename.c ppc64_elf_freebsd.c
+SRCS+= lv1call.S ps3cons.c font.h ps3mmu.c ps3net.c ps3repo.c \
+ ps3stor.c ps3disk.c ps3cdrom.c
+SRCS+= ucmpdi2.c
+
+CFLAGS+= -mcpu=powerpc64
+
+# Always add MI sources
+HELP_FILES= # Disable
+.include "${BOOTSRC}/loader.mk"
+.PATH: ${SYSDIR}/libkern
+
+CFLAGS+= -Wall -ffreestanding -msoft-float -DAIM
+# load address. set in linker script
+RELOC?= 0x0
+CFLAGS+= -DRELOC=${RELOC}
+
+LDFLAGS= -nostdlib -static -T ${.CURDIR}/ldscript.powerpc
+
+DPADD= ${LIBFICL} ${LIBOFW} ${LIBSA}
+LDADD= ${LIBFICL} ${LIBOFW} ${LIBSA}
+
+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
+
+.include <bsd.prog.mk>