mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 18:35:24 +01:00
Switch to bzip2 packages Move most of the preprocessing done by rootfs.py into kaem and bash scripts inside live-bootstrap.
16 lines
307 B
Bash
Executable file
16 lines
307 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -e
|
|
|
|
# Prepare sysc directory structure
|
|
mkdir -p /usr/src
|
|
mv run*.sh /usr/src
|
|
mv /*-* /usr/src # build scripts
|
|
|
|
# Begin sysc bootstrapping process
|
|
cd /usr/src
|
|
exec ./run.sh
|