2023-12-10 19:55:06 +00:00
|
|
|
#!/bin/sh
|
2023-06-29 08:40:38 +00:00
|
|
|
|
|
|
|
if [ -z "$(grep /dev/disk/by-partlabel/modem_a /etc/fstab)" ]; then
|
|
|
|
# Firmware shipped with the stock ROM, _a is always populated
|
|
|
|
echo "/dev/disk/by-partlabel/modem_a /opt/firmware/modem auto ro 0 0" >> /etc/fstab
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$(grep /dev/disk/by-partlabel/oem_a /etc/fstab)" ]; then
|
|
|
|
# ODM blobs provided by Sony Open Devices Project
|
|
|
|
echo "/dev/disk/by-partlabel/oem_a /opt/firmware/odm auto ro 0 0" >> /etc/fstab
|
|
|
|
fi
|