You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
386 B
Bash
22 lines
386 B
Bash
#!/bin/sh
|
|
|
|
# Define the paths to the SquashFS images
|
|
IMAGE="$1"
|
|
|
|
echo $IMAGE
|
|
|
|
# Define the mount points
|
|
MOUNTPOINT="./firmware"
|
|
|
|
# Create the mount points if they don't exist
|
|
mkdir -p $MOUNTPOINT
|
|
|
|
# Mount the SquashFS images
|
|
7z x -o$MOUNTPOINT $IMAGE
|
|
|
|
# Perform the diff and show only the differences
|
|
#diff --no-dereference -r $MOUNTPOINT
|
|
|
|
# Remove the mount points
|
|
#rm -rf $MOUNTPOINT
|