4597357bfa
Also adds Bluetooth support on the downstream kernel. [ci:skip-build] Already built fine on CI in MR
7 lines
181 B
Bash
7 lines
181 B
Bash
#!/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
|