Home | History | Annotate | Download | only in bin

Lines Matching refs:root_part

1060 def get_free_root_partition(root_part=None):
1065 @param root_part: cuurent root partition
1068 if not root_part:
1069 root_part = get_root_partition()
1070 return root_part[:-1] + spare_root_map[root_part[-1]]
1073 def get_kernel_partition(root_part=None):
1078 @param root_part: current root partition
1080 if not root_part:
1081 root_part = get_root_partition()
1083 return root_part[:-1] + current_kernel_map[root_part[-1]]
1086 def get_free_kernel_partition(root_part=None):
1091 @param root_part: current root partition
1093 kernel_part = get_kernel_partition(root_part)