forked from len0rd/rockbox
mkamsboot: change version string to 1.1, move devices list in the header
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21650 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f9eeab2b6c
commit
ef7ad19d37
2 changed files with 12 additions and 12 deletions
|
@ -109,18 +109,7 @@ execution to the uncompressed firmware.
|
||||||
#define O_BINARY 0
|
#define O_BINARY 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define VERSION "1.0"
|
#define VERSION "1.1"
|
||||||
|
|
||||||
/* Supported models */
|
|
||||||
enum {
|
|
||||||
MODEL_UNKNOWN = -1,
|
|
||||||
MODEL_FUZE = 0,
|
|
||||||
MODEL_CLIP,
|
|
||||||
MODEL_CLIPV2,
|
|
||||||
MODEL_E200V2,
|
|
||||||
MODEL_M200V4,
|
|
||||||
MODEL_C200V2,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* 4 for m200, 2 for e200/c200, 1 or 2 for fuze/clop */
|
/* 4 for m200, 2 for e200/c200, 1 or 2 for fuze/clop */
|
||||||
static const unsigned short hw_revisions[] = {
|
static const unsigned short hw_revisions[] = {
|
||||||
|
|
|
@ -28,6 +28,17 @@
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
/* Supported models */
|
||||||
|
enum {
|
||||||
|
MODEL_UNKNOWN = -1,
|
||||||
|
MODEL_FUZE = 0,
|
||||||
|
MODEL_CLIP,
|
||||||
|
MODEL_CLIPV2,
|
||||||
|
MODEL_E200V2,
|
||||||
|
MODEL_M200V4,
|
||||||
|
MODEL_C200V2,
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/* Holds info about the OF */
|
/* Holds info about the OF */
|
||||||
struct md5sums {
|
struct md5sums {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue