mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 03:26:31 +01:00
28 lines
976 B
Bash
Executable file
28 lines
976 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
|
# SPDX-FileCopyrightText: 2021 Paul Dersey <pdersey@gmail.com>
|
|
# SPDX-FileCopyrightText: 2020-2022 fosslinux <fosslinux@aussies.space>
|
|
# SPDX-FileCopyrightText: 2022 Dor Askayo <dor.askayo@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -ex
|
|
|
|
PATH=/${ARCH_DIR}/bin
|
|
|
|
if catm seed-full.kaem /steps/bootstrap.cfg /steps/env seed.kaem; then
|
|
else
|
|
replace --file /steps/env --output /steps/env --match-on /external/distfiles --replace-with /distfiles
|
|
cp /seed/wrap-bootstrap.cfg /steps/bootstrap.cfg
|
|
catm seed-full.kaem /steps/bootstrap.cfg /steps/env /seed/seed.kaem
|
|
cp /seed/configurator.c configurator.c
|
|
cp /seed/configurator.${ARCH}.checksums configurator.${ARCH}.checksums
|
|
|
|
cp /seed/script-generator.c script-generator.c
|
|
cp /seed/script-generator.${ARCH}.checksums script-generator.${ARCH}.checksums
|
|
# placeholder value
|
|
FINAL_JOBS=1
|
|
fi
|
|
|
|
kaem --file seed-full.kaem
|