diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-12-22 15:20:25 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-12-22 15:20:25 +0100 |
commit | b26983b4e967957f5ecc32d75663a723f97c2588 (patch) | |
tree | 2d22243e42ccd8c13696a9aae50d62a5911d90e2 /util/mount_filesystems.sh | |
parent | 36bb8d372ab57d68dae365619bf20cf89a612021 (diff) | |
download | archinstall-b26983b4e967957f5ecc32d75663a723f97c2588.tar archinstall-b26983b4e967957f5ecc32d75663a723f97c2588.tar.zst archinstall-b26983b4e967957f5ecc32d75663a723f97c2588.zip |
Reimplemented some modules for luks encryption.
Diffstat (limited to 'util/mount_filesystems.sh')
-rw-r--r-- | util/mount_filesystems.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/util/mount_filesystems.sh b/util/mount_filesystems.sh index 4bb66e4..f24421b 100644 --- a/util/mount_filesystems.sh +++ b/util/mount_filesystems.sh @@ -18,9 +18,12 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. -root_partition_path=$1 # e.g. /dev/sda2 +boot_partition_path=$1 +root_partition_path=$2 mount $root_partition_path /mnt +mkdir /mnt/boot +mount $boot_partition_path /mnt/boot echo "Mounted filesystems - OK" |