mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-03-02 15:01:09 +00:00
Imported using git-ubuntu import. Changelog parent: f2412fdd38d4229dc8ece9810ed595c191bc732a New changelog entries: * add /var/lib/systemd/rfkill to pre-created dirs to use as writable mountpoint for bind-mounts in snappy.
11 lines
188 B
Bash
Executable File
11 lines
188 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
echo "creating mtab and modules dir" >&2
|
|
ln -sf /proc/mounts /etc/mtab
|
|
mkdir -p /lib/modules
|
|
mkdir -p /lib/firmware
|
|
mkdir -p /writable
|
|
mkdir -p /var/lib/systemd/rfkill
|