+#ifndef __FLASH_H__
+#define __FLASH_H__
+
+#include <stdint.h>
+
struct partition {
- int start;
- int end;
- int precious;
- const char *name;
+ int start;
+ int end;
+ int precious;
+ const char *name;
};
void FlushPrevious(int translate);
#define PHYSICAL_FLASH_START 0x100000
void do_flash(char **argv);
+
+#endif
+