22 lines
370 B
Bash
Executable File
22 lines
370 B
Bash
Executable File
#! /bin/bash
|
|
set -ex
|
|
|
|
# bootstrap _this_ repo (toes-image-builder), not the image itself.
|
|
# should only have to do this once per host we run this on.
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install -y \
|
|
qemu-user-static \
|
|
binfmt-support \
|
|
qemu-system-arm \
|
|
qemu-utils \
|
|
kpartx \
|
|
parted \
|
|
fdisk \
|
|
dosfstools \
|
|
e2fsprogs \
|
|
xz-utils \
|
|
rsync \
|
|
curl \
|
|
ca-certificates
|