%&'"()*+,,-,,.".
Check what ubifs volume has been generated (e.g /dev/ubi1) and mount the
partition (-m 10 is due to the mtd partition number):
ubiattach /dev/ubi_ctrl -m 10
mount -t ubifs /dev/ubi1_0 /tmp
After the changes, boot normally the device.
7.5.2 FW >= 1.1.x
With the FW 1.1.x a bigger backup FS has been included, that allows the user
not only to mount the main FS as earlier, but also has the minimum needed
features to be able to start a GPRS session and communicate with a server,
which can be of help to recover from unknown states even in remote places.
The programs can be started using system V, saving in etc/init.d the script to
start and stop it. The following script example starts and stops a user program
called gsm.
#!/bin/sh
#
# description: gsm server
#
# Start the service gsm
start() {
initlog -c "echo -n Starting gsm server: "
/usr/bin/gsm --start
### Create the lock file ###
touch /var/lock/subsys/gsm
success $"gsm server startup"
echo
}
# Restart the service gsm
stop() {
initlog -c "echo -n Stopping gsm server: "
killall gsm
### Now, delete the lock file ###
rm -f /var/lock/subsys/gsm
echo
}
### main logic ###
case "$1" in
start)
&2