3
This commit is contained in:
parent
dea692a14b
commit
0d10b72393
@ -28,8 +28,16 @@ int main(int argc, char **argv) {
|
|||||||
}
|
}
|
||||||
printf("You entered: %s\n", choice);
|
printf("You entered: %s\n", choice);
|
||||||
|
|
||||||
if (strcmp(choice, "1") == 0) {
|
if (!strcmp(choice, "1")) {
|
||||||
ui_flash("tpm0");
|
ui_flash("tpm0");
|
||||||
|
} else if (!strcmp(choice, "2")) {
|
||||||
|
ui_flash("rmasmoke");
|
||||||
|
} else if (!strcmp(choice, "3")) {
|
||||||
|
printf("wip");
|
||||||
|
} else if (!strcmp(choice, "4")) {
|
||||||
|
system("/bin/bash");
|
||||||
|
} else if (!strcmp(choice, "5")) {
|
||||||
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user