mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 19:46:31 +01:00
15 lines
389 B
Bash
15 lines
389 B
Bash
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2023 Max Hearnden <max@hearnden.org.uk>
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -ex
|
|
|
|
PATH=./${ARCH_DIR}/bin
|
|
|
|
./${ARCH_DIR}/bin/M2-Mesoplanet --architecture ${ARCH} \
|
|
-f sysa/wrap.c \
|
|
-o ./${ARCH_DIR}/bin/wrap \
|
|
--temp-directory ./x86/artifact
|
|
|
|
exec ./${ARCH_DIR}/bin/wrap ./${ARCH_DIR}/bin/kaem --verbose --strict --file sysa/after.kaem
|