Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
9f422eba
Commit
9f422eba
authored
9 years ago
by
Jo-Philipp Wich
Browse files
Options
Downloads
Patches
Plain Diff
x86: make sysupgrade work without partx
Signed-off-by:
Jo-Philipp Wich
<
jo@mein.io
>
parent
fa695539
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
target/linux/x86/base-files/lib/upgrade/platform.sh
+28
-6
28 additions, 6 deletions
target/linux/x86/base-files/lib/upgrade/platform.sh
with
28 additions
and
6 deletions
target/linux/x86/base-files/lib/upgrade/platform.sh
+
28
−
6
View file @
9f422eba
...
...
@@ -61,7 +61,27 @@ get_partitions() { # <device> <filename>
if
[
-b
"
$disk
"
-o
-f
"
$disk
"
]
;
then
echo
"Reading partition table from
$filename
..."
partx
-r
"
$disk
"
-gbo
NR,START,SECTORS
>
"/tmp/partx.
$filename
"
local
magic
=
"
$(
hexdump
-v
-n
2
-s
0x1FE
-e
'1/2 "0x%04X"'
"
$disk
"
)
"
if
[
"
$magic
"
!=
0xAA55
]
;
then
echo
"Invalid partition table on
$disk
"
exit
fi
rm
-f
"/tmp/partmap.
$filename
"
local
part
for
part
in
1 2 3 4
;
do
set
--
$(
hexdump
-v
-n
12
-s
"
$((
0
x1B2
+
$part
*
16
))
"
-e
'3/4 "0x%08X "'
"
$disk
"
)
local type
=
"
$((
$1
%
256
))
"
local
lba
=
"
$((
$2
))
"
local
num
=
"
$((
$3
))
"
[
$type
-gt
0
]
||
continue
printf
"%2d %5d %7d
\n
"
$part
$lba
$num
>>
"/tmp/partmap.
$filename
"
done
fi
}
...
...
@@ -76,9 +96,11 @@ platform_do_upgrade() {
#get block size
sectors
=
"
$(
partx
-r
$disk
-gbo
SECTORS
--nr
1:1
)
"
size
=
"
$(
partx
-r
$disk
-gbo
SIZE
--nr
1:1
)
"
ibs
=
"
$((
$size
/
$sectors
))
"
if
[
-f
"/sys/block/
${
disk
##*/
}
/queue/physical_block_size"
]
;
then
ibs
=
"
$(
cat
"/sys/block/
${
disk
##*/
}
/queue/physical_block_size"
)
"
else
ibs
=
512
fi
#extract the boot sector from the image
get_image
"
$@
"
|
dd
of
=
/tmp/image.bs
count
=
1
bs
=
512b
...
...
@@ -86,7 +108,7 @@ platform_do_upgrade() {
get_partitions /tmp/image.bs image
#compare tables
diff
=
"
$(
grep
-F
-x
-v
-f
/tmp/part
x
.bootdisk /tmp/part
x
.image
)
"
diff
=
"
$(
grep
-F
-x
-v
-f
/tmp/part
map
.bootdisk /tmp/part
map
.image
)
"
if
[
-n
"
$diff
"
]
;
then
echo
"Partition layout is changed. Full image will be written."
ask_bool 0
"Abort"
&&
exit
...
...
@@ -99,7 +121,7 @@ platform_do_upgrade() {
while
read
part start size
;
do
echo
"Writing image to
$disk$part
..."
get_image
"
$@
"
|
dd
of
=
"
$disk$part
"
ibs
=
"
$ibs
"
obs
=
1M
skip
=
"
$start
"
count
=
"
$size
"
conv
=
fsync
done
< /tmp/part
x
.image
done
< /tmp/part
map
.image
#copy partition uuid
echo
"Writing new UUID to
$disk$part
..."
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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