Deleted Added
full compact
Makefile (174930) Makefile (176185)
1# $FreeBSD: head/sys/boot/powerpc/ofw/Makefile 174930 2007-12-26 19:15:58Z marcel $
1# $FreeBSD: head/sys/boot/powerpc/ofw/Makefile 176185 2008-02-11 12:30:32Z raj $
2
3.include <bsd.own.mk>
4
5PROG= loader
6NEWVERSWHAT= "Open Firmware loader" ${MACHINE_ARCH}
7BINDIR?= /boot
8INSTALLFLAGS= -b
9
10# Architecture-specific loader code
11SRCS= conf.c metadata.c vers.c start.c
12
13LOADER_DISK_SUPPORT?= yes
14LOADER_UFS_SUPPORT?= yes
15LOADER_CD9660_SUPPORT?= yes
16LOADER_EXT2FS_SUPPORT?= no
17LOADER_NET_SUPPORT?= yes
18LOADER_NFS_SUPPORT?= yes
2
3.include <bsd.own.mk>
4
5PROG= loader
6NEWVERSWHAT= "Open Firmware loader" ${MACHINE_ARCH}
7BINDIR?= /boot
8INSTALLFLAGS= -b
9
10# Architecture-specific loader code
11SRCS= conf.c metadata.c vers.c start.c
12
13LOADER_DISK_SUPPORT?= yes
14LOADER_UFS_SUPPORT?= yes
15LOADER_CD9660_SUPPORT?= yes
16LOADER_EXT2FS_SUPPORT?= no
17LOADER_NET_SUPPORT?= yes
18LOADER_NFS_SUPPORT?= yes
19LOADER_TFTP_SUPPORT?= yes
19LOADER_TFTP_SUPPORT?= no
20LOADER_GZIP_SUPPORT?= yes
21LOADER_BZIP2_SUPPORT?= no
22
23.if ${LOADER_DISK_SUPPORT} == "yes"
24CFLAGS+= -DLOADER_DISK_SUPPORT
25.endif
26.if ${LOADER_UFS_SUPPORT} == "yes"
27CFLAGS+= -DLOADER_UFS_SUPPORT

--- 78 unchanged lines hidden ---
20LOADER_GZIP_SUPPORT?= yes
21LOADER_BZIP2_SUPPORT?= no
22
23.if ${LOADER_DISK_SUPPORT} == "yes"
24CFLAGS+= -DLOADER_DISK_SUPPORT
25.endif
26.if ${LOADER_UFS_SUPPORT} == "yes"
27CFLAGS+= -DLOADER_UFS_SUPPORT

--- 78 unchanged lines hidden ---