diff options
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 |