summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPali Rohár <pali.rohar@gmail.com>2012-08-10 12:14:05 +0200
committerPali Rohár <pali.rohar@gmail.com>2012-08-10 12:14:05 +0200
commitb142205f1c0f0a1202c882ff1994a4d3255c28bf (patch)
treec31b18f19c880d59845b4faf3301ee73c6c7df67
parente4858deccdaf6893520fe74b51a5bb738d0b2b32 (diff)
download0xFFFF-b142205f1c0f0a1202c882ff1994a4d3255c28bf.tar.bz2
Remove old main.h code
-rw-r--r--src/main.c2
-rw-r--r--src/main.h138
2 files changed, 1 insertions, 139 deletions
diff --git a/src/main.c b/src/main.c
index 39d6e1b..2d40bb3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "main.h"
+//#include "main.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
diff --git a/src/main.h b/src/main.h
deleted file mode 100644
index 54d0300..0000000
--- a/src/main.h
+++ /dev/null
@@ -1,138 +0,0 @@
-
-#ifndef _INCLUDE_MAIN_H_
-#define _INCLUDE_MAIN_H_
-
-#include "nolo.h"
-#include "os.h"
-extern char strbuf[1024];
-
-#ifndef _FILE_OFFSET_BITS
-#define _FILE_OFFSET_BITS 64
-#endif
-
-#ifndef _GNU_SOURCE
-#define _GNU_SOURCE
-#endif
-
-// Forward declaration for use in function arguments.
-//struct devices;
-
-int queue_mode();
-int reverse_extract_pieces(char *dir);
-//void flash_image(const char *filename, const char *piece, const char *device, const char *hwrevs, const char *version);
-//int fiasco_read_image(char *file);
-//void check_nolo_order();
-//extern struct usb_dev_handle *dev;
-//unsigned long get_file_size(const char *file);
-void progressbar(unsigned long long part, unsigned long long total);
-//const char *fpid_file(const char *filename);
-//int add_piece(char *piece);
-void eprintf(const char *format, ...);
-
-#include <limits.h>
-#ifndef PATH_MAX
-#define PATH_MAX 4096
-#endif
-
-#if HAVE_USB
-#include <usb.h>
-
-//int fiasco_flash(const char *file);
-extern struct usb_device *device;
-extern struct usb_dev_handle *dev;
-//int is_valid_device(struct usb_device_descriptor *udd);
-//void list_valid_devices();
-//int usb_device_found(struct usb_device_descriptor *udd, struct devices *it_device);
-//int console(const char *device);
-int connect_via_usb();
-#endif
-
-int console_prompt();
-
-//
-void cmd_info(char *line);
-int check_badblocks(char *mtddev);
-int dump_config();
-
-extern int verbose;
-#define D if (verbose)
-
-/*struct piece_t {
- char *name;
- char *type;
- char *device;
- char *hwrevs;
- char *version;
-};*/
-
-/*enum flash_mode {
- FLASH_COLD,
- FLASH_NORMAL,
- FLASH_MKII,
- FLASH_DISK,
-};*/
-
-/*struct devices {
- char *name;
- unsigned short vendor_id;
- unsigned short product_id;
- enum flash_mode mode;
-};*/
-
-//#define SUPPORTED_DEVICES 10
-//extern struct devices supported_devices[SUPPORTED_DEVICES];
-
-//extern int pcs_n;
-//extern struct piece_t pcs[10];
-
-/*enum {
- PIECE_XLOADER = 0,
- PIECE_2ND,
- PIECE_SECONDARY,
- PIECE_KERNEL,
- PIECE_INITFS,
- PIECE_ROOTFS,
- PIECE_OMAPNAND,
- PIECE_MMC,
- PIECE_CMT_2ND,
- PIECE_CMT_ALGO,
- PIECE_CMT_MCUSW,
- PIECE_FIASCO,
- PIECE_LAST
-};*/
-
-/*struct header_t {
- int fd;
- char swver[128];
- char type[128];
- char device[16];
- char hwrevs[128];
- char version[128];
- unsigned short hash;
- unsigned int size;
- unsigned char *data;
- char *name;
- char *layout;
-};*/
-
-extern char *pieces[];
-//extern char *modes[];
-
-// fiasco
-/*
-int openfiasco(const char *name, const char *type, const char *device, const char *hwrev, const char *version, int v);
-int fiasco_new(const char *filename, const char *name);
-void fiasco_data_read(struct header_t *header);
-extern int (*fiasco_callback)(struct header_t *header);
-int fiasco_add(int fd, const char *name, const char *file, const char *layout, const char *device, const char *hwrevs, const char *version);
-int fiasco_pack(int optind, char *argv[]);
-*/
-int nanddump(char *mtddev, unsigned long start_addr, unsigned long length, char *dumpfile, int isbl, int ioob);
-
-//
-/*int reboot_board();
-int get_rd_flags();
-int get_usb_mode();
-int get_nolo_version();*/
-
-#endif