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
- 175 LFX Mentorship
- 175 LFX Mentorship: Linux Kernel
- 745 Linux Foundation IT Professional Programs
- 372 Cloud Engineer IT Professional Program
- 168 Advanced Cloud Engineer IT Professional Program
- 73 DevOps IT Professional Program - Discontinued
- 3 DevOps & GitOps IT Professional Program
- 98 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- AI & ML Training
- Blockchain & Decentralized Identity Training
- Cloud & Containers Training
- Cybersecurity Training
- DevOps & Site-Reliability Training
- Linux Kernel Development Training
- Networking Training
- Open Source Best Practice Training
- System Administration Training
- System Engineering Training
- Web & Application Development Training
- 2 LFD103-JP クラス フォーラム
- 4 LFD210-CN Class Forum
- 764 LFD259 Class Forum
- 681 LFS101 Class Forum
- 2 LFS158-JP クラス フォーラム
- 162 LFS207 Class Forum
- 3 LFS207-DE-Klassenforum
- 4 LFS207-JP クラス フォーラム
- 61 LFS241 Class Forum
- 52 LFS242 Class Forum
- 42 LFS243 Class Forum
- 19 LFS244 Class Forum
- 4 LFS250-JP クラス フォーラム
- 166 LFS253 Class Forum
- 19 LFS256 Class Forum
- 1.4K LFS258 Class Forum
- 165 LFS261 Class Forum
- 26 LFS267 Class Forum
- 792 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 87 Storage
- 768 Linux Distributions
- 81 Debian
- 67 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 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
- 105 Mobile Computing
- 18 Android
- 72 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 392 Off Topic
- 121 Introductions
- 181 Small Talk
- 29 Study Material
- 944 Programming and Development
- 310 Kernel Development
- 616 Software Development
- 976 Software
- 368 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 2 LFD140 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)