blob: aaade238b93513c7f8121fe8cf358ecf0a93e56a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#!/bin/sh
# Install necessary tools
# shellcheck source=./default.conf
. "./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 bc
pacman --noconfirm --needed -S ed
# for pam
pacman --noconfirm --needed -S flex
# for a bootable ISO image
pacman --noconfirm --needed -S syslinux cdrtools
# for building a hard disk image
pacman --noconfirm --needed -S qemu
# for building syslinux (Intel only)
case $BUILD_CPU in
i*86|x86_64)
pacman --noconfirm --needed -S nasm
;;
esac
# some packages come from the AUR
if test "$(grep -c '\[archlinuxfr\]' /etc/pacman.conf)" = 0; then
cat >> /etc/pacman.conf <<EOF
[archlinuxfr]
Server = http://repo.archlinux.fr/\$arch
SigLevel = Optional DatabaseOptional
EOF
pacman --noconfirm -Syy
pacman --noconfirm -S --needed yaourt
fi
echo "Host ready."
|