diff options
author | gallatin <gallatin@FreeBSD.org> | 2001-04-07 23:52:31 +0000 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2001-04-07 23:52:31 +0000 |
commit | 4defd5fc7881f0ef18464dea208adff1683c3177 (patch) | |
tree | 00e7f9ad1a01528d70e7033077124c703462df31 /sys | |
parent | c75e034cd698c358f17eafbbfdc7dda56f25da43 (diff) | |
download | FreeBSD-src-4defd5fc7881f0ef18464dea208adff1683c3177.zip FreeBSD-src-4defd5fc7881f0ef18464dea208adff1683c3177.tar.gz |
build cdboot from sources now that the cd9660 fs support works
MFC candidate
Diffstat (limited to 'sys')
-rw-r--r-- | sys/boot/alpha/cdboot/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/boot/alpha/cdboot/Makefile b/sys/boot/alpha/cdboot/Makefile index 0ab8023..87bfffd 100644 --- a/sys/boot/alpha/cdboot/Makefile +++ b/sys/boot/alpha/cdboot/Makefile @@ -1,12 +1,11 @@ # $FreeBSD$ -BINDIR= /boot BASE= cdboot PROG= ${BASE} NOMAN= -STRIP= +NEWVERSWHAT= "SRM CD9660 boot" alpha +LOAD_ADDRESS= ${PRIMARY_LOAD_ADDRESS} -${BASE}: ${BASE}-4.0R.gz.uu - uudecode -p ${.CURDIR}/${BASE}-4.0R.gz.uu | gunzip > ${BASE} +CFLAGS+= -DLOADER_CDROM_SUPPORT -.include <bsd.prog.mk> +.include <${.CURDIR}/../common/Makefile.common> |