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
|
#!/bin/bash
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo/src/livecd-tools/livecd-functions.sh,v 1.19 2006/01/26 22:49:18 wolf31o2 Exp $
# Global Variables:
# CDBOOT -- is booting off CD
# LIVECD_CONSOLE -- console that is specified to kernel commandline
# -- (ttyS0, tty1, etc). Only defined if passed to kernel
# LIVECD_CONSOLE_BAUD -- console baudrate specified
# LIVECD_CONSOLE_PARITY -- console parity specified
# LIVECD_CONSOLE_DATABITS -- console databits specified
source /sbin/functions.sh
livecd_parse_opt() {
case "$1" in
*\=*)
echo "$1" | cut -f2 -d=
;;
esac
}
livecd_check_root() {
if [ "$(whoami)" != "root" ]
then
echo "ERROR: must be root to continue"
return 1
fi
}
livecd_get_cmdline() {
echo "0" > /proc/sys/kernel/printk
CMDLINE="$(cat /proc/cmdline)"
export CMDLINE
}
no_gl() {
ewarn "No OpenGL-capable card found."
echo
einfo "If you have a card that you know is supported by either the ATI or"
einfo "NVIDIA binary drivers, please file a bug with the output of lspci"
einfo "on http://bugs.gentoo.org so we can resolve this."
GLTYPE=xorg-x11
}
ati_gl() {
einfo "ATI card detected."
GLTYPE=ati
}
nv_gl() {
einfo "NVIDIA card detected."
GLTYPE=nvidia
}
get_video_cards() {
[ -x /sbin/lspci ] && VIDEO_CARDS="$(/sbin/lspci | grep VGA)"
[ -x /usr/sbin/lspci ] && VIDEO_CARDS="$(/usr/sbin/lspci | grep VGA)"
NUM_CARDS="$(echo ${VIDEO_CARDS} | wc -l)"
if [ ${NUM_CARDS} -eq 1 ]; then
NVIDIA=$(echo ${VIDEO_CARDS} | grep "nVidia Corporation")
ATI=$(echo ${VIDEO_CARDS} | grep "ATI Technologies")
if [ -n "${NVIDIA}" ]; then
NVIDIA_CARD=$(echo ${NVIDIA} | awk 'BEGIN {RS=" "} /(NV|nv)[0-9]+/ {print $1}' | cut -d. -f1 | sed 's/ //' | sed 's:[^0-9]::g')
if [ -n "${NVIDIA_CARD}" ]; then
if [ $(echo ${NVIDIA_CARD} | cut -dV -f2) -ge 4 ]; then
nv_gl
else
no_gl
fi
else
no_gl
fi
elif [ -n "${ATI}" ]; then
ATI_CARD=$(echo ${ATI} | awk 'BEGIN {RS=" "} /(R|RV|RS)[0-9]+/ {print $1}')
if [ $(echo ${ATI_CARD} | grep S) ]; then
ATI_CARD_S=$(echo ${ATI_CARD} | cut -dS -f2)
elif [ $(echo ${ATI_CARD} | grep V) ]; then
ATI_CARD_V=$(echo ${ATI_CARD} | cut -dV -f2)
else
ATI_CARD=$(echo ${ATI_CARD} | cut -dR -f2)
fi
if [ -n "${ATI_CARD_S}" ] && [ ${ATI_CARD_S} -ge 350 ]; then
ati_gl
elif [ -n "${ATI_CARD_V}" ] && [ ${ATI_CARD_V} -ge 250 ]; then
ati_gl
elif [ -n "${ATI_CARD}" ] && [ ${ATI_CARD} -ge 200 ]; then
ati_gl
else
no_gl
fi
else
no_gl
fi
fi
}
livecd_config_wireless() {
cd /tmp/setup.opts
dialog --title "SSID" --inputbox "Please enter your SSID, or leave blank for selecting the nearest open network" 20 50 2> ${iface}.SSID
SSID="$(cat ${iface}.SSID)"
if [ -n "${SSID}" ]
then
dialog --title "WEP (Part 1)" --menu "Does your network use encryption?" 20 60 7 1 "Yes" 2 "No" 2> ${iface}.WEP
WEP="$(cat ${iface}.WEP)"
case ${WEP} in
1)
dialog --title "WEP (Part 2)" --menu "Are you entering your WEP key in HEX or ASCII?" 20 60 7 1 "HEX" 2 "ASCII" 2> ${iface}.WEPTYPE
WEP_TYPE="$(cat ${iface}.WEPTYPE)"
case ${WEP_TYPE} in
1)
dialog --title "WEP (Part 3)" --inputbox "Please enter your WEP key in the form of XXXX-XXXX-XX for 64-bit or XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XX for 128-bit" 20 50 2> ${iface}.WEPKEY
WEP_KEY="$(cat ${iface}.WEPKEY)"
if [ -n "${WEP_KEY}" -a -x /usr/sbin/iwconfig ]
then
/usr/sbin/iwconfig ${iface} essid "${SSID}"
/usr/sbin/iwconfig ${iface} key "${WEP_KEY}"
fi
;;
2)
dialog --title "WEP (Part 3)" --inputbox "Please enter your WEP key in ASCII form. This should be 5 or 13 characters for either 64-bit or 128-bit encryption, repectively" 20 50 2> ${iface}.WEPKEY
WEP_KEY="$(cat ${iface}.WEPKEY)"
if [ -n "${WEP_KEY}" -a -x /usr/sbin/iwconfig ]
then
/usr/sbin/iwconfig ${iface} essid "${SSID}"
/usr/sbin/iwconfig ${iface} key "s:${WEP_KEY}"
fi
;;
esac
;;
2)
/usr/sbin/iwconfig ${iface} essid "${SSID}"
/usr/sbin/iwconfig ${iface} key off
;;
esac
fi
}
livecd_write_wireless_conf() {
cd /tmp/setup.opts
SSID="$(cat ${iface}.SSID)"
if [ -n "${SSID}" ]
then
echo "# This wireless configuration file was built by net-setup" > /etc/conf.d/wireless
WEP="$(cat ${iface}.WEPTYPE)"
case ${WEP} in
1)
WEP_TYPE="$(cat ${iface}.WEPTYPE)"
if [ -n "${WEP_TYPE}" ]
then
WEP_KEY="$(cat ${iface}.WEPKEY)"
if [ -n "${WEP_KEY}" ]
then
SSID_TRANS="$(echo ${SSID//[![:word:]]/_})"
case ${WEP_TYPE} in
1)
echo "key_${SSID_TRANS}=\"${WEP_KEY} enc open\"" >> /etc/conf.d/wireless
;;
2)
echo "key_${SSID_TRANS}=\"s:${WEP_KEY} enc open\"" >> /etc/conf.d/wireless
;;
esac
fi
fi
;;
2)
:
;;
esac
echo "preferred_aps=( \"${SSID}\" )" >> /etc/conf.d/wireless
echo "associate_order=\"forcepreferredonly\"" >> /etc/conf.d/wireless
fi
}
livecd_config_ip() {
cd /tmp/setup.opts
dialog --title "TCP/IP setup" --menu "You can use DHCP to automatically configure a network interface or you can specify an IP and related settings manually. Choose one option:" 20 60 7 1 "Use DHCP to auto-detect my network settings" 2 "Specify an IP address manually" 2> ${iface}.DHCP
DHCP="$(cat ${iface}.DHCP)"
case ${DHCP} in
1)
/sbin/dhcpcd -n -t 10 -h $(hostname) ${iface} &
;;
2)
dialog --title "IP address" --inputbox "Please enter an IP address for ${iface}:" 20 50 "192.168.1.1" 2> ${iface}.IP
IP="$(cat ${iface}.IP)"
BC_TEMP="$(echo $IP|cut -d . -f 1).$(echo $IP|cut -d . -f 2).$(echo $IP|cut -d . -f 3).255"
dialog --title "Broadcast address" --inputbox "Please enter a Broadcast address for ${iface}:" 20 50 "${BC_TEMP}" 2> ${iface}.BC
BROADCAST="$(cat ${iface}.BC)"
dialog --title "Network mask" --inputbox "Please enter a Network Mask for ${iface}:" 20 50 "255.255.255.0" 2> ${iface}.NM
NETMASK="$(cat ${iface}.NM)"
dialog --title "Gateway" --inputbox "Please enter a Gateway for ${iface} (hit enter for none:)" 20 50 2> ${iface}.GW
GATEWAY="$(cat ${iface}.GW)"
dialog --title "DNS server" --inputbox "Please enter a name server to use (hit enter for none:)" 20 50 2> ${iface}.DNS
DNS="$(cat ${iface}.DNS)"
/sbin/ifconfig ${iface} ${IP} broadcast ${BROADCAST} netmask ${NETMASK}
if [ -n "${GATEWAY}" ]
then
/sbin/route add default gw ${GATEWAY} dev ${iface} netmask 0.0.0.0 metric 1
fi
if [ -n "${DNS}" ]
then
dialog --title "DNS Search Suffix" --inputbox "Please enter any domains which you would like to search on DNS queries (hit enter for none:)" 20 50 2> ${iface}.SUFFIX
SUFFIX="$(cat ${iface}.SUFFIX)"
echo "nameserver ${DNS}" > /etc/resolv.conf
if [ -n "${SUFFIX}" ]
then
echo "search ${SUFFIX}" >> /etc/resolv.conf
fi
fi
;;
esac
}
livecd_write_net_conf() {
cd /tmp/setup.opts
echo "# This network configuration was written by net-setup" > /etc/conf.d/net
DHCP="$(cat ${iface}.DHCP)"
case ${DHCP} in
1)
echo "iface_${iface}=\"dhcp\"" >> /etc/conf.d/net
;;
2)
IP="$(cat ${iface}.IP)"
BROADCAST="$(cat ${iface}.BC)"
NETMASK="$(cat ${iface}.NM)"
GATEWAY="$(cat ${iface}.GW)"
if [ -n "${IP}" -a -n "${BROADCAST}" -a -n "${NETMASK}" ]
then
echo "iface_eth0=\"${IP} broadcast ${BROADCAST} netmask ${NETMASK}\"" >> /etc/conf.d/net
if [ -n "${GATEWAY}" ]
then
echo "gateway=\"${iface}/${GATEWAY}\"" >> /etc/conf.d/net
fi
fi
;;
esac
}
livecd_console_settings() {
# scan for a valid baud rate
case "$1" in
300*)
LIVECD_CONSOLE_BAUD=300
;;
600*)
LIVECD_CONSOLE_BAUD=600
;;
1200*)
LIVECD_CONSOLE_BAUD=1200
;;
2400*)
LIVECD_CONSOLE_BAUD=2400
;;
4800*)
LIVECD_CONSOLE_BAUD=4800
;;
9600*)
LIVECD_CONSOLE_BAUD=9600
;;
14400*)
LIVECD_CONSOLE_BAUD=14400
;;
19200*)
LIVECD_CONSOLE_BAUD=19200
;;
28800*)
LIVECD_CONSOLE_BAUD=28800
;;
38400*)
LIVECD_CONSOLE_BAUD=38400
;;
57600*)
LIVECD_CONSOLE_BAUD=57600
;;
115200*)
LIVECD_CONSOLE_BAUD=115200
;;
esac
if [ "${LIVECD_CONSOLE_BAUD}" = "" ]
then
# If it's a virtual console, set baud to 38400, if it's a serial
# console, set it to 9600 (by default anyhow)
case ${LIVECD_CONSOLE} in
tty[0-9])
LIVECD_CONSOLE_BAUD=38400
;;
*)
LIVECD_CONSOLE_BAUD=9600
;;
esac
fi
export LIVECD_CONSOLE_BAUD
# scan for a valid parity
# If the second to last byte is a [n,e,o] set parity
local parity
parity=$(echo $1 | rev | cut -b 2-2)
case "$parity" in
[neo])
LIVECD_CONSOLE_PARITY=$parity
;;
esac
export LIVECD_CONSOLE_PARITY
# scan for databits
# Only set databits if second to last character is parity
if [ "${LIVECD_CONSOLE_PARITY}" != "" ]
then
LIVECD_CONSOLE_DATABITS=$(echo $1 | rev | cut -b 1)
fi
export LIVECD_CONSOLE_DATABITS
return 0
}
livecd_read_commandline() {
livecd_get_cmdline || return 1
for x in ${CMDLINE}
do
case "${x}" in
cdroot)
CDBOOT="yes"
export CDBOOT
;;
cdroot\=*)
CDBOOT="yes"
export CDBOOT
;;
console\=*)
local live_console
live_console=$(livecd_parse_opt "${x}")
# Parse the console line. No options specified if
# no comma
LIVECD_CONSOLE=$(echo ${live_console} | cut -f1 -d,)
if [ "${LIVECD_CONSOLE}" = "" ]
then
# no options specified
LIVECD_CONSOLE=${live_console}
else
# there are options, we need to parse them
local livecd_console_opts
livecd_console_opts=$(echo ${live_console} | cut -f2 -d,)
livecd_console_settings ${livecd_console_opts}
fi
export LIVECD_CONSOLE
;;
esac
done
return 0
}
livecd_fix_inittab() {
if [ "${CDBOOT}" = "" ]
then
return 1
fi
# Create a backup
cp -f /etc/inittab /etc/inittab.old
# Comment out current getty settings
sed -i -e '/^c[0-9]/ s/^/#/' /etc/inittab
sed -i -e '/^s[01]/ s/^/#/' /etc/inittab
# SPARC & HPPA console magic
if [ "${HOSTTYPE}" = "sparc" -o "${HOSTTYPE}" = "hppa" -o "${HOSTTYPE}" = "ppc64" ]
then
# Mount openprom tree for user debugging purposes
if [ "${HOSTTYPE}" = "sparc" ]
then
mount -t openpromfs none /proc/openprom
fi
# SPARC serial port A, HPPA mux / serial
if [ -c "/dev/tts/0" ]
then
LIVECD_CONSOLE_BAUD=$(stty -F /dev/tts/0 speed)
echo "s0:12345:respawn:/sbin/agetty -nl /bin/bashlogin ${LIVECD_CONSOLE_BAUD} ttyS0 vt100" >> /etc/inittab
fi
# HPPA software PDC console (K-models)
if [ "${LIVECD_CONSOLE}" = "ttyB0" ]
then
mknod /dev/ttyB0 c 11 0
LIVECD_CONSOLE_BAUD=$(stty -F /dev/ttyB0 speed)
echo "b0:12345:respawn:/sbin/agetty -nl /bin/bashlogin ${LIVECD_CONSOLE_BAUD} ttyB0 vt100" >> /etc/inittab
fi
# FB / STI console
if [ -c "/dev/vc/1" -o -c "/dev/tts/1" -o -c "/dev/tty2" ]
then
MODEL_NAME=$(cat /proc/cpuinfo |grep "model name"|sed 's/.*: //')
if [ "${MODEL_NAME}" = "UML" ]
then
for x in 0 1 2 3 4 5 6
do
echo "c${x}:12345:respawn:/sbin/mingetty --noclear --autologin root tty${x}" >> /etc/inittab
done
else
for x in 1 2 3 4 5 6
do
echo "c${x}:12345:respawn:/sbin/mingetty --noclear --autologin root tty${x}" >> /etc/inittab
done
fi
fi
if [ -c "/dev/hvc0" ]
then
einfo "Adding hvc console to inittab"
echo "s0:12345:respawn:/sbin/agetty -nl /bin/bashlogin 9600 hvc0 vt320" >> /etc/inittab
fi
# The rest...
else
if [ "${LIVECD_CONSOLE}" = "tty0" -o "${LIVECD_CONSOLE}" = "" ]
then
for x in 1 2 3 4 5 6
do
echo "c${x}:12345:respawn:/sbin/agetty -nl /bin/bashlogin 38400 tty${x} linux" >> /etc/inittab
done
else
einfo "Adding ${LIVECD_CONSOLE} console to inittab"
echo "s0:12345:respawn:/sbin/agetty -nl /bin/bashlogin ${LIVECD_CONSOLE_BAUD} ${LIVECD_CONSOLE} vt100" >> /etc/inittab
fi
fi
# EFI-based machines should automatically hook up their console lines
if dmesg | grep -q '^Adding console on'
then
dmesg | grep '^Adding console on' | while read x; do
line=`echo "$x" | cut -d' ' -f4`
id=e`echo "$line" | grep -o '.\{1,3\}$'`
[ "${line}" = "${LIVECD_CONSOLE}" ] && continue # already setup above
case "$x" in
*options\ \'[0-9]*) speed=`echo "$x" | sed "s/.*options '//; s/[^0-9].*//"` ;;
*) speed=9600 ;; # choose a default, only matters if it is serial
esac
echo "$id:12345:respawn:/sbin/agetty -nl /bin/bashlogin ${speed} ${line} vt100" >> /etc/inittab
done
fi
# force reread of inittab
kill -HUP 1
return 0
}
|