summaryrefslogtreecommitdiff
path: root/util/mount_filesystems.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/mount_filesystems.sh')
-rw-r--r--util/mount_filesystems.sh5
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"