d76cb4b487
RESPONSIBILITY LAYS WITH THE USER. IF YOU BRICK YOUR BOX YOU OWN IT. DO NOT BLAME ANYONE BUT YOURSELF. WHEN IN DOUBT DON'T USE IT. REALLY DON'T USE IT. with a bios image, this permits flashing bios on Dell systems on OpenBSD. ok sthen@, proded by marco@
41 lines
874 B
Makefile
41 lines
874 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/11/18 01:12:33 todd Exp $
|
|
|
|
|
|
COMMENT = tool to flash dell bios
|
|
|
|
DISTNAME = dellflash-0.1
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
HOMEPAGE = http://code.freedaemon.com/p/dellflash/
|
|
|
|
MAINTAINER = Todd T. Fries <todd@OpenBSD.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c
|
|
|
|
MASTER_SITES = http://code.freedaemon.com/releases/dellflash/
|
|
|
|
EXTRACT_SUFX = .tgz
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
INSTDIR= ${PREFIX}/lib/dellflash
|
|
SUBST_VARS= INSTDIR
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${INSTDIR}
|
|
${INSTALL_DATA} ${WRKBUILD}/module/biosmod.o ${INSTDIR}
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/flashit/flashit ${PREFIX}/sbin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dellflash
|
|
${INSTALL_DATA} ${WRKBUILD}/README ${PREFIX}/share/doc/dellflash
|
|
|
|
.include <bsd.port.mk>
|