summaryrefslogtreecommitdiff
path: root/install_host.sh
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2018-01-27 20:31:58 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2018-01-27 20:31:58 +0100
commitd81584556c99356f42d30c87f9b87989f7653987 (patch)
treede14e68ffffe17bee01d668468e788acfe6a1e81 /install_host.sh
parent76952ff1721daa8531e481b076a5672cef30d7e5 (diff)
downloadbootstrap32-d81584556c99356f42d30c87f9b87989f7653987.tar.xz
added stage 1: preparing the i486 chroot
Diffstat (limited to 'install_host.sh')
-rwxr-xr-xinstall_host.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/install_host.sh b/install_host.sh
new file mode 100755
index 0000000..362502a
--- /dev/null
+++ b/install_host.sh
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+# Install necessary tools
+
+. "./default.conf"
+
+# 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
+
+echo "Host ready."