/* * 0xFFFF - Open Free Fiasco Firmware Flasher * Copyright (C) 2007, 2008 pancake * Copyright (C) 2012 Pali Rohár * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include #include #include #include #include #include "console.h" #include "nolo.h" #include "dump.h" static void cmd_exit(char *line) { exit(0); } static void cmd_help(char *line) { printf("connect connects via usb to nolo\n"); printf("reboot reboots remote host\n"); printf("info shows info of the remote system\n"); printf("linfo shows info of the local system\n"); printf("shell opens a shell (/bin/sh)\n"); printf("badblocks [dev] checks bad blocks on mtd (/dev/mtd1)\n"); printf("dump [dir] dumps the contents of /dev/mtd to dir\n"); printf("nanddump [dev] [start] [len] [out] [ignore-badblocks] [ignore-oob]\n"); printf(" f.ex: nanddump /dev/mtd0 0x0 0x4000 xloader.bin 1 1\n"); printf("exit exits the shell\n"); fflush(stdout); } static void cmd_info(char *line) { char *p, str[128]; // get_sw_version(); // get_hw_revision(str, 128); // get hardware revision: p = strstr(str, "hw_rev:"); if (p) // TODO: delimit string by comma printf("SubVersionString autodetected: '%s'\n", p+7); else printf("SubVersionString autodetected: (error)\n"); // get_root_device(); // only for flashing // get_usb_mode(); // get_rd_mode(); // get_rd_flags(); } static void cmd_nanddump(char *line) { char dev[128]; int from; int length; char out[128]; int ignbb; int ignoob = -1; sscanf(line, "%127s 0x%x 0x%x %127s %d %d", (char *)&dev, (unsigned int*)&from, (unsigned int *)&length, (char *)&out, (int*)&ignbb, (int *)&ignoob); if (ignoob == -1) { fprintf(stderr, "Invalid arguments.\n"); fprintf(stderr, "nanddump [dev] [start] [len] [out] [ignore-badblocks] [ignore-oob]\n"); fprintf(stderr, " f.ex: nanddump /dev/mtd0 0x0 0x4000 xloader.bin 1 1\n"); } else nanddump(dev, from, length, out, ignbb, ignoob); } static void cmd_dump(char *line) { if (!line[0]) { printf("Usage: dump [path]\n"); return; } while(line[0]==' ') line = line +1; reverse_extract_pieces(line); } static void cmd_badblocks(char *line) { if (!line[0]) { printf("Usage: dump [path]\n"); return; } while(line[0]==' ') line = line +1; check_badblocks(line); } static void cmd_connect(char *line) { // connect_via_usb(); } static void cmd_reboot(char *line) { // reboot_board(); } static void cmd_shell(char *line) { system("/bin/sh"); } #define CMDS 11 #define IS_CMD(x) !strcmp(console_commands[i].name, x) #define CALL_CMD(x) console_commands[x].callback((char *)line) #define FOREACH_CMD(x) for(x=0;x ", 8); line[0] = '\0'; fgets(line, 1024, stdin); if (feof(stdin)) { write(1, "\n", 1); break; } if (line[0]) line[strlen(line)-1] = '\0'; line[1023] = '\0'; } while(console_command(line)); return 0; }