pmaports/device/unmaintained/device-samsung-m0-downstream/device-samsung-m0-downstream.post-install
Newbyte 417351a628
samsung-m0-downstream: new device (MR 2556)
[ci:skip-build] already built successfully in CI
2021-10-01 22:38:45 -07: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