Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | * |
| 6 | * Add to readline cmdline-editing by |
| 7 | * (C) Copyright 2005 |
| 8 | * JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com> |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef __AUTOBOOT_H |
| 12 | #define __AUTOBOOT_H |
| 13 | |
Masahiro Yamada | 41598c8 | 2016-06-20 17:33:39 +0900 | [diff] [blame] | 14 | #ifdef CONFIG_AUTOBOOT |
Simon Glass | affb215 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 15 | /** |
| 16 | * bootdelay_process() - process the bootd delay |
| 17 | * |
| 18 | * Process the boot delay, boot limit, then get the value of either |
| 19 | * bootcmd, failbootcmd or altbootcmd depending on the current state. |
| 20 | * Return this command so it can be executed. |
| 21 | * |
| 22 | * @return command to executed |
| 23 | */ |
| 24 | const char *bootdelay_process(void); |
| 25 | |
| 26 | /** |
| 27 | * autoboot_command() - run the autoboot command |
| 28 | * |
| 29 | * If enabled, run the autoboot command returned from bootdelay_process(). |
Simon Glass | 8fc31e2 | 2019-07-20 20:51:21 -0600 | [diff] [blame] | 30 | * Also do the CONFIG_AUTOBOOT_MENUKEY processing if enabled. |
Simon Glass | affb215 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 31 | * |
| 32 | * @cmd: Command to run |
| 33 | */ |
| 34 | void autoboot_command(const char *cmd); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 35 | #else |
Simon Glass | affb215 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 36 | static inline const char *bootdelay_process(void) |
| 37 | { |
| 38 | return NULL; |
| 39 | } |
| 40 | |
| 41 | static inline void autoboot_command(const char *s) |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 42 | { |
| 43 | } |
| 44 | #endif |
| 45 | |
| 46 | #endif |