diff options
Diffstat (limited to 'src/dump.h')
-rw-r--r-- | src/dump.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/dump.h b/src/dump.h new file mode 100644 index 0000000..8ce08ec --- /dev/null +++ b/src/dump.h @@ -0,0 +1,28 @@ +/* + * 0xFFFF - Open Free Fiasco Firmware Flasher + * Copyright (C) 2007-2009 pancake <pancake@nopcode.org> + * Copyright (C) 2012 Pali Rohár <pali.rohar@gmail.com> + * + * 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 <http://www.gnu.org/licenses/>. + */ + +#ifndef DUMP_H +#define DUMP_H + +int check_badblocks(char *mtddev); +int nanddump(char *mtddev, unsigned long start_addr, unsigned long length, char *dumpfile, int isbl, int ioob); +int dump_config(void); +int reverse_extract_pieces(char *dir); + +#endif |