mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-23 16:29:39 +00:00
22 lines
386 B
C
22 lines
386 B
C
|
/*
|
||
|
*
|
||
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "partition.h"
|
||
|
#include "libemile.h"
|
||
|
|
||
|
int emile_map_partition_set_bootable(emile_map_t *map, int enable)
|
||
|
{
|
||
|
if (!emile_map_partition_is_valid(map))
|
||
|
return -1;
|
||
|
|
||
|
if (enable)
|
||
|
map->partition.PartStatus |= kPartitionAUXIsBootValid;
|
||
|
else
|
||
|
map->partition.PartStatus &= ~kPartitionAUXIsBootValid;
|
||
|
|
||
|
return 0;
|
||
|
}
|