Welcome to the Linux Foundation Forum!
Mount image file to partitions
abp
Posts: 1
Hi
I downloaded a device firmware.
Like this:
zetnu.xilinx-201907311618-autofreq-user-Update2UBI-NF-sig.tar.gz
I extract above file and file content is these files:
- BOOT.bin
- devicetree.dtb
- rootfs.jffs2
- uImage
Next to this files, was a file yo install.
This file:
runme.sh
This file content is this:
`
#!/bin/sh -e
path=$(pwd)
cp_config="all"
if [ ! -d /mnt/upgrade ];
then
mkdir /mnt/upgrade
fi
if [ -e /usr/bin/ctrl_bd ]; then
ret=`cat /usr/bin/ctrl_bd | grep "XILINX" | wc -l`
else
ret=0
fi
if [ $ret -eq 1 ];then
cd ./xilinx
if [ -e /dev/ubi_ctrl ];then
if [ ! -d /mnt/config ];then
mkdir /mnt/config
fi
ubiattach /dev/ubi_ctrl -m 2
mount -t ubifs ubi1:rootfs /mnt/config
if [ ! -d /mnt/config/home/usr_config ];then
mkdir /mnt/config/home/usr_config
fi
if [ `ls /mnt/config/home/usr_config | wc -l` -gt 1 ];then
cp_config="all" #cp -r /config/* /mnt/config/home/usr_config/
else
cp_config="mac" #cp -r /config/mac /mnt/config/home/usr_config/
fi
umount /mnt/config
ubidetach -d 1 /dev/ubi_ctrl
fi
if [ -e BOOT.bin ]; then
flash_erase /dev/mtd0 0x0 0x80 >/dev/null 2>&1
nandwrite -p -s 0x0 /dev/mtd0 ./BOOT.bin >/dev/null 2>&1
rm -rf BOOT.bin
fi
if [ -e devicetree.dtb ]; then
flash_erase /dev/mtd0 0x1020000 0x1 >/dev/null 2>&1
nandwrite -p -s 0x1020000 /dev/mtd0 ./devicetree.dtb >/dev/null 2>&1
rm devicetree.dtb
fi
if [ -e uImage ]; then
flash_erase /dev/mtd0 0x1100000 0x40 >/dev/null 2>&1
nandwrite -p -s 0x1100000 /dev/mtd0 ./uImage >/dev/null 2>&1
rm uImage
fi
if [ -e rootfs.jffs2 ]; then
if [ -f /dev/mtd3 ];then
flash_erase /dev/mtd2 0x0 0x1E0 >/dev/null 2>&1
else
flash_erase /dev/mtd2 0x0 0x280 >/dev/null 2>&1
fi
nandwrite -p -s 0x0 /dev/mtd2 ./rootfs.jffs2 >/dev/null 2>&1
rm rootfs.jffs2
fi
if [ -e /dev/ubi_ctrl ];then
if [ ! -d /mnt/config ];then
mkdir /mnt/config
fi
ubiattach /dev/ubi_ctrl -m 2
mount -t ubifs ubi1:rootfs /mnt/config
if [ ! -d /mnt/config/home/usr_config ];then
mkdir /mnt/config/home/usr_config
fi
if [ $cp_config == "all" ];then
cp -r /config/* /mnt/config/home/usr_config/
if [ -e ../lighttpd-htdigest.user ]; then
line1=`cat ../lighttpd-htdigest.user | wc -c`
if [ $line1 != "0" ]; then
cp -r ../lighttpd-htdigest.user /mnt/config/home/usr_config/lighttpd-htdigest.user
if [ -e ../shadow ]; then
line2=`cat ../shadow | wc -c`
if [ $line2 != "0" ]; then
cp /etc/shadow /mnt/config/home/usr_config/shadow
old_shd=`sed -n '1p' /mnt/config/home/usr_config/shadow`
o1=`echo ${old_shd:5}`
o2=${o1#*:}
new_shd=`cat ../shadow`
n1=$new_shd":"$o2
sed -i '1d' /mnt/config/home/usr_config/shadow
sed -i "1i $(echo $n1)" /mnt/config/home/usr_config/shadow
fi
fi
fi
fi
else
cp -r /config/mac /mnt/config/home/usr_config/
fi
sync
umount /mnt/config
ubidetach -d 1 /dev/ubi_ctrl
fi
if [ -e /dev/ubi_ctrl ];then
ubiattach /dev/ubi_ctrl -m 2
mount -t ubifs ubi1:rootfs /mnt/upgrade
cd /mnt/upgrade/upgrade
rm -rf /mnt/upgrade/upgrade/*
cd $path
if [ -e ./xilinx/angstrom_rootfs.jffs2 ];then
cp -rf ./xilinx/angstrom_rootfs.jffs2 /mnt/upgrade/upgrade
if [ -f /dev/mtd3 ];then
flash_erase /dev/mtd3 0 0xa0 >/dev/null 2>&1
fi
fi
flash_erase /dev/mtd0 0x1040000 0x1 >/dev/null 2>&1
nandwrite -p -s 0x1040000 /dev/mtd0 ./xilinx/upgrade-marker.bin >/dev/null 2>&1
sync
umount /mnt/upgrade
ubidetach -d 1 /dev/ubi_ctrl
fi
else
echo "this is not for c5"
fi
rm -rf *.tar.gz
#/sbin/reboot -f &
`
Above code used nandwrite to write in a device.
Now, I want to mount these images to a directory or partitions. and add or change somethings to these images. next write again to images.
How can I do it?
Step 1, I just want to mount and read file and directories.
Please help me.
Thanks
0
Categories
- All Categories
- 177 LFX Mentorship
- 177 LFX Mentorship: Linux Kernel
- 769 Linux Foundation IT Professional Programs
- 379 Cloud Engineer IT Professional Program
- 175 Advanced Cloud Engineer IT Professional Program
- 75 DevOps IT Professional Program - Discontinued
- 7 DevOps & GitOps IT Professional Program
- 102 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 7 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 15 Cloud & Containers Training
- 2 Cybersecurity Training
- 2 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 2 Networking Training
- 2 Open Source Best Practice Training
- 4 System Administration Training
- 1 System Engineering Training
- 2 Web & Application Development Training
- 796 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 91 Storage
- 771 Linux Distributions
- 81 Debian
- 68 Fedora
- 23 Linux Mint
- 13 Mageia
- 24 openSUSE
- 151 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 126 Mobile Computing
- 20 Android
- 91 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 400 Off Topic
- 124 Introductions
- 32 Study Material
- 1K Programming and Development
- 310 Kernel Development
- 705 Software Development
- 1K Software
- 406 Applications
- 182 Command Line
- 5 Compiling/Installing
- 70 Games
- 318 Installation
- Archived
- 183 Small Talk
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)