Skip to content
Snippets Groups Projects
Commit 3f1cbe9b authored by Anton Bambura's avatar Anton Bambura
Browse files

Bring back code creating zeroed files for WiFi-only devices

parent 8e649d30
No related branches found
No related tags found
1 merge request!1Modem variants
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment