File: postinst

package info (click to toggle)
nobootloader 1.38
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 684 kB
  • sloc: sh: 179; makefile: 2
file content (218 lines) | stat: -rwxr-xr-x 6,215 bytes parent folder | download
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
#!/bin/sh

set -e

. /usr/share/debconf/confmodule

log () {
	logger -t nobootloader "$@"
}

error () {
	log "error: $@"
}

findfs () {
	case "$(udpkg --print-os)" in
	    hurd)
		fsysopts "/target$1" | sed 's:^.* \([^ ]*\):\1:' ;;
	    *)
		mount | grep "on /target${1%/} " | tail -n1 | cut -d' ' -f1 ;;
	esac
}

die () {
	local template="$1"
	shift

	error "$@"
	db_input critical "$template" || [ $? -eq 30 ]
	db_go || true
	exit 1
}

mountvirtfs () {
	fstype="$1"
	path="$2"
	if grep -q "[[:space:]]$fstype\$" /proc/filesystems && \
	   ! grep -q "^[^ ]\+ \+$path " /proc/mounts; then
		mkdir -p "$path" || \
			die nobootloader/mounterr "Error creating $path"
		mount -t "$fstype" "$fstype" "$path" || \
			die nobootloader/mounterr "Error mounting $path"
		trap "umount $path" HUP INT QUIT KILL PIPE TERM EXIT
	fi
}

rootfs_devfs=$(findfs /)
bootfs_devfs=$(findfs /boot)

