RTL960x/Tools/emulator/qemu-test.sh

112 lines
2.6 KiB
Bash
Raw Normal View History

2021-02-17 09:04:04 +00:00
#!/bin/bash
# Anime4000 firmware test
# Purpose of this script to let you test before flash into RTL9601C1 (ONU Stick)
# Try merge or play with V2801F and TWCGPON657
2022-03-01 02:37:17 +00:00
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$DIR"
2021-02-17 09:04:04 +00:00
echo "Anime4000 firmware test for RTL9601C1"
echo "-------------------------------------"
echo ""
if [ "$EUID" -ne 0 ]
2022-03-01 02:37:17 +00:00
then echo "Please run as root!"
2021-02-17 09:04:04 +00:00
exit 99
fi
2022-03-01 02:37:17 +00:00
echo "Checking Packging: $1"
if [[ ! -f $1 && -z $1 ]]; then
echo "$1 is not found! example: $0 C00R657V00B15_20201222.tar"
exit 99
fi
CHDIR="squashfs-root"
FILEPATH=$(realpath $1)
FILENAME=$(basename -- $1)
2021-02-17 09:04:04 +00:00
echo "Checking Install: QEMU User Static"
(qemu-mips-static --version) < /dev/null > /dev/null 2>&1 || {
echo "QEMU MIPS not installed on /usr/bin"
echo ""
echo "To install, run:"
echo "apt install qemu-user-static"
exit 1
}
echo "Checking Install: chroot"
(chroot --version) < /dev/null > /dev/null 2>&1 || {
echo "chroot not installed on /usr/sbin"
echo ""
echo "To install, run:"
echo "apt install schroot"
exit 2
}
2022-03-01 02:37:17 +00:00
echo "Creating folder: ${FILENAME%.*}"
mkdir ${FILENAME%.*}
echo "Entering folder: ${FILENAME%.*}"
cd ${FILENAME%.*}
echo "Extracting firmware: $FILENAME"
tar -xvf $FILEPATH
echo "Expanding squashfs-root: rootfs"
mv rootfs rootfs.original
unsquashfs rootfs.original
2021-02-17 09:04:04 +00:00
echo "Checking Folder: squashfs-root"
if [ ! -d "$CHDIR" ]; then
echo "$CHDIR not found"
echo ""
echo "To have $CHDIR (extracted rootfs), run:"
echo "unsquashfs rootfs"
exit 3
fi
echo "Checking: chroot /usr/bin"
if [ ! -d "$CHDIR/usr/bin" ]; then
echo "Creating: chroot /usr/bin"
mkdir "$CHDIR/usr/bin"
fi
echo "Checking: chroot QEMU MIPS"
if [ ! -f "$CHDIR/usr/bin/qemu-mips-static" ]; then
echo "Installing: chroot QEMU MIPS"
cp $(which qemu-mips-static) "$CHDIR/usr/bin/"
fi
2022-03-01 02:37:17 +00:00
echo "RTL9601C1 Emulator is Running!"
2021-02-17 09:04:04 +00:00
chroot "$CHDIR" qemu-mips-static "/bin/sh"
echo "User End QEMU..."
echo "chmod +x /bin folder, prevent stick become brick!"
chmod +x "$CHDIR/bin" -R
2021-02-17 09:04:04 +00:00
echo "Unmounting..."
rm -rf "$CHDIR/usr/bin"
2022-03-01 02:37:17 +00:00
echo "Repacking squashfs-root: rootfs"
mksquashfs squashfs-root rootfs -b 131072 -comp lzma
echo "Regenerate firmware: rtl9601c1_modified.tar"
md5sum fwu.sh > md5.txt
md5sum fwu_ver >> md5.txt
md5sum rootfs >> md5.txt
md5sum uImage >> md5.txt
echo "Repacking firmware: rtl9601c1_modified.tar"
tar -cvf ../rtl9601c1_modified.tar fwu.sh fwu_ver md5.txt rootfs uImage
echo ""
echo "Firmware Repacking Complete!"
echo "Location: $(realpath ../rtl9601c1_modified.tar)"
echo ""
echo "Anime4000 firmware test script, https://github.com/Anime4000/RTL9601C1"
echo ""
exit 0