From 677742a76b0fc5c3b7f79570938f2fc6a6b767ac Mon Sep 17 00:00:00 2001 From: Hal Emmerich Date: Sat, 12 Oct 2019 13:46:08 -0500 Subject: [PATCH] fix typo in installed fstab, fixes #124 --- scripts/InstallScripts/InstallToInternal.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/InstallScripts/InstallToInternal.sh b/scripts/InstallScripts/InstallToInternal.sh index 78f00f1..2690f39 100755 --- a/scripts/InstallScripts/InstallToInternal.sh +++ b/scripts/InstallScripts/InstallToInternal.sh @@ -118,7 +118,7 @@ then rm /mnt/mmc/etc/fstab if [[ $CRYPTO == "true" ]] then - echo "/dev/mappper/luksroot / ext4 defaults,noatime 0 1" > /mnt/mmc/etc/fstab + echo "/dev/mapper/luksroot / ext4 defaults,noatime 0 1" > /mnt/mmc/etc/fstab else echo "/dev/mmcblk2p3 / ext4 defaults,noatime 0 1" > /mnt/mmc/etc/fstab fi