mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +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;
|
|
}
|