2007-10-02 14:21:34 +00:00
|
|
|
/*
|
|
|
|
*
|
2013-09-05 12:39:22 +00:00
|
|
|
* (c) 2004-2007 Laurent Vivier <Laurent@Vivier.EU>
|
2007-10-02 14:21:34 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include "libmap.h"
|
|
|
|
|
2007-10-09 19:02:42 +00:00
|
|
|
int map_set_startup(map_t *map, int partition)
|
2007-10-02 14:21:34 +00:00
|
|
|
{
|
|
|
|
char *part_type;
|
|
|
|
int ret;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* check partition type */
|
|
|
|
|
|
|
|
ret = map_read(map, partition);
|
|
|
|
if (ret == -1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
part_type = map_get_partition_type(map);
|
|
|
|
if (strcmp(part_type, APPLE_HFS) != 0) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR: a startup partition must be of type Apple_HFS\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < map_get_number(map); i++)
|
|
|
|
{
|
|
|
|
ret = map_read(map, i);
|
|
|
|
if (ret == -1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
part_type = map_get_partition_type(map);
|
|
|
|
if (strcmp(part_type, APPLE_HFS) == 0)
|
|
|
|
{
|
|
|
|
map_partition_set_bootable(map, i == partition);
|
|
|
|
map_partition_set_startup(map, i == partition);
|
|
|
|
ret = map_write(map, i);
|
|
|
|
if (ret == -1)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|