pmaports/device/testing/device-samsung-i9305/device-samsung-i9305.post-install
Thiago Foganholi 42fda5098b
samsung-i9305: Add multiple-kernel configuration (MR 1634)
With a new mainline kernel package available for this device, add a new
package dependency and allow the user to choose downstream or mainline
kernel.
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