mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 10:25:25 +01:00
Environment variables "pollute" the build environment of packages and can affect their output. This change results in the removal of some files from packages that were not meant to be packaged. It also removes the need for a workaround in automake 1.10.3 to manually remove such files. Variables are now saved in an .env file for each system and included in scripts that need them using the dot operation.
61 lines
1.6 KiB
Bash
Executable file
61 lines
1.6 KiB
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
|
# SPDX-FileCopyrightText: 2021-22 fosslinux <fosslinux@aussies.space>
|
|
# SPDX-FileCopyrightText: 2021 Paul Dersey <pdersey@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -e
|
|
|
|
# shellcheck source=/dev/null
|
|
. .env
|
|
|
|
# shellcheck source=sysa/helpers.sh
|
|
. helpers.sh
|
|
|
|
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 # Hack to fix xbps (alternatively need to install which)
|
|
for d in bin lib sbin; do
|
|
ln -s "usr/${d}" "/${d}"
|
|
done
|
|
mkdir -p /etc /run /var
|
|
test -d /proc || (mkdir /proc && mount -t proc proc /proc)
|
|
test -d /sys || (mkdir /sys && mount -t sysfs sysfs /sys)
|
|
# Make /tmp a ramdisk (speeds up configure etc significantly)
|
|
test -d /tmp || (mkdir /tmp && mount -t tmpfs tmpfs /tmp)
|
|
# Add /etc/resolv.conf
|
|
echo 'nameserver 1.1.1.1' > /etc/resolv.conf
|
|
}
|
|
|
|
populate_device_nodes
|
|
|
|
create_fhs
|
|
|
|
# Obtain network connection
|
|
if [ "${CHROOT}" = "False" ]; then
|
|
dhcpcd --waitip=4
|
|
# Ensure network accessible
|
|
timeout=120
|
|
while ! curl example.com >/dev/null 2>&1; do
|
|
sleep 1
|
|
# shellcheck disable=SC2219
|
|
let timeout--
|
|
if [ "${timeout}" -le 0 ]; then
|
|
echo "Timeout reached for internet to become accessible"
|
|
false
|
|
fi
|
|
done
|
|
fi
|
|
|
|
if [ -e "${SOURCES}/distfiles" ]; then
|
|
mv "${SOURCES}/distfiles" /
|
|
else
|
|
mkdir -p "${DISTFILES}"
|
|
fi
|
|
|
|
build bash-5.1
|
|
|
|
exec env -i PATH="${PATH}" HOME="${HOME}" SOURCE_DATE_EPOCH="${SOURCE_DATE_EPOCH}" bash run2.sh
|