Handle LOADER_NO_DISK_SUPPORT knob in the arm and powerpc ubldr.
This commit is contained in:
parent
60dff4f9f8
commit
da1d05228c
@ -14,7 +14,11 @@ UBLDR_LOADADDR?= 0x1000000
|
|||||||
# Architecture-specific loader code
|
# Architecture-specific loader code
|
||||||
SRCS= start.S conf.c vers.c
|
SRCS= start.S conf.c vers.c
|
||||||
|
|
||||||
|
.if !defined(LOADER_NO_DISK_SUPPORT)
|
||||||
LOADER_DISK_SUPPORT?= yes
|
LOADER_DISK_SUPPORT?= yes
|
||||||
|
.else
|
||||||
|
LOADER_DISK_SUPPORT= no
|
||||||
|
.endif
|
||||||
LOADER_UFS_SUPPORT?= yes
|
LOADER_UFS_SUPPORT?= yes
|
||||||
LOADER_CD9660_SUPPORT?= no
|
LOADER_CD9660_SUPPORT?= no
|
||||||
LOADER_EXT2FS_SUPPORT?= no
|
LOADER_EXT2FS_SUPPORT?= no
|
||||||
|
@ -12,7 +12,11 @@ NO_MAN=
|
|||||||
SRCS= start.S conf.c vers.c
|
SRCS= start.S conf.c vers.c
|
||||||
SRCS+= ucmpdi2.c
|
SRCS+= ucmpdi2.c
|
||||||
|
|
||||||
|
.if !defined(LOADER_NO_DISK_SUPPORT)
|
||||||
LOADER_DISK_SUPPORT?= yes
|
LOADER_DISK_SUPPORT?= yes
|
||||||
|
.else
|
||||||
|
LOADER_DISK_SUPPORT= no
|
||||||
|
.endif
|
||||||
LOADER_UFS_SUPPORT?= yes
|
LOADER_UFS_SUPPORT?= yes
|
||||||
LOADER_CD9660_SUPPORT?= no
|
LOADER_CD9660_SUPPORT?= no
|
||||||
LOADER_EXT2FS_SUPPORT?= no
|
LOADER_EXT2FS_SUPPORT?= no
|
||||||
|
Loading…
Reference in New Issue
Block a user