pmaports/device/testing/device-samsung-a6lte/device-samsung-a6lte.post-install

8 lines
181 B
Text
Raw Normal View History

#!/bin/sh
# Create mount point and /efs mount point in fstab
if ! grep -q /efs /etc/fstab; then
mkdir -p /efs
echo "/dev/disk/by-partlabel/EFS /efs auto ro 0 0" >> /etc/fstab
fi