blob: da41d6d4899c36c1761db777ded07849d709c89e (
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
58
59
60
61
62
63
64
65
66
67
68
69
|
#!/bin/bash
mkdir build-i686
cd build-i686
cat << "END" > Vagrantfile
Vagrant.configure("2") do |config|
config.vm.box = "archlinux/archlinux"
config.vm.provision "shell", path: "provision.sh", run: "once"
end
END
cat << "__ENDOFPROVISION.SH__" > provision.sh
#!/bin/bash
set -e
tmpFile="$(mktemp)"
curl -o "${tmpFile}" "https://arch.eckner.net/archlinuxewe/masterkeys.gpg"
pacman-key --add "${tmpFile}"
rm -f "${tmpFile}"
pacman-key --lsign-key 0x43BF68D3
pacman-key --lsign-key 0x20194BA1
if ! grep -q "^Server = https://arch\.eckner\.net" /etc/pacman.d/mirrorlist
then
ml="$(
curl "https://arch.eckner.net/archlinuxewe/os/any/" 2> /dev/null | \
tr "<>" "\n\n" | \
grep "^pacman-mirrorlist-.*\.pkg\.tar\.xz\$" | \
tail -n1
)"
curl "https://arch.eckner.net/archlinuxewe/os/any/${ml}" 2> /dev/null | \
tar -OxJ etc/pacman.d/mirrorlist > \
/etc/pacman.d/mirrorlist
fi
if ! grep -q "^\[archlinuxewe\]\$" /etc/pacman.conf
then
tmpFile="$(mktemp)"
cat /etc/pacman.conf | \
(
while read s
do
if [[ "$s" = "# The testing repositories"* ]]
then
echo '[archlinuxewe]'
echo 'SigLevel = Required'
echo 'Include = /etc/pacman.d/mirrorlist'
echo ''
fi
echo "${s}"
done
) > "${tmpFile}"
cat "${tmpFile}" > /etc/pacman.conf
rm -f "${tmpFile}"
fi
sudo pacman --noconfirm -Syu archiso32
cat << "__ENDOFARCH32MIRRORLIST__" > /etc/pacman.d/mirrorlist32
Server = https://32.arlm.tyzoid.com/$arch/$repo
Server = http://arch32.mirrors.simplysam.us/$arch/$repo
Server = https://mirror.archlinux32.org/$arch/$repo
__ENDOFARCH32MIRRORLIST__
__ENDOFPROVISION.SH__
vagrant up
vagrant ssh -c "sudo reboot";
vagrant ssh -c "sudo bash -c '/usr/share/archiso/configs/releng/build.sh -v'";
vagrant ssh-config > config.txt
scp -rF config.txt default:/home/vagrant/out ../
vagrant destroy -f
|