64035ac463
Prepare for better device categorization by moving everything to testing subdir first. [skip-ci]: chicken-egg problem: passing pmaports CI depends on pmbootstrap MR depends on this MR Related: postmarketos#16
8 lines
150 B
Bash
8 lines
150 B
Bash
#!/bin/sh
|
|
|
|
dir="/mnt/vendor"
|
|
|
|
if ! grep -q "$dir" /etc/fstab; then
|
|
mkdir -p "$dir"
|
|
echo "PARTLABEL=persist $dir ext4 ro 0 2" >> /etc/fstab
|
|
fi
|