mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
0ebf9842e5
Default implementation of fastboot_set_reboot_flag function that depends on "bcb" commands could be used in general case if there are no need to make any platform-specific implementation, otherwise it could be disabled via Kconfig option FASTBOOT_USE_BCB_SET_REBOOT_FLAG. Please note that FASTBOOT_USE_BCB_SET_REBOOT_FLAG is mutually exclusive with some platforms which already have their own implementation of this function. Signed-off-by: Roman Kovalivskyi <roman.kovalivskyi@globallogic.com>
8 lines
257 B
Makefile
8 lines
257 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
obj-y += fb_common.o
|
|
obj-y += fb_getvar.o
|
|
obj-y += fb_command.o
|
|
obj-$(CONFIG_FASTBOOT_FLASH_MMC) += fb_mmc.o
|
|
obj-$(CONFIG_FASTBOOT_FLASH_NAND) += fb_nand.o
|
|
obj-$(CONFIG_FASTBOOT_USE_BCB_SET_REBOOT_FLAG) += fb_bcb_impl.o
|