35 lines
588 B
Bash
Executable File
35 lines
588 B
Bash
Executable File
|
|
dpkg --add-architecture i386
|
|
apt-get update
|
|
apt-get install -y \
|
|
build-essential \
|
|
imagemagick \
|
|
xorriso \
|
|
locales \
|
|
openjdk-8-jdk \
|
|
python \
|
|
git \
|
|
m4 \
|
|
unzip \
|
|
bison \
|
|
zip \
|
|
gperf \
|
|
libxml2-utils \
|
|
zlib1g:i386 \
|
|
libstdc++6:i386 \
|
|
bc \
|
|
curl \
|
|
lzop \
|
|
lzip \
|
|
lunzip \
|
|
jq \
|
|
wget \
|
|
squashfs-tools \
|
|
sudo ;
|
|
ln -s /usr/bin/xorrisofs /usr/bin/mkisofs
|
|
curl https://storage.googleapis.com/git-repo-downloads/repo > /usr/local/bin/repo
|
|
chmod a+x /usr/local/bin/repo
|
|
|
|
git config --global user.name "Damillora"
|
|
git config --global user.email "developer@damillora.com"
|