Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
msm-cros-efs-loader
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
postmarketOS
msm-cros-efs-loader
Commits
58fbb680
Commit
58fbb680
authored
1 year ago
by
Anton Bambura
Browse files
Options
Downloads
Patches
Plain Diff
Adjust logging
parent
fc2a4355
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1
Modem variants
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
msm-cros-efs-loader.sh
+10
-21
10 additions, 21 deletions
msm-cros-efs-loader.sh
with
10 additions
and
21 deletions
msm-cros-efs-loader.sh
+
10
−
21
View file @
58fbb680
...
...
@@ -6,24 +6,13 @@ RMTFS_DIR=/var/lib/rmtfs
RMTFS_BOOT_DIR
=
"
${
RMTFS_DIR
}
/boot"
FSG_PATH
=
"
${
RMTFS_BOOT_DIR
}
/modem_fsg"
FSG_SOURCE
=
"
$(
echo
/dev/mmcblk
*
boot0
)
"
# Logging messages go directly to /dev/kmsg because we run before
# syslog is available.
logit
()
{
echo
"<6>
${
JOB
}
:"
"
$@
"
>
/dev/kmsg
}
logwarn
()
{
echo
"<4>
${
JOB
}
:"
"
$@
"
>
/dev/kmsg
}
logerr
()
{
echo
"<3>
${
JOB
}
:"
"
$@
"
>
/dev/kmsg
}
# Read the FSG fuse hash, and store the result into
# fsg_fuse_hash.
read_fuses
()
{
fuse_path
=
"
$(
realpath
/sys/bus/nvmem/devices/qfprom
*
/nvmem
)
"
fsg_fuse_hash
=
if
[
!
-r
"
${
fuse_path
}
"
]
;
then
logerr
"
Fuse driver does not appear to be loaded."
echo
"ERROR:
Fuse driver does not appear to be loaded."
return
1
fi
fsg_fuse_hash
=
"
$(
dd
if
=
"
${
fuse_path
}
"
bs
=
1
skip
=
$((
0
x750
))
count
=
32
\
...
...
@@ -73,7 +62,7 @@ reload_fsg() {
fsg_size
=
"
$(
dd
if
=
"
${
FSG_SOURCE
}
"
bs
=
1
skip
=
4
count
=
8
status
=
none
)
"
# If the header area is just blank, save an extra read and just bail now.
elif
[
-z
"
${
fsg_header
}
"
]
;
then
logit
"
Blank eMMC boot partition."
echo
"INFO:
Blank eMMC boot partition."
return
1
else
# Ordinarily this would be the place to error out. For this next
...
...
@@ -82,12 +71,12 @@ reload_fsg() {
fi
# Wifi-only SKUs will land here the first time through.
if
[
"
${
fsg_size
}
"
-eq
0
]
;
then
logit
"
No LTE FSG found."
echo
"INFO:
No LTE FSG found."
return
1
fi
logit
"
Reloading FSG"
echo
"INFO:
Reloading FSG"
if
[
"
${
fsg_size
}
"
-gt
4193792
]
;
then
logwarn
"Warning
: FSG size invalid. LTE will not work."
echo
"WARNING
: FSG size invalid. LTE will not work."
fi
mkdir
-p
"
${
RMTFS_BOOT_DIR
}
"
chmod
0700
"
${
RMTFS_BOOT_DIR
}
"
"
${
RMTFS_DIR
}
"
...
...
@@ -98,7 +87,7 @@ reload_fsg() {
if
!
dd
if
=
"
${
FSG_SOURCE
}
"
of
=
"
${
fsg_tmp_path
}
"
bs
=
1M
\
iflag
=
count_bytes,skip_bytes
count
=
"
${
fsg_size
}
"
\
skip
=
512
status
=
none
;
then
logerr
"Error
: Failed to read FSG."
echo
"ERROR
: Failed to read FSG."
return
1
fi
# Sync to ensure the temporary file is fully written to disk. Then
...
...
@@ -120,7 +109,7 @@ verify_fsg() {
# For WiFi SKUs, the first factory run, or for certain pre-production
# devices), the FSG hash is not set. Allow it to continue with the FSG
# tarball pre-populated in the boot partition.
logit
"
Fuses are unprogrammed."
echo
"INFO:
Fuses are unprogrammed."
# If the FSG already exists no need to copy it again; bail out.
if
[
-f
"
${
FSG_PATH
}
"
]
;
then
return
...
...
@@ -141,18 +130,18 @@ verify_fsg() {
elif
[
"
${
retval
}
"
-ne
2
]
;
then
# Allow a hash mismatch in dev/test images.
if
crossystem
"cros_debug?1"
;
then
logwarn
"
FSG hash check failed, forgiven in developer mode."
echo
"WARNING:
FSG hash check failed, forgiven in developer mode."
# For other errors, blank out the FSG in case the eMMC boot partition
# was compromised.
else
logerr
"
FSG hash check failed. LTE will not work"
echo
"ERROR:
FSG hash check failed. LTE will not work"
rm
-f
"
${
FSG_PATH
}
"
fi
fi
}
main
()
{
if
[
"$#"
-ne
0
]
;
then
logerr
"
$0
: Expected no arguments."
echo
"ERROR:
$0
: Expected no arguments."
exit
1
fi
verify_fsg
...
...
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