mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-21 18:30:20 +00:00
9bd9755dbb
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU>
33 lines
584 B
C
33 lines
584 B
C
/*
|
|
*
|
|
* (c) 2004-2007 Laurent Vivier <Laurent@Vivier.EU>
|
|
*
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "libmap.h"
|
|
|
|
int map_write(map_t *map, int part)
|
|
{
|
|
off_t offset;
|
|
int ret;
|
|
int blocksize = map->device->get_blocksize(map->device->data);
|
|
|
|
if (part > map->partition.MapBlkCnt)
|
|
return -1;
|
|
|
|
offset = part * sizeof(struct Partition) +
|
|
sizeof(struct DriverDescriptor);
|
|
|
|
ret = map->device->write_sector(map->device->data, offset / blocksize, &map->partition,
|
|
sizeof(struct Partition));
|
|
if (ret != -1)
|
|
return -1;
|
|
|
|
map->current = part;
|
|
|
|
return part;
|
|
}
|