1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef __AUTOBOOT_H
- #define __AUTOBOOT_H
- #ifdef CONFIG_AUTOBOOT
- const char *bootdelay_process(void);
- void autoboot_command(const char *cmd);
- #else
- static inline const char *bootdelay_process(void)
- {
- return NULL;
- }
- static inline void autoboot_command(const char *s)
- {
- }
- #endif
- #endif
|