Use merged usr throughout the entire bootstrap

This commit is contained in:
fosslinux 2024-01-12 22:12:47 +11:00
parent 5b84cdd178
commit 3669db9125
3 changed files with 11 additions and 7 deletions

10
steps/improve/merged_usr.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
# SPDX-FileCopyrightText: 2023 fosslinux <fosslinux@aussies.space>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# Add the rest of the FHS that we will use and is not created pre-boot
ln -s bin /usr/sbin
for d in bin lib sbin; do
ln -s "usr/${d}" "/${d}" || true # these might exist if rerunning
done