diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2011-09-25 17:08:59 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2011-09-25 17:08:59 +0200 |
commit | 264eb42108b4ed908f973dc60cebd40796b20295 (patch) | |
tree | c75e0f44618777794fc9885ee2a8746e99109cb3 | |
parent | 848279822bad06bd161f3a22fb045a665aa24bfe (diff) | |
download | acritoxinstaller-264eb42108b4ed908f973dc60cebd40796b20295.zip acritoxinstaller-264eb42108b4ed908f973dc60cebd40796b20295.tar.gz |
fix hdmap order
-rw-r--r-- | backend/modules/hdmap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/modules/hdmap b/backend/modules/hdmap index dc60df4..220b5bd 100644 --- a/backend/modules/hdmap +++ b/backend/modules/hdmap @@ -341,7 +341,7 @@ function prepare_partitions_for_install() function fill_hdmap() { - cfg_set hdmap "$( + hdmap_set "$( ( echo "$cfg_hdmap" root_disk="$(get_disk "$(hdmap_get device of mountpoint /)")" @@ -365,6 +365,6 @@ function fill_hdmap() do echo "$part:::" done - ) | sort -u -t: -k1,1 | sort -t: -k2,2)" + ) | sort -u -t: -k1,1)" } |