mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
46b2e5e92c
This adds an NVMEM reboot mode driver, similar to Linux's implementation. This allows using the same device tree binding for Linux and U-Boot in most cases. Signed-off-by: Sean Anderson <sean.anderson@seco.com> Reviewed-by: Simon Glass <sjg@chromium.org>
10 lines
290 B
Makefile
10 lines
290 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c), Vaisala Oyj
|
|
#
|
|
|
|
obj-$(CONFIG_DM_REBOOT_MODE) += reboot-mode-uclass.o
|
|
obj-$(CONFIG_DM_REBOOT_MODE_GPIO) += reboot-mode-gpio.o
|
|
obj-$(CONFIG_DM_REBOOT_MODE_RTC) += reboot-mode-rtc.o
|
|
obj-$(CONFIG_REBOOT_MODE_NVMEM) += reboot-mode-nvmem.o
|