Add more guards to disable GELIBOOT by defining LOADER_NO_GELI_SUPPORT

Reviewed by:	cem
Sponsored by:	ScaleEngine Inc.
Differential Revision:	https://reviews.freebsd.org/D6049
This commit is contained in:
Allan Jude 2016-04-21 16:32:48 +00:00
parent 59e2f057b6
commit 892bfb4bb2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=298418
2 changed files with 7 additions and 1 deletions

View File

@ -3,9 +3,12 @@
SUBDIR+= efi
SUBDIR+= libstand32
SUBDIR+= zfs
SUBDIR+= geli
SUBDIR+= userboot
.if !defined(LOADER_NO_GELI_SUPPORT)
SUBDIR+= geli
.endif
.if ${MK_FORTH} != "no"
SUBDIR+= ficl32
.endif

View File

@ -3,4 +3,7 @@
SUBDIR+= efi
SUBDIR+= libstand32
SUBDIR+= zfs
.if !defined(LOADER_NO_GELI_SUPPORT)
SUBDIR+= geli
.endif