diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2013-02-13 21:45:25 +0100 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2013-02-13 21:45:25 +0100 |
commit | e2b0efd1d7afe22591895acc07ba34cc5f4757f8 (patch) | |
tree | f1a40f630ca996a661aca6fd791067d518dba921 /backend/modules/hdmap | |
parent | 2c8760532949e465902bb6233840bc590bcfa0ec (diff) | |
download | acritoxinstaller-e2b0efd1d7afe22591895acc07ba34cc5f4757f8.zip acritoxinstaller-e2b0efd1d7afe22591895acc07ba34cc5f4757f8.tar.gz |
applied Kano's acritoxinstaller-hotfixes.patch
Diffstat (limited to 'backend/modules/hdmap')
-rw-r--r-- | backend/modules/hdmap | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/backend/modules/hdmap b/backend/modules/hdmap index 7be2818..fabb0d6 100644 --- a/backend/modules/hdmap +++ b/backend/modules/hdmap @@ -8,6 +8,7 @@ function mointpoint_demands() cat <<"EOT" /: Type:Linux /boot: LVM:no Type:Linux +/boot/efi: LVM:no Type:DOS /bin: Type:Linux /etc: Type:Linux /home: Type:Linux @@ -333,18 +334,14 @@ function fill_hdmap() echo "$part:/media/$(basename "$part")::auto" fi done - for part in $(list_linux_partitions) - do - if is_removeable "$part" && [ "$(get_disk "$part")" != "$root_disk" ]; then - echo "$part:::" - else - echo "$part:/media/$(basename "$part")::auto" - fi - done - for part in $(list_dm_partitions) - do - echo "$part:::" - done + #for part in $(list_linux_partitions) + #do + # if is_removeable "$part" && [ "$(get_disk "$part")" != "$root_disk" ]; then + # echo "$part:::" + # else + # echo "$part:/media/$(basename "$part")::auto" + # fi + #done ) | sort -u -t: -k1,1)" } |