diff options
author | pav <pav@FreeBSD.org> | 2005-03-19 16:20:32 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-03-19 16:20:32 +0000 |
commit | 76d0d4539d52151e0babdfc0825b47f7ca95747d (patch) | |
tree | e1af71fcd0febf029a9ab4d068a30f199fb067ad /net/mknbi/Makefile | |
parent | 5ca4f271d3ae7462bebf53f53459a076be26fde0 (diff) | |
download | FreeBSD-ports-76d0d4539d52151e0babdfc0825b47f7ca95747d.zip FreeBSD-ports-76d0d4539d52151e0babdfc0825b47f7ca95747d.tar.gz |
mknbi is a program that makes network bootable images for various operating
systems suitable for network loading by Etherboot or Netboot, which are ROM
boot loaders. If you are looking to boot using PXE, look no further, mknbi is
not what you want. You probably want something like PXELINUX which is part of
the SYSLINUX package.
PR: ports/78962
Submitted by: Radim Kolar <hsn@netmag.cz>
Diffstat (limited to 'net/mknbi/Makefile')
-rw-r--r-- | net/mknbi/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/net/mknbi/Makefile b/net/mknbi/Makefile new file mode 100644 index 0000000..fedeb00 --- /dev/null +++ b/net/mknbi/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: mknbi +# Date created: 17 Mar 2005 +# Whom: X +# +# $FreeBSD$ +# + +PORTNAME= mknbi +PORTVERSION= 1.4.4 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= etherboot + +MAINTAINER= ports@FreeBSD.org +COMMENT= Creates tagged boot images for net/ether boot + +BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm + +MAN1= mknbi.1 disnbi.1 +.for i in mkelf.1 mknbi-linux.1 mkelf-linux.1 \ + mknbi-rom.1 mkelf-img.1 mknbi-menu.1 mkelf-menu.1 \ + mknbi-nfl.1 mkelf-nfl.1 mknbi-dos.1 mknbi-fdos.1 mkelf-lua.1 +MLINKS+= mknbi.1 ${i} +.endfor + +PORTDOCS= COPYING README LOG spec.txt + +USE_GMAKE= yes +USE_PERL5= yes +ONLY_FOR_ARCHS= i386 + +.include <bsd.port.mk> |