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
3f1cbe9b
Commit
3f1cbe9b
authored
1 year ago
by
Anton Bambura
Browse files
Options
Downloads
Patches
Plain Diff
Bring back code creating zeroed files for WiFi-only devices
parent
8e649d30
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
+17
-1
17 additions, 1 deletion
msm-cros-efs-loader.sh
with
17 additions
and
1 deletion
msm-cros-efs-loader.sh
+
17
−
1
View file @
3f1cbe9b
...
...
@@ -49,6 +49,21 @@ load_old_fsg_size() {
tr
-d
'\n\0'
|
grep
-a
-E
'^[0-9]{4,}$'
)
"
:
"
${
fsg_size
:
=0
}
"
}
# Create empty files for WiFi-only devices
create_empty_files
()
{
echo
"INFO: Creating empty files"
if
[
!
-d
"
$RMTFS_DIR
"
]
;
then
mkdir
-p
"
$RMTFS_DIR
"
fi
for
i
in
fs1 fs2 fsg fsc
;
do
file
=
"
$RMTFS_DIR
/modem_
$i
"
if
[
!
-f
"
$file
"
]
;
then
dd
if
=
/dev/zero
bs
=
1M
count
=
2
of
=
"
$file
"
fi
done
}
# Read the FSG out of the eMMC boot partition.
reload_fsg
()
{
local
fsg_header
...
...
@@ -70,7 +85,8 @@ reload_fsg() {
# Wifi-only SKUs will land here the first time through.
if
[
"
${
fsg_size
}
"
-eq
0
]
;
then
echo
"INFO: No LTE FSG found."
return
1
create_empty_files
return
0
fi
echo
"INFO: Reloading FSG"
if
[
"
${
fsg_size
}
"
-gt
4193792
]
;
then
...
...
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