This repository has been archived on 2025-06-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Os/scripts/setup-host.sh
Christoph Heiss a096958748
scrips: setup-host: install git-lfs from debian repos directly
Signed-off-by: Christoph Heiss <christoph.heiss@robo4you.at>
2024-09-26 09:28:58 +02:00

16 lines
310 B
Bash
Executable file

#!/bin/bash
set -e
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
apt-get update
apt-get install curl git-lfs -y
dpkg --add-architecture armhf
apt-get update && apt-get upgrade -y
apt-get install crossbuild-essential-armhf bc git dosfstools kpartx \
debootstrap qemu-user-static git-lfs -y