Handle LOADER_NO_DISK_SUPPORT knob in the arm and powerpc ubldr.

This commit is contained in:
Andrey V. Elsukov 2012-09-09 11:40:37 +00:00
parent 60dff4f9f8
commit da1d05228c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=240277
2 changed files with 8 additions and 0 deletions

View File

@ -14,7 +14,11 @@ UBLDR_LOADADDR?= 0x1000000
# Architecture-specific loader code
SRCS= start.S conf.c vers.c
.if !defined(LOADER_NO_DISK_SUPPORT)
LOADER_DISK_SUPPORT?= yes
.else
LOADER_DISK_SUPPORT= no
.endif
LOADER_UFS_SUPPORT?= yes
LOADER_CD9660_SUPPORT?= no
LOADER_EXT2FS_SUPPORT?= no

View File

@ -12,7 +12,11 @@ NO_MAN=
SRCS= start.S conf.c vers.c
SRCS+= ucmpdi2.c
.if !defined(LOADER_NO_DISK_SUPPORT)
LOADER_DISK_SUPPORT?= yes
.else
LOADER_DISK_SUPPORT= no
.endif
LOADER_UFS_SUPPORT?= yes
LOADER_CD9660_SUPPORT?= no
LOADER_EXT2FS_SUPPORT?= no