Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit Switch - Software
Manage
Activity
Members
Labels
Plan
Issues
87
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit Switch - Software
Commits
dd245fae
Commit
dd245fae
authored
8 years ago
by
Adam Wujek
Browse files
Options
Downloads
Patches
Plain Diff
rootfs: add printouts during firmware update
Signed-off-by:
Adam Wujek
<
adam.wujek@cern.ch
>
parent
a09620c7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
userspace/rootfs_override/etc/init.d/wrs-boot-procedure
+22
-4
22 additions, 4 deletions
userspace/rootfs_override/etc/init.d/wrs-boot-procedure
with
22 additions
and
4 deletions
userspace/rootfs_override/etc/init.d/wrs-boot-procedure
+
22
−
4
View file @
dd245fae
...
...
@@ -148,16 +148,30 @@ if [ -f /update/$WRS_FW -o -f /update/$WRS_USR ]; then
# check if we have an initramfs and/or kernel too
# FIXME: should rather check first and save a backup
cd
/boot
# The commands may fail because we miss wrs-firmware.tar or the content
for
file
in
$WRS_KER
$WRS_RAMFS
;
do
tar
-xf
/update/
$WRS_FW
$file
&&
reboot
=
true
done
if
[
-f
/update/
$WRS_FW
]
;
then
# The commands may fail because we miss wrs-firmware.tar or the content
for
file
in
$WRS_KER
$WRS_RAMFS
;
do
echo
-n
"Trying to extract
$file
..."
|
$TEE
/dev/ttyGS0
tar
-xf
/update/
$WRS_FW
$file
&> /dev/null
ret
=
$?
if
[
$ret
=
0
]
;
then
echo
" done"
|
$TEE
/dev/ttyGS0
reboot
=
true
else
echo
" not present in anchive"
|
$TEE
/dev/ttyGS0
fi
done
fi
# Do the same for barebox.bin, so we can upgrade it all in a step
cd
/tmp
tar
-xf
/update/
$WRS_FW
$WRS_BB
if
[
-f
$WRS_BB
]
;
then
echo
-n
"Updating barebox..."
|
$TEE
/dev/ttyGS0
cat
$WRS_BB
>
/dev/mtd3
rm
$WRS_BB
echo
" done"
|
$TEE
/dev/ttyGS0
fi
# done: rename the firmware file (whole or usr, whatever is there)
...
...
@@ -176,20 +190,24 @@ fi
# Allow replacing the kernel or initramfs alone (new in v4.1 of wr-switch-sw)
for
file
in
$WRS_KER
$WRS_RAMFS
;
do
if
[
-f
/update/
$file
]
;
then
echo
-n
"Replacing
$file
..."
|
$TEE
/dev/ttyGS0
cp
/update/
$file
/boot
;
sync
mv
/update/current-
$file
/update/previous-
${
file
}
2> /dev/null
mv
/update/
$file
/update/current-
$file
reboot
=
true
echo
" done"
|
$TEE
/dev/ttyGS0
fi
done
# Allow changing the boot loader (new in v4.1 of wr-switch-sw)
if
[
-f
/update/
$WRS_BB
]
;
then
echo
-n
"Updating barebox..."
|
$TEE
/dev/ttyGS0
cat
/update/
$WRS_BB
>
/dev/mtd3
mv
/update/current-
$WRS_BB
/update/previous-
$WRS_BB
mv
/update/
$WRS_BB
/update/current-
$WRS_BB
reboot
=
true
change_update_date
=
true
echo
" done"
|
$TEE
/dev/ttyGS0
fi
if
$change_update_date
;
then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment