summaryrefslogtreecommitdiffstats
path: root/replicant_gta04_install.sh
blob: ed29c7304089420886fe6288a8412de7bf85c9fb (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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
#!/bin/sh

# Replicant GTA04 installer
#
# Copyright (C) 2012-2014 Paul Kocialkowski <contact@paulk.fr>
#
# 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 3 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/>.

#
# Environment
#

export LC_ALL=C

#
# Globals
#

DRIVE=""
DRIVE_NAME=""
DRIVE_SIZE=""
DRIVE_CYLINDERS=""
DRIVE_PART=""

SYSTEM_ZIP="replicant-4.2-gta04.zip"
BOOTABLE_ZIP="bootable.zip"

FILES_BASE="."
MOUNT_BASE="/media"

#
# Functions
#

# Display

display_help() {
	echo "Usage: $0 [COMMAND] [DRIVE]"
	echo ""
	echo "It is expected that the following files are located in $FILES_BASE:"
	echo "  $BOOTABLE_ZIP for setup"
	echo "  $SYSTEM_ZIP for install"
	echo ""
	echo "Commands:"
	echo "  setup   - setup the drive and copy the base files"
	echo "  install - install the system on the drive"
	echo ""
	echo "Optional arguments:"
	echo "  [DRIVE] - drive node to use"
}

display_banner() {
	echo "Replicant GTA04 installer"
	echo ""
}

display_complete() {
	echo ""
	echo "Process completed, you can now remove the card!"
}

# Drive

drive_select_list() {
	drives_dir="/dev/disk/by-id/"
	count=0

	list=$( ls "$drives_dir" )

	for drive in $list
	do
		drive_nopart=$( echo "$drive" | sed "s/-part[0-9]*$//g" )
		if [ "$drive" = "$drive_nopart" ]
		then
			ls $drives_dir/$drive-part* 2> /dev/null > /dev/null

			if [ $? -eq 0 ]
			then
				count=$(( $count + 1 ))
				name=$( echo "$drive" | sed "s/^[^-]*-\(.*\)$/\1/g" )

				case "$1" in
					"show")
						echo "$count - $name"
					;;
					"store")
						if [ $count -eq $2 ]
						then
							DRIVE=$( readlink -f "$drives_dir/$drive" )
							DRIVE_NAME="$name"
						fi
					;;
				esac
			fi
		fi
	done
}

drive_select() {
	echo "Available devices:"
	drive_select_list "show"

	echo -n "Choice: "
	read choice

	drive_select_list "store" $choice
	echo ""
}

drive_umount() {
	list=$( mount | grep $DRIVE | sed "s|$DRIVE[0-9]* on \([^ ]*\) .*|\1|g" )

	for mount_point in $list
	do
		echo "Unmounting $mount_point"

		umount "$mount_point"
		if [ $? != 0 ]
		then
			echo "Unmounting $mount_point failed, arborting!"
			exit 1
		fi
	done
}

drive_part() {
	if [ -e "${DRIVE}p1" ]
	then
		DRIVE_PART="${DRIVE}p"
	else
		DRIVE_PART="${DRIVE}"
	fi
}

# Setup

setup_drive_confirm() {
	if [ "$DRIVE" = "" ]
	then
		echo "Invalid drive block"
		exit 1
	fi

	list=$( mount | grep $DRIVE | sed "s|$DRIVE[0-9]* on \([^ ]*\) .*|\1|g" )

	echo "This is going to erase the following drive:"

	if [ "$DRIVE_NAME" != "" ]
	then
		echo "- $DRIVE_NAME ($DRIVE)"
	else
		echo "- $DRIVE"
	fi

	for mount_point in $list
	do
		mount_point_check=$( dirname $mount_point | grep -P "^/mnt|mount" )
		if [ "$mount_point_check" != "" ]
		then
			echo ""
			echo "Warning: the drive is mounted as $mount_point!"
			echo "This is probably not the drive you want to use!"
		fi
	done

	echo ""
	echo -n "Are you sure? [Y/N] "
	read confirm

	if [ "$confirm" = "y" ] || [ "$confirm" = "Y" ]
	then
		echo ""
		return
	else
		exit 0
	fi
}

