mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-10 21:35:24 +01:00
Final fixes:
- All QEMU reproducibility issues resolved - Added SPDX licensing - Couple other small issues - Fix guile reproducbility
This commit is contained in:
parent
9543a47f1b
commit
b760b3eb2b
78 changed files with 287 additions and 56 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
||||
# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
||||
# SPDX-FileCopyrightText: 2021-22 fosslinux <fosslinux@aussies.space>
|
||||
# SPDX-FileCopyrightText: 2021 Paul Dersey <pdersey@gmail.com>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
|
@ -20,13 +20,11 @@ export DESTDIR=/tmp/destdir
|
|||
|
||||
create_fhs() {
|
||||
# Add the rest of the FHS that we will use and is not created pre-boot
|
||||
rm -rf /sbin /usr/sbin
|
||||
ln -s bin /usr/sbin
|
||||
for d in bin lib sbin; do
|
||||
ln -s "usr/${d}" "/${d}"
|
||||
done
|
||||
mv /usr/sbin/* /usr/bin/
|
||||
rm -r /sbin /usr/sbin
|
||||
ln -s bin /usr/sbin
|
||||
ln -s bin /sbin
|
||||
mkdir /etc /proc /run /sys /tmp /var
|
||||
mount -t proc proc /proc
|
||||
mount -t sysfs sysfs /sys
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue