blob: 52619229fd16719eaba22853535d0ff8ec82b3d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
--- a/kexecboot.c
+++ b/kexecboot.c
@@ -536,11 +536,23 @@ int main(int argc, char **argv)
fread(&evt, sizeof(struct input_event), 1, f);
while(evt.type != EV_KEY || evt.value != 0);
- if(evt.code == KEY_UP && choice >0)
- choice--;
- if(evt.code == KEY_DOWN && choice < bl->size-1)
- choice++;
- // printf("%d %d\n",choice, evt.code);
+ switch (evt.code) {
+ case KEY_UP:
+ if (choice > 0) choice--;
+ break;
+ case KEY_DOWN:
+ if ( choice < (bl->size - 1) ) choice++;
+ break;
+ case KEY_R:
+ /* FIXME: Should work while no boot devices is found */
+ sync();
+ sleep(1);
+ /* if ( -1 == reboot(LINUX_REBOOT_CMD_RESTART) ) { */
+ if ( -1 == reboot(RB_AUTOBOOT) ) {
+ perror("Can't initiate reboot");
+ }
+ break;
+ }
}while(evt.code != 87 && evt.code != 63);
fclose(f);
--- a/kexecboot.h
+++ b/kexecboot.h
@@ -29,6 +29,7 @@
#include <sys/wait.h>
#include <ctype.h>
#include <errno.h>
+#include <sys/reboot.h>
#include "fb.h"
#include "devicescan.h"
#include "res/logo-img.h"
|