Added shim builder fixes. I'm still rusty at this

This commit is contained in:
MunyDev 2024-08-14 10:45:23 -04:00
parent 05a9b26833
commit 41b8404d89
No known key found for this signature in database
GPG Key ID: 7DFBB51356064F62
3 changed files with 9 additions and 6 deletions

View File

@ -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
cp /mnt/stateful_partition/usr/share/packeddata/. /tmp/unencrypted/ -rvf
umount /tmp
chown -R 1000 /mnt/stateful_partition/unencrypted

View File

@ -1 +1 @@
# TODO:
# instructions

View File

@ -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"