mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 17:15:58 +00:00
Add the REBOOT kconfig option, along with the sys_reboot() API. This infrastructure is not enough to actually perform a reboot. Architecture/platform code must be provided as well, in the form of a sys_arch_reboot() function. Change-Id: I5b2b15855ff06453f2764f3e3b3b7d6a4a078723 Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
6 lines
110 B
Makefile
6 lines
110 B
Makefile
obj-y =
|
|
obj-$(CONFIG_PRINTK) += printk.o
|
|
obj-$(CONFIG_REBOOT) += reboot.o
|
|
obj-y += generated/
|
|
obj-y += debug/
|