summaryrefslogtreecommitdiff
path: root/package/fwinstall/src/fwinstall
blob: 90ceb77ec0e1d893feeae57e55a0cb9d0a71fa19 (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
527
528
529
530
531
532
#!/bin/mksh
# This file is part of the OpenADK project.
# install OpenADK to a block/flash device

if [ $(id -u) -ne 0 ];then
	print installation is only possible as root
	exit 1
fi

# get adk target system
target=$(cat /etc/.adktarget)
if [ -z $target ];then
	print autodetection of target failed
	exit 1
fi

function mikrotik-rb532-help {
	cat >&2 <<EOF
Syntax: adkinstall [-c|-n] <archive>
	-c: compact flash install
	-n: nand install
	-f: filesystem for compact flash
	-h: help text
EOF
	exit 1
}

function sgi-o2-help {
	cat >&2 <<EOF
Syntax: adkinstall <archive>
	-d: create data partition
	-f: filesystem (default ext4)
	-h: help text
EOF
	exit 1
}

function ibm-x40-help {
	cat >&2 <<EOF
Syntax: adkinstall <archive>
	-d: create data partition
	-f: filesystem (default ext4)
	-h: help text
EOF
	exit 1
}

function asus-p5bvm-help {
	cat >&2 <<EOF
Syntax: adkinstall <archive>
	-d: create data partition
	-f: filesystem (default ext4)
	-h: help text
EOF
	exit 1
}


function pcengines-apu-help {
	cat >&2 <<EOF
Syntax: adkinstall <archive>
	-f: filesystem (default ext4)
	-h: help text
EOF
	exit 1
}

function pcengines-alix-help {
	cat >&2 <<EOF
Syntax: adkinstall <archive>
	-f: filesystem (default ext4)
	-h: help text
EOF
	exit 1
}

case $target {
(sgi-o2)
	cfgfssize=32768
	data=
	fs=ext4
	while getopts "f:d:" ch; do
	case $ch in
		d)
			data=$OPTARG
			;;
		f)
			fs=$OPTARG
			;;
		*)
			sgi-o2-help
			exit 1
			;;
	esac
	done
	shift $((OPTIND - 1))
	if [ -z $1 ];then
		sgi-o2-help
	else
		archive=$1
	fi
	;;
(ibm-x40)
	cfgfssize=32768
	data=
	fs=ext4
	while getopts "f:d:" ch; do
	case $ch in
		d)
			data=$OPTARG
			;;
		f)
			fs=$OPTARG
			;;
		*)
			ibm-x40-help
			exit 1
			;;
	esac
	done
	shift $((OPTIND - 1))
	if [ -z $1 ];then
		ibm-x40-help
	else
		archive=$1
	fi
	;;
(asus-p5bvm)
	cfgfssize=32768
	data=
	fs=ext4
	while getopts "f:d:" ch; do
	case $ch in
		d)
			data=$OPTARG
			;;
		f)
			fs=$OPTARG
			;;
		*)
			asus-p5bvm-help
			exit 1
			;;
	esac
	done
	shift $((OPTIND - 1))
	if [ -z $1 ];then
		ibm-x40-help
	else
		archive=$1
	fi
	;;
(pcengines-apu)
	cfgfssize=32768
	fs=ext4
	while getopts "f:" ch; do
	case $ch in
		f)
			fs=$OPTARG
			;;
		*)
			pcengines-apu-help
			exit 1
			;;
	esac
	done
	shift $((OPTIND - 1))
	if [ -z $1 ];then
		pcengines-apu-help
	else
		archive=$1
	fi
	;;
(pcengines-alix)
	cfgfssize=32768
	fs=ext4
	while getopts "f:" ch; do
	case $ch in
		f)
			fs=$OPTARG
			;;
		*)
			pcengines-alix-help
			exit 1
			;;
	esac
	done
	shift $((OPTIND - 1))
	if [ -z $1 ];then
		pcengines-alix-help
	else
		archive=$1
	fi
	;;
(mikrotik-rb532)
	cfgfssize=32768
	nand=0
	cf=0
	fs=ext4
	while getopts "cnf:" ch; do
	case $ch in
		c)
			cf=1
			fs=ext4
			;;
		n)
			nand=1
			fs=yaffs2
			;;
		f)
			fs=$OPTARG
			;;
		*)
			mikrotik-rb532-help
			exit 1
			;;
	esac
	done
	shift $((OPTIND - 1))
	if [ -z $1 ];then
		mikrotik-rb532-help
	else
		archive=$1
	fi
	;;
(*)
	print target $target not supported
	exit 1
	;;
}

if [ "$target" = "mikrotik-rb532" ];then
	if [ $cf -eq 0 -a $nand -eq 0 ];then
		print "you either install on cf (-c) or nand (-n)"
		mikrotik-rb532-help
	fi
fi

tools="parted partprobe sfdisk mkfs.ext2"

f=0
for tool in $tools;do
	if ! which $tool >/dev/null; then
		echo "checking if $tool is installed... failed"
		f=1
	fi
done
if [ $f -eq 1 ];then exit 1;fi

