summaryrefslogtreecommitdiffstats
path: root/bootstrap-stage2-install.sh
blob: 2c001aec17e2cf7e38294148ca3ad8460c650169 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#!/bin/sh
#
# Initial port bootstrap scripts
# bootstrap-stage2-install.sh
# Installs built stage 2 packages into a bootstrap system directory.
#
# Copyright (C) 2013  Patrick "P. J." McDermott
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

set -e

ARCH=
PLAT=

main()
{
	ARCH="$(cat /etc/proteanos_arch)"
	PLAT="$(cat /etc/proteanos_plat)"

	cat <<-EOF

		Installing packages in stage 2...
		=================================
		EOF

	clean_root
	install_packages
	install_archplat_sysconf
	configure_packages
	setup_root
}

log()
{
	local msg i

	msg="$(printf "${@}")"
	printf '\n%s\n' "${msg}"
	i=0
	while [ ${i} -lt ${#msg} ]; do
		printf '-'
		i=$(($i + 1))
	done
	printf '\n\n'
}

clean_root()
{
	[ -d root2 ] || return 0

	cd root2

	case "${ARCH}" in
		*-linux-*)
			sudo umount dev/pts || true
			sudo umount proc || true
			sudo umount sys || true
			sudo umount dev || true
			;;
	esac

	cd ..

	rm -Rf root2
}

install_packages()
{
	local opk pkg

	mkdir root2
	cd root2

	for opk in ../root1/usr/src/*_${ARCH}_${PLAT}.opk \
			../root1/usr/src/*_${ARCH}_all.opk \
			../root1/usr/src/*_all_${PLAT}.opk \
			../root1/usr/src/*_all_all.opk; do
		[ -f "${opk}" ] || continue
		pkg="${opk#../root1/usr/src/}"
		case "${pkg}" in
			"build-essential-${ARCH}_"*) ;;
			'build-essential-common_'*) ;;
			'build-essential-'*) continue ;;
			"gcc-${ARCH}_"*) ;;
			"gcc-"*"-${ARCH}_"*) ;;
			'gcc-'*'-common_'*) ;;
			'gcc-'*'-locales_'*) ;;
			'gcc-'*) continue ;;
			"g++-${ARCH}_"*) ;;
			"g++-"*"-${ARCH}_"*) ;;
			'g++-'*'-common_'*) ;;
			'g++-'*'-locales_'*) ;;
			'g++-'*) continue ;;
		esac
		log 'Installing package %s...' "${pkg%%_*}"
		tar -xzOf "${opk}" data.tar.gz | tar -xz
	done

	cd ..
}

install_archplat_sysconf()
{
	# TODO: The config-opkg package should provide these, but it isn't built
	# and installed here yet.

	cd root2

	mkdir -p etc
	printf '%s\n' "${ARCH}" >etc/proteanos_arch
	printf '%s\n' "${PLAT}" >etc/proteanos_plat
	mkdir -p etc/opkg
	printf 'arch all 1\narch %s 1\narch src 1\n' "${ARCH}" \
		>etc/opkg/opkg.conf

	cd ..
}

configure_packages()
{
	local opk pkg entry file

	cd root2

	info='var/lib/opkg/info'
	mkdir -p "${info}"

	for opk in ../root1/usr/src/*_${ARCH}_${PLAT}.opk \
			../root1/usr/src/*_${ARCH}_all.opk \
			../root1/usr/src/*_all_${PLAT}.opk \
			../root1/usr/src/*_all_all.opk; do
		[ -f "${opk}" ] || continue
		pkg="${opk#../root1/usr/src/}"
		case "${pkg}" in
			"build-essential-${ARCH}_"*) ;;
			'build-essential-common_'*) ;;
			'build-essential-'*) continue ;;
			"gcc-${ARCH}_"*) ;;
			"gcc-"*"-${ARCH}_"*) ;;
			'gcc-'*'-common_'*) ;;
			'gcc-'*'-locales_'*) ;;
			'gcc-'*) continue ;;
			"g++-${ARCH}_"*) ;;
			"g++-"*"-${ARCH}_"*) ;;
			'g++-'*'-common_'*) ;;
			'g++-'*'-locales_'*) ;;
			'g++-'*) continue ;;
		esac
		pkg="${pkg%%_*}"
		for entry in $(tar -xzOf "${opk}" control.tar.gz | tar -tz); do
			file="${entry##*/}"
			case "${file}" in
				preinst | postinst)
					tar -xzOf "${opk}" control.tar.gz | \
						tar -xzO "${entry}" \
						>"${info}/${pkg}.${file}"
					chmod a+x "${info}/${pkg}.${file}"
					log 'Running %s...' "${pkg}.${file}"
					sudo chroot . \
						"/${info}/${pkg}.${file}" \
						configure
					;;
			esac
		done
	done

	sudo chroot . chmod -R a+w /var/lib/opkg/alternatives

	cd ..
}

setup_root()
{
	cd root2

	case "${ARCH}" in
		*-linux-*)
			mkdir -p proc sys dev
			sudo mount -t proc proc proc
			sudo mount -t sysfs sys sys
			sudo mount -o bind /dev dev
			sudo mount -t devpts -o noexec,nosuid,gid=5,mode=0620 \
				devpts dev/pts
			;;
	esac

	# TODO: base-files will eventually handle this.
	mkdir -p tmp
	chmod 1775 tmp

	cd ..
}

main "${@}"