blob: b64cbb8eef0683a1b71a86e07ee1acf131431d8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _USR_AUTOBOOT_H
#define _USR_AUTOBOOT_H
/** @file
*
* Automatic booting
*
*/
extern int shutdown_exit_flags;
extern void autoboot ( void );
extern int boot_root_path ( const char *root_path );
#endif /* _USR_AUTOBOOT_H */
|