# create empty partition table
function create_label {
	print "creating empty partition table"
	parted -s $1 mklabel msdos > /dev/null 2>&1
	if [ $? -ne 0 ]; then
		echo "creating empty partition failed!"
		exit 1
	fi
}

# get max size of disk in sectors
function get_max_size {
	maxsize=$(env LC_ALL=C parted $1 -s unit s print |awk '/^Disk/ { print $3 }'|sed -e 's/s//')
	rootsize=$(($maxsize-$cfgfssize))
	print device has $maxsize sectors. using $rootsize for root.
}

# create partition, with fstype start and end in sectors
function create_partition {
	print creating partition on $1
	parted -s $1 unit s mkpart primary $2 $3 $4 > /dev/null 2>&1
	if [ $? -ne 0 ]; then
		echo "creating primary partition failed!"
		exit 1
	fi
}

function set_boot_flag {
	print setting bootflag on $1 partition $2
	parted -s $1 set $2 boot on > /dev/null 2>&1
	if [ $? -ne 0 ]; then
		echo "setting bootflag failed!"
		exit 1
	fi
}

function change_part_type {
	print setting partition type on $1 partition $2 to $3
	sfdisk --change-id $1 $2 $3 >/dev/null 2>&1
	if [ $? -ne 0 ]; then
		echo "changing partition type failed!"
		exit 1
	fi
}

function create_filesystem {
	print creating filesystem $2 on $1 partition $3
	mkfs.ext2 -j -F -q ${1}${3}
	if [ $? -ne 0 ]; then
		echo "creating filesystem on partition failed!"
		exit 1
	fi
}

function mount_fs {
	print mounting ${1}${2} to $4 with filesystem $3
	mount -t $3 ${1}${2} $4
	if [ $? -ne 0 ]; then
		echo "mounting filesystem failed!"
		exit 1
	fi
}

function extract_archive {
	print extracting archive $1 onto $2
	tar -C $2 -xpf $1
	if [ $? -ne 0 ]; then
		echo "archive extraction failed!"
		exit 1
	fi
}

function grub_install {
	print installing bootloader grub
(
        print set default=0
        print set timeout=1
        print serial --unit=0 --speed=115200
        print terminal_output serial
        print terminal_input serial
        consargs="console=ttyS0,115200"
        print
        print 'menuentry "GNU/Linux (OpenADK)" {'
        print "\tlinux /boot/kernel root=/dev/sda1"
        print '}'
) >/mnt/boot/grub/grub.cfg
	grub-install $1 --root-directory /mnt
	if [ $? -ne 0 ]; then
		echo "grub install failed!"
		exit 1
	fi
}

function fix_perm {
	print fixing permissions
	chmod 1777 ${1}/tmp
	[[ -f ${1}/usr/bin/sudo ]] && chmod 4755 ${1}/usr/bin/sudo
	[[ -f ${1}/usr/bin/Xorg ]] && chmod 4755 ${1}/usr/bin/Xorg
}

