mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
30 lines
719 B
C
30 lines
719 B
C
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
|
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#include "partition.h"
|
|
#include "libemile.h"
|
|
|
|
int emile_map_set_bootinfo(emile_map_t *map, int bootstart, int bootsize,
|
|
int bootaddr, int bootentry, int checksum,
|
|
char* processor)
|
|
{
|
|
if (!emile_map_is_valid(map))
|
|
return -1;
|
|
|
|
map->partition.LgBootStart = bootstart;
|
|
map->partition.BootSize = bootsize;
|
|
map->partition.BootAddr = bootaddr;
|
|
map->partition.BootEntry = bootentry;
|
|
map->partition.BootCksum = checksum;
|
|
memset(map->partition.Processor, 0, sizeof(map->partition.Processor));
|
|
strcpy(map->partition.Processor, processor);
|
|
|
|
return 0;
|
|
}
|