mirror of
https://github.com/vivier/EMILE.git
synced 2025-01-18 06:31:23 +00:00
14 lines
234 B
C
14 lines
234 B
C
|
/*
|
||
|
*
|
||
|
* (c) 2004-2007 Laurent Vivier <Laurent@lvivier.info>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "libmap.h"
|
||
|
|
||
|
int map_partition_is_bootable(map_t *map)
|
||
|
{
|
||
|
return (map_partition_get_flags(map) &
|
||
|
kPartitionAUXIsBootValid) == kPartitionAUXIsBootValid;
|
||
|
}
|