.. | .. |
---|
17 | 17 | #define CTRL_D 0x04 /* download mde */ |
---|
18 | 18 | #define CTRL_F 0x06 /* fastboot mode */ |
---|
19 | 19 | #define CTRL_I 0x09 /* inicall debug for kernel */ |
---|
| 20 | +#define CTRL_L 0x0c /* late shell(cli) on BOOTM_STATE_OS_GO */ |
---|
20 | 21 | #define CTRL_M 0x0d /* memory(sysmem/bidram) */ |
---|
21 | 22 | #define CTRL_P 0x10 /* parameter(cmdline) dump */ |
---|
22 | 23 | #define CTRL_R 0x12 /* regulator initial state dump */ |
---|
23 | | -#define CTRL_S 0x13 /* shell(cli) on BOOTM_STATE_OS_GO */ |
---|
24 | 24 | #define CTRL_T 0x14 /* print fdt */ |
---|
25 | 25 | |
---|
26 | 26 | bool is_hotkey(enum hotkey_t id) |
---|
.. | .. |
---|
75 | 75 | cli_loop(); |
---|
76 | 76 | break; |
---|
77 | 77 | case HK_CLI_OS_GO: |
---|
78 | | - if (gd->console_evt == CTRL_S) |
---|
| 78 | + if (gd->console_evt == CTRL_L) |
---|
79 | 79 | cli_loop(); |
---|
80 | 80 | break; |
---|
81 | 81 | default: |
---|