您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
346B

  1. mklabel {{ item.label_type }}
  2. {% for part in item.partitions %}
  3. mkpart
  4. {% if item.label_type == "msdos" or item.label_type == "dvh" %}
  5. "{{ part.part_type }}"
  6. {% endif %}
  7. {% if part.fs_type is defined %}
  8. "{{ part.fs_type }}"
  9. {% endif %}
  10. {% if part.name is defined %}
  11. "{{ part.name }}
  12. "{% endif %}
  13. "{{ part.start }}"
  14. "{{ part.end }}"
  15. {% endfor %}