mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-22 19:16:32 +01:00
11 lines
208 B
Bash
11 lines
208 B
Bash
#!/bin/sh
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
mkdir -p /proc /etc
|
|
if [ ! -r /proc/mounts ]; then
|
|
mount -t proc proc /proc
|
|
fi
|
|
ln -snf /proc/mounts /etc/mtab
|
|
|
|
exec /steps/improve/finalize_fhs.sh
|