mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
23 lines
444 B
C
23 lines
444 B
C
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
|
/*
|
|
*
|
|
* (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;
|
|
}
|