mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
dc0d17c26a
This command is being introduced with the goal of allowing user-friendly "generic use case" U-Boot builds to pause until user input under some situations. The main use case would be when a boot failure happens, to pause until the user has had time to acknowledge the current state. Tested using: make && ./u-boot -v -T -c 'ut lib lib_test_hush_pause' Signed-off-by: Samuel Dionne-Riel <samuel@dionne-riel.com> Cc: Simon Glass <sjg@chromium.org>
18 lines
493 B
Makefile
18 lines
493 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2013 Google, Inc
|
|
|
|
ifdef CONFIG_HUSH_PARSER
|
|
obj-$(CONFIG_CONSOLE_RECORD) += test_echo.o
|
|
endif
|
|
ifdef CONFIG_CONSOLE_RECORD
|
|
obj-$(CONFIG_CMD_PAUSE) += test_pause.o
|
|
endif
|
|
obj-y += mem.o
|
|
obj-$(CONFIG_CMD_ADDRMAP) += addrmap.o
|
|
obj-$(CONFIG_CMD_FDT) += fdt.o
|
|
obj-$(CONFIG_CMD_LOADM) += loadm.o
|
|
obj-$(CONFIG_CMD_MEM_SEARCH) += mem_search.o
|
|
obj-$(CONFIG_CMD_PINMUX) += pinmux.o
|
|
obj-$(CONFIG_CMD_PWM) += pwm.o
|
|
obj-$(CONFIG_CMD_SETEXPR) += setexpr.o
|