代码拉取完成,页面将自动刷新
#!/bin/bash
FSIMG="$1"
ROOTFS="$2"
ENDIANESS="$3"
MKFS=""
function finish
{
rm -f "$FSIMG.le"
echo "MKFS=\"$MKFS\""
}
if [ "$FSIMG" == "" ] || [ "$FSIMG" == "-h" ]
then
echo "Usage: $(basename $0) <cramfs image> [output directory] [-be | -le]\n"
exit 1
fi
if [ $UID -ne 0 ]
then
SUDO="sudo"
fi
if [ "$ENDIANESS" == "" ]
then
if [ "$(file $FSIMG | grep 'big endian')" != "" ]
then
ENDIANESS="-be"
fi
fi
if [ "$ROOTFS" == "" ]
then
ROOTFS="./cramfs-root"
BDIR=$ROOTFS
I=1
while [ -e $ROOTFS ]
do
ROOTFS=$BDIR-$I
((I=$I+1))
done
fi
FSIMG=$(readlink -f $FSIMG)
ROOTFS=$(readlink -f $ROOTFS)
# Make sure we're operating out of the FMK directory
cd $(dirname $(readlink -f $0))
if [ "$ENDIANESS" == "-be" ]
then
./src/cramfsswap/cramfsswap "$FSIMG" "$FSIMG.le"
else
cp "$FSIMG" "$FSIMG.le"
fi
if [ -e "$FSIMG.le" ]
then
# If this is an OpenRG firmware, try uncramfs-lzma first.
if [ "$(strings "$FSIMG.le" | grep openrg)" != "" ]
then
./src/uncramfs-lzma/uncramfs-lzma "$ROOTFS" "$FSIMG.le" 2>/dev/null
if [ $? -eq 0 ]
then
# Does not exist, will not be able to re-build the file system!
MKFS="./src/uncramfs-lzma/mkcramfs-lzma"
finish
exit 0
fi
fi
./src/cramfs-2.x/cramfsck -x "$ROOTFS" "$FSIMG.le" 2>/dev/null
if [ $? -eq 0 ]
then
MKFS="./src/cramfs-2.x/mkcramfs"
finish
exit 0
fi
./src/uncramfs/uncramfs "$ROOTFS" "$FSIMG.le" 2>/dev/null
if [ $? -eq 0 ]
then
MKFS="./src/cramfs-2.x/mkcramfs"
finish
exit 0
fi
./src/uncramfs-lzma/uncramfs-lzma "$ROOTFS" "$FSIMG.le" 2>/dev/null
if [ $? -eq 0 ]
then
# Does not exist, will not be able to re-build the file system!
MKFS="./src/uncramfs-lzma/mkcramfs-lzma"
finish
exit 0
fi
fi
echo "File extraction failed!"
finish
exit 1
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。