Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elphel-web-393
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
elphel-web-393
Commits
9f9129b4
Commit
9f9129b4
authored
Nov 30, 2016
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
backup from older software at /etc/elphel393/backup/
parent
629b2e91
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
update_nand.php
src/update/update_nand.php
+4
-3
No files found.
src/update/update_nand.php
View file @
9f9129b4
...
@@ -161,7 +161,7 @@ function send_backup(){
...
@@ -161,7 +161,7 @@ function send_backup(){
print
(
file_get_contents
(
"var/
$BKP_NAME
"
));
print
(
file_get_contents
(
"var/
$BKP_NAME
"
));
}
}
function
restore
_backup
(){
function
copy
_backup
(){
global
$NAND_PATH
;
global
$NAND_PATH
;
global
$UBI_MNT
;
global
$UBI_MNT
;
global
$BKP_NAME
;
global
$BKP_NAME
;
...
@@ -172,7 +172,8 @@ function restore_backup(){
...
@@ -172,7 +172,8 @@ function restore_backup(){
exec
(
"ubiattach /dev/ubi_ctrl -m 4"
);
exec
(
"ubiattach /dev/ubi_ctrl -m 4"
);
if
(
!
is_dir
(
$UBI_MNT
))
mkdir
(
$UBI_MNT
);
if
(
!
is_dir
(
$UBI_MNT
))
mkdir
(
$UBI_MNT
);
exec
(
"mount -t ubifs -o ro /dev/ubi0_0
$UBI_MNT
"
);
exec
(
"mount -t ubifs -o ro /dev/ubi0_0
$UBI_MNT
"
);
exec
(
"tar -C ${UBI_MNT}${BKP_DIR} -xzpf var/
$BKP_NAME
"
);
if
(
!
is_dir
(
"
$UBI_MNT
${BKP_DIR}/backup"
))
mkdir
(
"
$UBI_MNT
${BKP_DIR}/backup"
);
exec
(
"tar -C ${UBI_MNT}${BKP_DIR}/backup -xzpf var/
$BKP_NAME
"
);
exec
(
"sync"
);
exec
(
"sync"
);
exec
(
"umount
$UBI_MNT
"
);
exec
(
"umount
$UBI_MNT
"
);
if
(
is_dir
(
$UBI_MNT
))
rmdir
(
$UBI_MNT
);
if
(
is_dir
(
$UBI_MNT
))
rmdir
(
$UBI_MNT
);
...
@@ -198,7 +199,7 @@ switch($cmd){
...
@@ -198,7 +199,7 @@ switch($cmd){
$flash_list
=
verify
(
false
);
$flash_list
=
verify
(
false
);
backup
();
backup
();
nandflash
(
$flash_list
);
nandflash
(
$flash_list
);
restore
_backup
();
copy
_backup
();
break
;
break
;
case
"backup"
:
case
"backup"
:
backup
();
backup
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment