mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
38 lines
582 B
Bash
Executable File
38 lines
582 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
apt-get install -yq \
|
|
live-build \
|
|
procps \
|
|
systemd \
|
|
binfmt-support \
|
|
qemu-utils \
|
|
qemu-user-static \
|
|
qemu-system-x86 \
|
|
qemu-system-aarch64 \
|
|
xorriso \
|
|
isolinux \
|
|
ca-certificates \
|
|
curl \
|
|
gpg \
|
|
fdisk \
|
|
dosfstools \
|
|
e2fsprogs \
|
|
squashfs-tools \
|
|
rsync \
|
|
b3sum
|
|
# TODO: remove when util-linux is released at v2.39.3
|
|
apt-get install -yq \
|
|
git \
|
|
build-essential \
|
|
crossbuild-essential-arm64 \
|
|
crossbuild-essential-amd64 \
|
|
automake \
|
|
autoconf \
|
|
gettext \
|
|
libtool \
|
|
pkg-config \
|
|
autopoint \
|
|
bison |