summaryrefslogtreecommitdiff
path: root/flash.h
blob: d851182fd1b4920d84e8bff9e6155d15dca51c1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef FLASH_H_
#define FLASH_H_

#include "globals.h"
#include <glib.h>

void initFlash(FlashStruct *mem, gboolean reset_to_defaults, int starting_location);
void writeUserBlock(FlashStruct *mem, int addr, int numbytes);
void fixFlash(FlashStruct *mem);
void stopFlashWriterThread();
void remount_root_as_writeable(gboolean start);

#endif