# partconf workaround (mounts /target as /target/)
if [ "$rootfs_devfs" = "" ]; then
	rootfs_devfs=$(findfs //)
fi

if [ "$bootfs_devfs" = "" ]; then
	bootfs_devfs=$rootfs_devfs
	boot="boot/"
else
	boot=""
fi

rootfs=$(mapdevfs $rootfs_devfs)
bootfs=$(mapdevfs $bootfs_devfs)

case "$(archdetect)" in
    powerpc/chrp_pegasos)
	kernel=$(ls /target/boot/vmlinuz-* | sed -e 's%/target/boot/%%')

	if [ -z "$kernel" ]; then
		kernelpath=$(ls /target/boot/vmlinux-* | sed -e 's%/target%%')
		version="${kernelpath#*vmlinux-}"
		if [ "$version" ]; then
			if apt-install mkvmlinuz; then
				# mkvmlinuz needs proc in /target
				mountvirtfs proc /target/proc
				chroot /target /usr/sbin/mkvmlinuz "$version" "$kernelpath"
			fi
		fi
		kernel=$(ls /target/boot/vmlinuz-* | sed -e 's%/target/boot/%%')
	fi

	partition_offset=1
	if [ -e /proc/device-tree/openprom/firmware-version ]; then
		firmware_version="$(cat /proc/device-tree/openprom/firmware-version)"
		fv1="${firmware_version%%.*}"
		rest="${firmware_version#*.}"
		fv2="${rest%%.*}"
		rest="${rest#*.}"
		fv3="${rest%%.*}"
		if [ "$fv1" -eq 1 ]; then
			if [ "$fv2" -eq 3 ] && [ "$fv3" -ge 99 ]; then
				partition_offset=0
			elif [ "$fv2" -ge 4 ]; then
				partition_offset=0
			fi
		elif [ "$fv1" -ge 2 ]; then
			partition_offset=0
		fi
	fi

	bootfs_disk_syspath=
	if [ -d /sys/block ]; then
		if type udevadm >/dev/null 2>&1; then
			bootfs_disk_syspath="$(dirname "$(udevadm info -q path -n "$bootfs_devfs")")"
		elif type udevinfo >/dev/null 2>&1; then
			bootfs_disk_syspath="$(dirname "$(udevinfo -q path -n "$bootfs_devfs")")"
		fi
	fi
	if [ "$bootfs_disk_syspath" ]; then
		# TODO: device symlinks are allegedly slated to go
		# away, but it's not entirely clear what their
		# replacement will be yet ...
		bootfs_disk="$(basename "$(readlink "/sys$bootfs_disk_syspath/device")")"
		kind="$(basename "$(readlink "/sys$bootfs_disk_syspath/device/bus")")"
		case $kind in
		    ide)
			host="$(basename "$(dirname "$(readlink "/sys$bootfs_disk_syspath/device")")" | sed 's/[^0-9]*//')"
			# TODO: devfs set bus to hwif->channel, which
			# doesn't appear to be exposed. Since we only
			# support the first controller anyway, I'm hoping
			# that the host (hwif->index) will be good enough.
			bus="$(echo "$bootfs_disk" | cut -d. -f1)"
			target="$(echo "$bootfs_disk" | cut -d. -f2)"
			lun=
			;;
		    scsi)
			host="$(echo "$bootfs_disk" | cut -d: -f1)"
			bus="$(echo "$bootfs_disk" | cut -d: -f2)"
			target="$(echo "$bootfs_disk" | cut -d: -f3)"
			lun="$(echo "$bootfs_disk" | cut -d: -f4)"
			;;
		esac
		part="$(($(echo "$bootfs_devfs" | sed 's/^.*[^0-9]//') - $partition_offset))"
	else
		kind=$(echo $bootfs_devfs | sed -e 's%/dev/%%' -e 's%/host.*$%%')
		host=$(echo $bootfs_devfs | sed -e 's%^.*host%%' -e 's%/bus.*$%%')
		bus=$(echo $bootfs_devfs | sed -e 's%^.*bus%%' -e 's%/target.*$%%')
		target=$(echo $bootfs_devfs | sed -e 's%^.*target%%' -e 's%/lun.*$%%')
		lun=$(echo $bootfs_devfs | sed -e 's%^.*lun%%' -e 's%/part.*$%%')
		part="$(($(echo "$bootfs_devfs" | sed -e 's%^.*part%%') - $partition_offset))"
	fi

	# We don't know how to map non ide or scsi disks
	# and we have trouble when there is more than one such controller.
	case "$kind","$host" in
	    ide,0)
		path="/pci/ide/disk@$bus,$target" ;;
	    scsi,0)
		path="/pci/scsi/disk@$bus,$target,$lun" ;;
	    *)
		path="hd" ;;
	esac

	# map theidevice to the OF aliases from /proc/device-tree/aliases.
	if [ -d /proc/device-tree/aliases ]; then
		for alias in $(ls /proc/device-tree/aliases/*); do
			device=$(grep disk $alias | sed -e 's%@[^/]*/%/%g')
			if [ "$path" = "$device" ]; then
				path="${alias#/proc/device-tree/aliases/}"
			fi
		done
	fi

	bootcmd="boot ${path}:${part} ${boot}vmlinuz root=${rootfs}"

	template=nobootloader/confirmation_powerpc_chrp_pegasos
	db_subst $template KERNEL_BOOT "${bootcmd}"
	db_subst $template OF_BOOT_DEVICE "${path}:${part}" 
	db_subst $template OF_BOOT_FILE "${boot}vmlinuz root=${rootfs}"
	db_input high $template || true
	;;
    powerpc/pasemi)
	# TODO: Need to figure out if we need to generate the ramdisk
	# TODO: Is this the right kernel path?
	# TODO: Need to generate the device name based on actual disk used
	kernel=vmlinuz
	initrd=initrd

	template=nobootloader/confirmation_powerpc_pasemi
	db_subst $template INITRD "sata0.0:/${boot}${initrd}"
	db_subst $template KERNFILE "sata0.0:/${boot}${kernel}"
	db_subst $template BOOTARGS "root=$rootfs"
	db_input high $template || true
	;;
    hurd-i386/*)
	kernel=gnumach.gz
	template=nobootloader/confirmation_common
	db_subst $template ROOT "root=device:${rootfs#/dev/}"
	db_subst $template BOOT "${bootfs}"
	db_subst $template KERNEL "${kernel}"
	db_input high $template || true
	;;
    *)
	db_get base-installer/kernel/linux/link_in_boot
	link_in_boot="$RET"
	if [ "$link_in_boot" = "true" ]; then
		boot_link="boot/"
	else
		boot_link=""
		boot=""
		bootfs=${rootfs}
	fi
	if [ -e /target/${boot_link}vmlinuz ]; then
		kernel="/${boot}vmlinuz"
	elif [ -e /target/${boot_link}vmlinux ]; then
		kernel="/${boot}vmlinux"
	fi

	uparams=$(user-params) || true
	template=nobootloader/confirmation_common
	db_subst $template ROOT "root=${rootfs} ${uparams}"
	db_subst $template BOOT "${bootfs}"
	db_subst $template KERNEL "${kernel}"
	db_input high $template || true
	;;
esac

db_go || true