case $target {
(sgi-o2)
	get_max_size /dev/sda
	create_label /dev/sda
	if [ -z $data ];then
		create_partition /dev/sda ext2 16385 $rootsize
		create_partition /dev/sda ext2 $(($rootsize+1)) $(($maxsize-1))
		set_boot_flag /dev/sda 1
		change_part_type /dev/sda 2 88
	else
		datasize=$(($data*1024*2))
		echo datasize is: $datasize
		echo create partition from 16385 to $(($rootsize-$datasize))
		create_partition /dev/sda ext2 16385 $(($rootsize-$datasize))
		echo create partition from $(($rootsize-$datasize+1)) to $(($maxsize-$cfgfssize-1))
		create_partition /dev/sda ext2 $(($rootsize-$datasize+1)) $(($maxsize-$cfgfssize-1))
		echo create partition from $(($maxsize-$cfgfssize)) to $(($maxsize-1))
		create_partition /dev/sda ext2 $(($maxsize-$cfgfssize)) $(($maxsize-1))
		set_boot_flag /dev/sda 1
		change_part_type /dev/sda 3 88

	fi
	partprobe /dev/sda
	sync
	sleep 2
	if [ -z $data ];then
		create_filesystem /dev/sda $fs 1
	else
		create_filesystem /dev/sda $fs 1
		create_filesystem /dev/sda $fs 2
	fi
	mdev -s
	mount_fs /dev/sda 1 $fs /mnt
	extract_archive $archive /mnt
	if [ ! -z $data ];then
		echo creating data dir and fstab entry
		mkdir /mnt/data
		echo "/dev/sda2	/data	ext4	rw	0	0" >> /mnt/etc/fstab 
	fi
	fix_perm /mnt
	umount /mnt
	;;
(ibm-x40)
	get_max_size /dev/sda
	create_label /dev/sda
	if [ -z $data ];then
		create_partition /dev/sda ext2 16385 $rootsize
		create_partition /dev/sda ext2 $(($rootsize+1)) $(($maxsize-1))
		set_boot_flag /dev/sda 1
		change_part_type /dev/sda 2 88
	else
		datasize=$(($data*1024*2))
		echo datasize is: $datasize
		echo create partition from 16385 to $(($rootsize-$datasize))
		create_partition /dev/sda ext2 16385 $(($rootsize-$datasize))
		echo create partition from $(($rootsize-$datasize+1)) to $(($maxsize-$cfgfssize-1))
		create_partition /dev/sda ext2 $(($rootsize-$datasize+1)) $(($maxsize-$cfgfssize-1))
		echo create partition from $(($maxsize-$cfgfssize)) to $(($maxsize-1))
		create_partition /dev/sda ext2 $(($maxsize-$cfgfssize)) $(($maxsize-1))
		set_boot_flag /dev/sda 1
		change_part_type /dev/sda 3 88

	fi
	partprobe /dev/sda
	sync
	sleep 2
	umount /mnt
	if [ -z $data ];then
		create_filesystem /dev/sda $fs 1
	else
		create_filesystem /dev/sda $fs 1
		create_filesystem /dev/sda $fs 2
	fi
	mdev -s
	mount_fs /dev/sda 1 $fs /mnt
	extract_archive $archive /mnt
	if [ ! -z $data ];then
		echo creating data dir and fstab entry
		mkdir /mnt/data
		echo "/dev/sda2	/data	ext4	rw	0	0" >> /mnt/etc/fstab 
	fi
	grub_install /dev/sda
	fix_perm /mnt
	umount /mnt
	;;
(asus-p5bvm)
	get_max_size /dev/sdc
	create_label /dev/sdc
	if [ -z $data ];then
		create_partition /dev/sdc ext2 16385 $rootsize
		create_partition /dev/sdc ext2 $(($rootsize+1)) $(($maxsize-1))
		set_boot_flag /dev/sdc 1
		change_part_type /dev/sdc 2 88
	else
		datasize=$(($data*1024*2))
		echo datasize is: $datasize
		echo create partition from 16385 to $(($rootsize-$datasize))
		create_partition /dev/sdc ext2 16385 $(($rootsize-$datasize))
		echo create partition from $(($rootsize-$datasize+1)) to $(($maxsize-$cfgfssize-1))
		create_partition /dev/sdc ext2 $(($rootsize-$datasize+1)) $(($maxsize-$cfgfssize-1))
		echo create partition from $(($maxsize-$cfgfssize)) to $(($maxsize-1))
		create_partition /dev/sdc ext2 $(($maxsize-$cfgfssize)) $(($maxsize-1))
		set_boot_flag /dev/sdc 1
		change_part_type /dev/sdc 3 88

	fi
	partprobe /dev/sdc
	sync
	sleep 2
	umount /mnt
	if [ -z $data ];then
		create_filesystem /dev/sdc $fs 1
	else
		create_filesystem /dev/sdc $fs 1
		create_filesystem /dev/sdc $fs 2
	fi
	mdev -s
	mount_fs /dev/sdc 1 $fs /mnt
	extract_archive $archive /mnt
	if [ ! -z $data ]; then
		echo creating data dir and fstab entry
		mkdir /mnt/data
		echo "/dev/sdc2	/data	ext4	rw	0	0" >> /mnt/etc/fstab 
	fi
	#grub_install /dev/sdc
	fix_perm /mnt
	umount /mnt
	;;
(pcengines-apu|pcengines-alix)
	get_max_size /dev/sda
	create_label /dev/sda
	create_partition /dev/sda ext2 16385 $rootsize
	create_partition /dev/sda ext2 $(($rootsize+1)) $(($maxsize-1))
	set_boot_flag /dev/sda 1
	change_part_type /dev/sda 2 88
	partprobe /dev/sda
	sync
	sleep 2
	create_filesystem /dev/sda $fs 1
	mdev -s
	mount_fs /dev/sda 1 $fs /mnt
	extract_archive $archive /mnt
	grub_install /dev/sda
	fix_perm /mnt
	umount /mnt
	;;
(mikrotik-rb532)
	if (( cf )); then
		get_max_size /dev/sda
		create_label /dev/sda
		create_partition /dev/sda ext2 1 16384
		create_partition /dev/sda ext2 16385 $rootsize
		create_partition /dev/sda ext2 $(($rootsize+1)) $(($maxsize-1))
		set_boot_flag /dev/sda 1
		change_part_type /dev/sda 1 27
		change_part_type /dev/sda 3 88
		partprobe /dev/sda
		sync
		sleep 2
		create_filesystem /dev/sda $fs 2
		mdev -s
		mount_fs /dev/sda 2 $fs /mnt
		extract_archive $archive /mnt
		print installing kernel to cf disk /dev/sda1
       		dd if=/mnt/boot/kernel of=/dev/sda1 bs=2048 >/dev/null 2>&1
		fix_perm /mnt
		umount /mnt
	fi
	if (( nand )); then
		mount_fs /dev/mtdblock 1 $fs /mnt
       		rm -rf /mnt/* >/dev/null 2>&1
       		mkdir /mnt/boot
		mount_fs /dev/mtdblock 0 $fs /mnt/boot
		extract_archive $archive /mnt
		fix_perm /mnt
		umount /mnt/boot
		umount /mnt
	fi
	;;
}

echo "successfully installed OpenADK on $target."
exit 0