diff --git a/inshim.sh b/inshim.sh index fcbaaeb..10792a7 100644 --- a/inshim.sh +++ b/inshim.sh @@ -1,7 +1,10 @@ #!/bin/bash -mount /dev/sda1 /mnt/stateful_partition +mount /dev/sda1 /mnt/stateful_partition/ +mount /dev/mmcblk0p1 /tmp if [ "$(id -u)" -ne 0 ] then echo "Run this as root" fi -cp /usr/share/packeddata/. /mnt/stateful_partition/unencrypted -rvf \ No newline at end of file +cp /mnt/stateful_partition/usr/share/packeddata/. /tmp/unencrypted/ -rvf +umount /tmp +chown -R 1000 /mnt/stateful_partition/unencrypted \ No newline at end of file diff --git a/instructions.md b/instructions.md index a8964ae..9b1473d 100644 --- a/instructions.md +++ b/instructions.md @@ -1 +1 @@ -# TODO: \ No newline at end of file +# instructions \ No newline at end of file diff --git a/modify.sh b/modify.sh index 96d7c1c..dae4555 100644 --- a/modify.sh +++ b/modify.sh @@ -73,14 +73,14 @@ LOOP_DEV=$(losetup -f) echo "Script Developer: jeffplays1292@gmail.com" echo "This tool will modify your shim. There is a chance this tool will render it useless. This tool is in BETA. DO NOT SHARE THIS TOOL! " -echo "It is recommended to make a backup of your shim before continuing (Press ctrl-c in 5 seconds to stop this tool)" +echo "It is recommended to make a backup of your shim before continuing (Press ctrl-c in 5 seconds to stop this tool and make a backup)" sleep 5 losetup -fP "$1" echo "Using loop dev at $LOOP_DEV" echo "Mounting at $MOUNT_DIR" -enable_rw_mount "$LOOP_DEV"p3 -mount -o rw "$LOOP_DEV"p3 "$MOUNT_DIR" +enable_rw_mount "$LOOP_DEV"p1 +mount -o rw "$LOOP_DEV"p1 "$MOUNT_DIR" mkdir -p "$MOUNT_DIR/usr/share/packeddata" cp -rvf "./out/." "$MOUNT_DIR/usr/share/packeddata" cp "inshim.sh" "$MOUNT_DIR/usr/bin/inshim.sh"