setup_drive_empty() {
	drive_umount

	# Backup
	dd if="$DRIVE" of=".drive_start_backup" bs=1024 count=1024

	dd if=/dev/zero of="$DRIVE" bs=1024 count=1024
	if [ $? != 0 ]
	then
		echo "Emptying the drive failed, aborting!"
		exit 1
	fi
}

setup_drive_rescue() {
	if [ -f ".drive_start_backup" ]
	then
		echo -n "Something went wrong, do you want to restore drive start backup? [Y/N] "
		read confirm

		if [ "$confirm" = "y" ] || [ "$confirm" = "Y" ]
		then
			dd if=".drive_start_backup" of="$DRIVE" bs=1024 count=1024
		fi
	fi
}

setup_drive_infos() {
	DRIVE_SIZE=$( fdisk -l "$DRIVE" | grep Disk | grep bytes | awk '{print $5}' )
	# 255 heads, 63 sectors, 512 bytes/sectors
	DRIVE_CYLINDERS=$( echo "$DRIVE_SIZE / 255 / 63 / 512" | bc )
}

setup_drive_partition() {
	boot_size=$( echo "(50 * 1024 * 1024 * $DRIVE_CYLINDERS) / $DRIVE_SIZE" | bc )
	system_size=$( echo "(350 * 1024 * 1024 * $DRIVE_CYLINDERS) / $DRIVE_SIZE" | bc )
	cache_size=$( echo "(100 * 1024 * 1024 * $DRIVE_CYLINDERS) / $DRIVE_SIZE" | bc )

	{
		echo ",$boot_size,c,*"
		echo ",$system_size,83,-"
		echo ",$cache_size,83,-"
		echo ",,83,-"
	} | sfdisk -D -H 255 -S 63 -C "$DRIVE_CYLINDERS" "$DRIVE"
	if [ $? != 0 ]
	then
		setup_drive_rescue
		exit 1
	fi

	sleep 1

	drive_part

	mkfs.vfat -F 32 -n "boot" "${DRIVE_PART}1"
	mkfs.ext4 -L "system" "${DRIVE_PART}2"
	mkfs.ext4 -L "cache" "${DRIVE_PART}3"
	mkfs.ext4 -L "data" "${DRIVE_PART}4"

	sleep 1
}

setup_boot_install() {
	echo "Installing boot files"

	drive_part

	mkdir -p "$MOUNT_BASE/boot"
	mount "${DRIVE_PART}1" "$MOUNT_BASE/boot"

	unzip -o "$FILES_BASE/$BOOTABLE_ZIP" "**" -d "$MOUNT_BASE/boot/"

	if [ -f "$MOUNT_BASE/boot/splash.rgb16z" ]
	then
		gunzip < "$MOUNT_BASE/boot/splash.rgb16z" > "$MOUNT_BASE/boot/splash.rgb16"
	fi

	dir=$( pwd )
	echo "Syncing boot files"
	cd "$MOUNT_BASE/boot"
	sync
	cd "$dir"

	umount "$MOUNT_BASE/boot"
	rmdir "$MOUNT_BASE/boot"
}

setup_drive_eject() {
	rm -rf ".drive_start_backup"
	eject "$DRIVE"
}

# Install

