This repository has been archived by the owner on Nov 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
build-diskimage.sh
executable file
·172 lines (145 loc) · 5.21 KB
/
build-diskimage.sh
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
#!/bin/sh
CWD=`pwd`
WORKDIR=sandbox
SRCDIR=${BSDSRCDIR:-/usr/src}
DESTDIR=${DESTDIR:-${CWD}/${WORKDIR}}
KERNELFILE=${KERNELFILE:-${CWD}/obj/bsd.gz}
SUDO=sudo
DEVICE=vnd0
MOUNTPOINT=/mnt
TEMPFILE=/tmp/build-diskimage.tmp.$$
# This is for boot.conf and should match the kernel ttyspeed.
# Which should be 9600 for GENERIC-RD, 38400 for WRAP12 and 19200 for the rest.
TTYSPEED=${TTYSPEED:-19200}
# drive geometry information -- get the right one for your flash!!
# 128 MB cards
totalsize=250880 # "total sectors:"
bytessec=512 # "bytes/sector:"
sectorstrack=32 # "sectors/track:"
sectorscylinder=256 # "sectors/cylinder:"
trackscylinder=8 # "tracks/cylinder:"
cylinders=980 # "cylinders:"
# 256 MB cards
#totalsize=501760 # "total sectors:"
#bytessec=512 # "bytes/sector:"
#sectorstrack=32 # "sectors/track:"
#sectorscylinder=512 # "sectors/cylinder:"
#trackscylinder=16 # "tracks/cylinder:"
#cylinders=980 # "cylinders:"
# 489 MB cards
#totalsize=1001952 # "total sectors:"
#bytessec=512 # "bytes/sector:"
#sectorstrack=63 # "sectors/track:"
#sectorscylinder=1008 # "sectors/cylinder:"
#trackscylinder=16 # "tracks/cylinder:"
#cylinders=994 # "cylinders:"
# 1GB cards
#totalsize=2001888 # "total sectors:"
#bytessec=512 # "bytes/sector:"
#sectorstrack=63 # "sectors/track:"
#sectorscylinder=1008 # "sectors/cylinder:"
#trackscylinder=16 # "tracks/cylinder:"
#cylinders=994 # "cylinders:"
# 2GB cards
#totalsize=4001760 # "total sectors:"
#bytessec=512 # "bytes/sector:"
#sectorstrack=63 # "sectors/track:"
#sectorscylinder=1008 # "sectors/cylinder:"
#trackscylinder=16 # "tracks/cylinder:"
#cylinders=994 # "cylinders:"
# 4GB cards
#totalsize=8003520 # "total sectors:"
#bytessec=512 # "bytes/sector:"
#sectorstrack=63 # "sectors/track:"
#sectorscylinder=1008 # "sectors/cylinder:"
#trackscylinder=16 # "tracks/cylinder:"
#cylinders=994 # "cylinders:"
# Don't start without a imagefile as a parameter
if [ "$1" = "" ]; then
echo "usage: $0 imagefile"
exit 1
fi
IMAGEFILE=$1
# Does the kernel exist at all
if [ ! -r $KERNELFILE ]; then
echo "ERROR! $KERNELFILE does not exist or is not readable."
exit 1
fi
echo "Cleanup if something failed the last time... (ignore any not currently mounted and Device not configured warnings)"
${SUDO} umount $MOUNTPOINT
${SUDO} vnconfig -u $DEVICE
echo ""
echo "Creating an image file, if one doesn't exist..."
if [ ! -f $IMAGEFILE ] ; then
dd if=/dev/zero of=$IMAGEFILE bs=$bytessec count=$totalsize
fi
echo ""
echo "Mounting the imagefile as a device..."
${SUDO} vnconfig -c $DEVICE $IMAGEFILE
echo ""
echo "Running fdisk... (Ignore any sysctl(machdep.bios.diskinfo): Device not configured warnings)"
${SUDO} fdisk -c $cylinders -h $trackscylinder -s $sectorstrack -f ${DESTDIR}/usr/mdec/mbr -e $DEVICE << __EOC >/dev/null
reinit
update
write
quit
__EOC
let asize=$totalsize-$sectorstrack
echo "type: SCSI" >> $TEMPFILE
echo "disk: vnd device" >> $TEMPFILE
echo "label: fictitious" >> $TEMPFILE
echo "flags:" >> $TEMPFILE
echo "bytes/sector: ${bytessec}" >> $TEMPFILE
echo "sectors/track: ${sectorstrack}" >> $TEMPFILE
echo "tracks/cylinder: ${trackscylinder}" >> $TEMPFILE
echo "sectors/cylinder: ${sectorscylinder}" >> $TEMPFILE
echo "cylinders: ${cylinders}" >> $TEMPFILE
echo "total sectors: ${totalsize}" >> $TEMPFILE
echo "rpm: 3600" >> $TEMPFILE
echo "interleave: 1" >> $TEMPFILE
echo "trackskew: 0" >> $TEMPFILE
echo "cylinderskew: 0" >> $TEMPFILE
echo "headswitch: 0 " >> $TEMPFILE
echo "track-to-track seek: 0 " >> $TEMPFILE
echo "drivedata: 0 " >> $TEMPFILE
echo "" >> $TEMPFILE
echo "16 partitions:" >> $TEMPFILE
echo "a: $asize $sectorstrack 4.2BSD 2048 16384 16" >> $TEMPFILE
echo "c: $totalsize 0 unused 0 0" >> $TEMPFILE
echo ""
echo "Installing disklabel..."
${SUDO} disklabel -R $DEVICE $TEMPFILE
rm $TEMPFILE
echo ""
echo "Creating new filesystem..."
${SUDO} newfs -q /dev/r${DEVICE}a
echo ""
echo "Mounting destination to ${MOUNTPOINT}..."
if ! ${SUDO} mount -o async /dev/${DEVICE}a ${MOUNTPOINT}; then
echo Mount failed..
exit
fi
echo ""
echo "Copying bsd kernel, boot blocks and /etc/boot.conf..."
${SUDO} cp ${DESTDIR}/usr/mdec/boot ${MOUNTPOINT}/boot
${SUDO} cp ${KERNELFILE} ${MOUNTPOINT}/bsd
${SUDO} mkdir ${MOUNTPOINT}/etc
${SUDO} sed "/^stty/s/19200/${TTYSPEED}/" < ${CWD}/initial-conf/boot.conf > ${MOUNTPOINT}/etc/boot.conf
echo ""
echo "Installing boot blocks..."
${SUDO} /usr/mdec/installboot ${MOUNTPOINT}/boot ${DESTDIR}/usr/mdec/biosboot ${DEVICE}
${SUDO} mkdir ${MOUNTPOINT}/conf
${SUDO} mkdir ${MOUNTPOINT}/pkg
# Here is where you add your own packages and configuration to the flash...
echo ""
echo "Unmounting and cleaning up..."
${SUDO} umount $MOUNTPOINT
${SUDO} vnconfig -u $DEVICE
echo ""
echo "And we are done..."
echo "Run \"mountimage.sh $IMAGEFILE\" to add configuration and packages."
echo "When you are done with the configuration, gzip the imagefile and move"
echo "it to the system with a flashwriter."
echo "Use \"gunzip -c image.gz | dd of=/dev/sd0c\" on unix to write to flash"
echo "On Windows you can use http://m0n0.ch/wall/physdiskwrite.php"
echo "Both these utilities allow the gzipped image to be used directly."