logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>

merged_usr.sh (317B)


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