install_package_extract_dir() {
	destination="$MOUNT_BASE"$( dirname "$2")

	if [ $# -lt 2 ]
	then
		return
	fi

	unzip -o "$FILES_BASE/$SYSTEM_ZIP" "$1/**" -d "$destination"
}

install_package_extract_file() {
	destination="$MOUNT_BASE"$( dirname "$2")

	if [ $# -lt 2 ]
	then
		return
	fi

	unzip -o "$FILES_BASE/$SYSTEM_ZIP" "$1" -d "$destination"
}

install_symlink() {
	source=""

	if [ $# -lt 2 ]
	then
		return
	fi

	for path in $@
	do
		if [ "$source" = "" ]
		then
			source="$path"
			continue
		fi

		unlink "$MOUNT_BASE$path"
		ln -s "$source" "$MOUNT_BASE$path"
	done
}

install_set_perm() {
	uid=""
	gid=""
	mode=""

	if [ $# -lt 4 ]
	then
		return
	fi

	for value in $@
	do
		if [ "$uid" = "" ]
		then
			uid="$value"
			continue
		fi

		if [ "$gid" = "" ]
		then
			gid="$value"
			continue
		fi

		if [ "$mode" = "" ]
		then
			mode="$value"
			continue
		fi

		chown "$uid:$gid" "$MOUNT_BASE$value"
		chmod "$mode" "$MOUNT_BASE$value"
	done
}

install_set_perm_recursive() {
	uid=""
	gid=""
	dir_mode=""
	file_mode=""

	if [ $# -lt 4 ]
	then
		return
	fi

	for value in $@
	do
		if [ "$uid" = "" ]
		then
			uid="$value"
			continue
		fi

		if [ "$gid" = "" ]
		then
			gid="$value"
			continue
		fi

		if [ "$dir_mode" = "" ]
		then
			dir_mode="$value"
			continue
		fi

		if [ "$file_mode" = "" ]
		then
			file_mode="$value"
			continue
		fi

		find "$MOUNT_BASE$value" -type d -exec chown "$uid:$gid" {} \; -exec chmod "$dir_mode" {} \;
		find "$MOUNT_BASE$value" -type f -exec chown "$uid:$gid" {} \; -exec chmod "$file_mode" {} \;
	done
}

install_command() {
	command=$( echo "$1" | sed "s/[ \t]*\([^(]*\)(.*/\1/g" )
	arguments=$( echo "$1" | sed -e "s/[^(]*(\([^)]*\));.*/\1/g" -e "s/[ \t]*,[ \t]*/ /g" | tr -d '"')

	case "$command" in
		"package_extract_dir")
			install_package_extract_dir $arguments
		;;
		"package_extract_file")
			install_package_extract_file $arguments
		;;
		"symlink")
			install_symlink $arguments
		;;
		"set_perm")
			install_set_perm $arguments
		;;
		"set_perm_recursive")
			install_set_perm_recursive $arguments
		;;
	esac
}

install_script() {
	unzip -p "$FILES_BASE/$SYSTEM_ZIP" "META-INF/com/google/android/updater-script" | while read line
	do
		end_test=$( echo "$line" | grep -P "\);$" )

		COMMAND="$COMMAND$line"

		if [ "$end_test" != "" ]
		then
			install_command "$COMMAND"

			COMMAND=""
		fi
	done
}

install_drive_mount() {
	drive_part

	drive_umount

	mkdir -p "$MOUNT_BASE/boot"
	mount "${DRIVE_PART}1" "$MOUNT_BASE/boot"

	mkdir -p "$MOUNT_BASE/system"
	mount "${DRIVE_PART}2" "$MOUNT_BASE/system"
}

install_drive_umount() {
	drive_part

	dir=$( pwd )
	echo "Syncing files"

	cd "$MOUNT_BASE/boot"
	sync
	cd "$dir"

	cd "$MOUNT_BASE/system"
	sync
	cd "$dir"

	umount "$MOUNT_BASE/boot"
	rmdir "$MOUNT_BASE/boot"

	umount "$MOUNT_BASE/system"
	rmdir "$MOUNT_BASE/system"
}

install_drive_eject() {
	eject "$DRIVE"
}

#
# Main
#

if [ $# -lt 1 ] || [ $# -gt 2 ]
then
	display_help
	exit 1
fi

if [ $# -gt 1 ]
then
	DRIVE=$2
fi

display_banner

if [ "$DRIVE" = "" ]
then
	drive_select
fi

case $1 in
	"setup")
		setup_drive_confirm
		drive_umount
		setup_drive_empty
		setup_drive_infos
		setup_drive_partition
		setup_boot_install
		setup_drive_eject

		display_complete
	;;
	"install")
		install_drive_mount
		install_script
		install_drive_umount
		install_drive_eject

		display_complete
	;;
	*)
		display_help
		exit 1
	;;
esac