This commit is contained in:
kxtzownsu 2024-11-06 22:35:20 -05:00 committed by kxtz smith
parent dea692a14b
commit 0d10b72393

View File

@ -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;