Make model_names static in mkmpioboot.
Both mkmpioboot and mkamsboot use an array model_names which clash when linking with Rockbox Utility so don't export the mkmpioboot one. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28690 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5d274e528c
commit
10e0279afc
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@
|
|||
#define BOOTLOADER_MAX_SIZE 0x1f800 /* free space size */
|
||||
|
||||
/* Descriptive name of these models */
|
||||
const char* model_names[] = {
|
||||
static const char* model_names[] = {
|
||||
[MODEL_HD200] = "MPIO HD200",
|
||||
[MODEL_HD300] = "MPIO HD300",
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue