diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2018-01-26 18:19:55 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2018-01-26 18:19:55 +0100 |
commit | 76952ff1721daa8531e481b076a5672cef30d7e5 (patch) | |
tree | 03cfb7620e002ce96511dd847dc12b54b52512b9 /prep_env.sh | |
download | bootstrap32-76952ff1721daa8531e481b076a5672cef30d7e5.tar.xz |
initial checkin, building crosstool-ng
Diffstat (limited to 'prep_env.sh')
-rwxr-xr-x | prep_env.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/prep_env.sh b/prep_env.sh new file mode 100755 index 0000000..2488b76 --- /dev/null +++ b/prep_env.sh @@ -0,0 +1,27 @@ +#!/bin/sh + +# Install necessary tools + +# development stuff +pacman --noconfirm --needed -S base-devel + +# for working and checking out tarballs via git, zip, etc. +pacman --noconfirm --needed -S sudo screen git asp wget unzip + +# for crosstool-ng +pacman --noconfirm --needed -S gperf help2man + +# for uname-hack +pacman --noconfirm --needed -S linux-headers + +# for arch-chroot +pacman --noconfirm --needed -S arch-install-scripts + +# for linux kernel +pacman --noconfirm --needed -S bc + +# for pam +pacman --noconfirm --needed -S flex + +# for a bootable ISO image +pacman --noconfirm --needed -S syslinux cdrtools |