xref: /plan9/rc/bin/pc/bootwinnt (revision 223a736ebd2849388a6a0145cd1e22a96bd28460)
1#!/bin/rc
2
3disk=`{ls /dev/sd??/plan9 >[2]/dev/null | sed 1q | sed 's!.*/(.*)/plan9!\1!'}
4if(! ~ $#disk 1) {
5	echo 'No plan 9 disk found' >[1=2]
6	exit
7}
8
9if(! c: || ! test -f /n/c:/boot.ini) {
10	echo 'Could not find NT''s boot.ini on the first FAT disk.' >[1=2]
11	exit
12}
13
14if(test -f /n/c:/boot.p9) {
15	echo 'A Plan 9 backup already exists; will not edit boot.ini again.' >[1=2]
16	exit
17}
18
19if(! cp /n/c:/boot.ini /n/c:/boot.p9) {
20	echo 'Could not back up boot.ini; will not continue.' >[1=2]
21	exit
22}
23
24chmod +w /n/c:/boot.ini
25
26if(! grep -si '\[operating systems\]' /n/c:/boot.ini) {
27	echo 'Could not parse boot.ini.' >[1=2]
28	exit
29}
30
31if(grep -si 'Plan 9' /n/c:/boot.ini) {
32	p9file=`{grep 'Plan 9' /n/c:/boot.ini | sed 1q | sed 's/=.*//'}
33	if(! ~ $p9file [Cc]:'\'*) {
34		echo 'Unexpected Plan 9 entry in boot.ini already; not continuing.' >[1=2]
35		exit
36	}
37}
38
39if not {
40	p9file='c:\bootsect.p9'
41	echo 'c:\bootsect.p9 = "Plan 9 from Bell Labs"
42' >>/n/c:/boot.ini
43}
44
45p9file=/n/^`{echo $p9file | sed 's!\\!/!g'}
46
47
48if(dd -if /dev/$disk/plan9 -bs 512 -count 1 -of $p9file >/dev/null >[2]/dev/null) {
49	echo 'Plan 9 added to Windows NT boot menu.' >[1=2]
50	exit
51}
52
53echo 'Error copying Plan 9 boot sector to file.'
54exit
55