svn commit: r271481 - stable/10/release
Glen Barber
gjb at FreeBSD.org
Fri Sep 12 19:32:19 UTC 2014
Author: gjb
Date: Fri Sep 12 19:32:18 2014
New Revision: 271481
URL: http://svnweb.freebsd.org/changeset/base/271481
Log:
Include the 'mini' (bootonly) UEFI memstick image
in the list of IMAGES.
This is a direct commit to stable/10.
Approved by: re (marius)
Sponsored by: The FreeBSD Foundation
Modified:
stable/10/release/Makefile
Modified: stable/10/release/Makefile
==============================================================================
--- stable/10/release/Makefile Fri Sep 12 18:52:01 2014 (r271480)
+++ stable/10/release/Makefile Fri Sep 12 19:32:18 2014 (r271481)
@@ -95,7 +95,9 @@ IMAGES+= mini-memstick.img
.endif
.if exists(${.CURDIR}/${TARGET}/make-uefi-memstick.sh)
RELEASE_TARGETS+=uefi-memstick.img
+RELEASE_TARGETS+=uefi-mini-memstick.img
IMAGES+= uefi-memstick.img
+IMAGES+= uefi-mini-memstick.img
.endif
.if exists(${.CURDIR}/${TARGET}/mkisoimages-uefi.sh)
RELEASE_TARGETS+=uefi-disc1.iso
@@ -265,6 +267,12 @@ uefi-memstick.img: system
sh ${.CURDIR}/${TARGET}/make-uefi-memstick.sh release ${.TARGET}
.endif
+uefi-mini-memstick: uefi-mini-memstick.img
+uefi-mini-memstick.img: system
+.if exists(${.CURDIR}/${TARGET}/make-uefi-memstick.sh)
+ sh ${.CURDIR}/${TARGET}/make-uefi-memstick.sh bootonly ${.TARGET}
+.endif
+
packagesystem: base.txz kernel.txz ${EXTRA_PACKAGES}
sh ${.CURDIR}/scripts/make-manifest.sh *.txz > MANIFEST
touch ${.TARGET}
More information about the svn-src-stable-10
mailing list