pmaports/device/testing/device-samsung-i9300/device-samsung-i9300.post-install
Thiago Foganholi 637f9d2e86
samsung-i9305: Rename packages to samsung-i9300 (MR 1634)
The existing device package and its dependencies are for i9305, but
renaming them to i9300 makes more sense, as the i9300 is the base
version (SIII) and the i9305 (SIII LTE) is the improved version.
2020-11-11 14:35:20 +01:00

7 lines
178 B
Bash

#!/bin/sh
# Create mount point and /efs mount point in fstab
if [ -z "$(grep /efs /etc/fstab)" ]; then
mkdir -p /efs
echo "/dev/mmcblk0p1 /efs noauto ro 0 0" >> /etc/fstab
fi