diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2012-10-12 14:00:03 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2012-10-12 14:00:03 +0000 |
commit | edac74b98ea452a953e2d8ef01bc7e73d3f98807 (patch) | |
tree | 4de98bcfdae3bb99384935cc95691ab68c2a33de /sys/arch/amd64/stand/fdboot | |
parent | 832a9c1f8620d389cbe8862c2dd189b3b4061542 (diff) |
Build a 'fdboot' that will be used for floppy disk media. This can be made
smaller than the normal 'boot', however for now it is identical.
ok deraadt@
Diffstat (limited to 'sys/arch/amd64/stand/fdboot')
-rw-r--r-- | sys/arch/amd64/stand/fdboot/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/arch/amd64/stand/fdboot/Makefile b/sys/arch/amd64/stand/fdboot/Makefile new file mode 100644 index 00000000000..ffce0e5c0b9 --- /dev/null +++ b/sys/arch/amd64/stand/fdboot/Makefile @@ -0,0 +1,11 @@ +# $OpenBSD: Makefile,v 1.1 2012/10/12 14:00:02 jsing Exp $ + +PROG= fdboot +COPTS= -DFDBOOT + +MAN= +MLINKS= + +.PATH: ${.CURDIR}/../boot + +.include "${.CURDIR}/../boot/Makefile" |