Index: sys/boot/Makefile.amd64 =================================================================== --- sys/boot/Makefile.amd64 +++ sys/boot/Makefile.amd64 @@ -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 Index: sys/boot/Makefile.i386 =================================================================== --- sys/boot/Makefile.i386 +++ sys/boot/Makefile.i386 @@ -3,4 +3,7 @@ SUBDIR+= efi SUBDIR+= libstand32 SUBDIR+= zfs + +.if !defined(LOADER_NO_GELI_SUPPORT) SUBDIR+= geli +.endif