-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathsecond-stage
executable file
·425 lines (343 loc) · 11 KB
/
second-stage
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
#!/bin/bash
# ********************************************
# This is part of "create_image" script
# Do not execute !!
# ********************************************
. params.sh
_LOGFILE="/install.log"
export DEBIAN_FRONTEND=noninteractive
#*********************
# ** CONFIGURE NETWORK
#*********************
set_network() {
# ** SET hostname
echo ${HOSTNAME} > /etc/hostname
return 0
mkdir -p /etc/network
cat >> /etc/network/interfaces << _EOF_
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
_EOF_
}
# *************************************************
# ** Some tricks to make everything work
# *************************************************
do_tricks() {
_DST=`lsb_release -si`
cat > /etc/modules << _EOF_
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.
## Display and GPU
#ump
#mali
##mali_drm
## WiFi
#8192cu
#8188eu
8189es
## GPIO
#gpio-sunxi
_EOF_
# ADJUST rc.local for some tuning
cat > /etc/rc.local << _EOF_
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
echo 0 > /proc/sys/kernel/hung_task_timeout_secs
dmesg -n 1
_EOF_
echo "exit 0" >> /etc/rc.local
if [ ! "${ONLY_BASE}" = "yes" ] ; then
# *****************************
# Setup tmux to show the cursor
cat > /root/.tmux.conf << _EOF_
setw -ga terminal-overrides ',*:Cc=\E[?120;%p1%s;240c:Cr=\E[?120;0;240c:civis=\E[?25l:cnorm=\E[?25h:cvvis=\E[?25h,'
set -g status-bg black
set -g status-fg white
_EOF_
cat > /home/$USER/.tmux.conf << _EOF_
setw -ga terminal-overrides ',*:Cc=\E[?120;%p1%s;240c:Cr=\E[?120;0;240c:civis=\E[?25l:cnorm=\E[?25h:cvvis=\E[?25h,'
set -g status-bg black
set -g status-fg white
_EOF_
fi
#*********************
# WARNING TO RESIZE FS
cat > /usr/local/bin/fs_resize_warning << _EOF_
#!/bin/sh
echo -e "\033[31m\033[1m***********************************************"
echo -e "WARNING: TO RESIZE FILESYSTEM RUN:"
echo -e "sudo fs_resize or sudo /usr/local/bin/fs_resize"
echo -e "to remove this message run:"
echo -e "sudo rm /usr/local/bin/fs_resize_warning"
echo -e "***********************************************\033[22m\033[37m"
setterm -default
_EOF_
chmod +x /usr/local/bin/fs_resize_warning > /dev/null 2>&1
if [ ! "${ONLY_BASE}" = "yes" ] ; then
# ******************************************
# ADJUST .bashrc to start tmux in fb console
cat >> /root/.bashrc << _EOF_
if [ "\$TERM" = "linux" ]; then
if [[ ! \$TERM =~ screen ]]; then
exec tmux
fi
fi
if [ -f /usr/local/bin/fs_resize_warning ]; then
. /usr/local/bin/fs_resize_warning
fi
_EOF_
cat >> /home/$USER/.bashrc << _EOF_
if [ "\$TERM" = "linux" ]; then
if [[ ! \$TERM =~ screen ]]; then
exec tmux
fi
fi
if [ -f /usr/local/bin/fs_resize_warning ]; then
. /usr/local/bin/fs_resize_warning
fi
_EOF_
# *********************************************
# Enable serial console and 3 virtual terminals
if [ "${_DST}" = "Ubuntu" ]; then
cat > /etc/init/ttyS0.conf << _EOF_
# ttyS0 - getty
#
# This service maintains a getty on ttyS0 from the point the system is
# started until it is shut down again.
start on stopped rc or RUNLEVEL=[12345]
stop on runlevel [!12345]
respawn
exec /sbin/getty -L 115200 ttyS0 vt102
_EOF_
rm /etc/init/tty4.conf > /dev/null 2>&1
rm /etc/init/tty5.conf > /dev/null 2>&1
rm /etc/init/tty6.conf > /dev/null 2>&1
else
echo "S0:23:respawn:/sbin/getty -L ttyS0 115200 vt102" >> /etc/inittab
ln -sf /usr/lib/systemd/system/getty@.service /etc/systemd/system/getty.target.wants/getty@tty2.service >> $_LOGFILE 2>&1
ln -sf /usr/lib/systemd/system/getty@.service /etc/systemd/system/getty.target.wants/getty@tty2.service >> $_LOGFILE 2>&1
fi
# Set console Fixed font
if [ -f /etc/default/console-setup ]; then
cat /etc/default/console-setup | sed s/"FONTFACE=\"VGA\""/"FONTFACE=\"Fixed\""/g > /tmp/_consset
mv /tmp/_consset /etc/default/console-setup
fi
else
cat >> /root/.bashrc << _EOF_
if [ -f /usr/local/bin/fs_resize_warning ]; then
. /usr/local/bin/fs_resize_warning
fi
_EOF_
cat >> /home/$USER/.bashrc << _EOF_
if [ -f /usr/local/bin/fs_resize_warning ]; then
. /usr/local/bin/fs_resize_warning
fi
_EOF_
fi
}
_excode=0
# ---- Internal: wait for process to end --------
proc_wait() {
spin='-\|/'
i=0
while kill -0 $1 2>/dev/null
do
i=$(( (i+1) %4 ))
printf "\r$2 ${spin:$i:1}"
sleep .1
done
_excode=$?
if [ $_excode -eq 0 ]
then
printf "\rOK. \n"
else
printf "\rERROR. \n"
exit 1
fi
}
# -----------------------------------------------
# ====================================================
if [ ! -f /debootstrap/debootstrap ]; then
exit 1
fi
echo "DEBOOTSTRAP, SECOND-STAGE"
/debootstrap/debootstrap --second-stage >> $_LOGFILE &
pid=$! # Process Id of the previous running command
sleep 0.2
echo -e "\033[1A\033[K"
proc_wait $pid "please wait"
if [ ! $_excode -eq 0 ]; then
echo "*********************"
echo "** debootstrap ERROR."
echo "*********************"
exit 1
fi
echo "DEBOOTSTRAP, SECOND-STAGE FINISHED."
sleep 1
_apt="-y -q"
mv /sources.list /etc/apt/sources.list
echo "LANG=\"$LANG\"" > /etc/default/locale
echo "LC_ALL=\"$LANG\"" >> /etc/default/locale
export LANG=${LANG}
echo ""
export LC_ALL=${LANG}
sleep 0.1
echo -e "\033[1A\033[K"
export LANGUAGE=${LANGUAGE}
set_network
#apt-key adv --keyserver keyserver.ubuntu.com --recv-keys AB19BAC9 >> $_LOGFILE 2>&1
#---------------------------------------------------------------------
if [ -f /etc/init.d/udev ]; then
cat /etc/init.d/udev | sed '/### END INIT INFO/a\exit 0' > /tmp/_udev_
mv /tmp/_udev_ /etc/init.d/udev
fi
#---------------------------------------------------------------------
if [ "${raspbian}" = "yes" ] ; then
wget https://archive.raspbian.org/raspbian.public.key
apt-key add raspbian.public.key
fi
echo "======================="
echo "Updating & upgrading..."
apt-get ${_apt} update >> $_LOGFILE 2>&1 &
pid=$!
proc_wait $pid "please wait"
apt-get ${_apt} upgrade >> $_LOGFILE 2>&1 &
pid=$!
proc_wait $pid "please wait"
apt-get clean >> $_LOGFILE 2>&1
# ============================================
# prevent services from starting automatically
#---------------------------------------------
cat << EOD > /usr/sbin/policy-rc.d
#!/bin/sh
echo "rc.d operations disabled for chroot"
exit 101
EOD
chmod 0755 /usr/sbin/policy-rc.d
#---------------------------------------------
echo "Installing essential packages..."
apt-get ${_apt} install lsb-release >> $_LOGFILE 2>&1 &
pid=$!
proc_wait $pid "please be patient"
apt-get clean >> $_LOGFILE 2>&1
_DST=`lsb_release -si`
_REL=`lsb_release -sc`
echo ""
echo -e "\033[31m\033[1m*** Installing $_DST $_REL ***\033[22m\033[37m"
echo ""
#apt-get ${_apt} install udev policykit-1 >> $_LOGFILE 2>&1 &
#pid=$!
#proc_wait $pid "please wait"
#apt-get clean >> $_LOGFILE 2>&1
#if [ "${_REL}" = "vivid" ] ; then
# echo "Installing upstart-sysv (vivid)..."
# apt-get ${_apt} install upstart-sysv >> $_LOGFILE 2>&1 &
# pid=$!
# proc_wait $pid "please wait"
# apt-get clean >> $_LOGFILE 2>&1
#fi
if [ "${ONLY_BASE}" = "yes" ] ; then
echo "Installing base packages..."
apt-get ${_apt} install sudo isc-dhcp-client netbase ifupdown iproute network-manager --no-install-recommends >> $_LOGFILE 2>&1 &
pid=$!
proc_wait $pid "please be patient"
apt-get clean >> $_LOGFILE 2>&1
else
echo "Installing base packages..."
apt-get ${_apt} install udev apt-utils locales dialog sudo isc-dhcp-client netbase ifupdown iproute openssh-server iputils-ping wget curl ntpdate ntp less tzdata console-common module-init-tools u-boot-tools initramfs-tools keyboard-configuration console-setup xz-utils fbset --no-install-recommends >> $_LOGFILE 2>&1 &
pid=$!
proc_wait $pid "please be patient"
apt-get clean >> $_LOGFILE 2>&1
# ** INSTALL base language pack for your language
if [ "${_DST}" = "Ubuntu" ] ; then
echo "Installing language pack..."
apt-get ${_apt} install language-pack-$LANGUAGE-base --no-install-recommends >> $_LOGFILE 2>&1 &
pid=$!
proc_wait $pid "please wait"
apt-get clean >> $_LOGFILE 2>&1
else
cat /etc/locale.gen | sed s/"# $LANG"/"$LANG"/g > /tmp/locale.gen
mv /tmp/locale.gen /etc/locale.gen
locale-gen >> $_LOGFILE 2>&1
fi
# ** INSTALL more usefull packages ....
# apt-get -y install wireless-tools wpasupplicant axel build-essential git whiptail unzip
echo "Installing more packages..."
apt-get ${_apt} install nano mc htop man-db tmux dbus btrfs-tools net-tools ethtool uuid iw lshw network-manager rsync usbutils hdparm i2c-tools parted dosfstools --no-install-recommends >> $_LOGFILE 2>&1 &
pid=$!
proc_wait $pid "please wait"
apt-get clean >> $_LOGFILE 2>&1
fi
rm -Rf /boot/* >> $_LOGFILE 2>&1
if ! [ "${ONLY_BASE}" = "yes" ] ; then
# ** CONFIGURE time zone, keyboard layout, console ...
echo "Configuring, please wait..."
if [ ! "${_timezone}" = "" ] ; then
echo $_timezone > /etc/timezone
fi
echo "*** LOCALE ***" >> $_LOGFILE 2>&1
locale-gen $LANG >> $_LOGFILE 2>&1
echo "*** TZDATA ***" >> $_LOGFILE 2>&1
dpkg-reconfigure tzdata >> $_LOGFILE 2>&1
echo "*** KEYBOARD ***" >> $_LOGFILE 2>&1
dpkg-reconfigure keyboard-configuration >> $_LOGFILE 2>&1
echo "*** LOCALES ***" >> $_LOGFILE 2>&1
dpkg-reconfigure locales >> $_LOGFILE 2>&1
echo "*** CONSOLE ***" >> $_LOGFILE 2>&1
dpkg-reconfigure console-setup >> $_LOGFILE 2>&1
fi
echo "*** USER/PASSWORD ***" >> $_LOGFILE 2>&1
# ** CREATE root password
echo "CREATING root PASSWORD..."
#passwd
echo root:$ROOTPASS | chpasswd
# ** ADD USER
echo "ADDING USER..."
# set default shell to /bin/bash
cat /etc/default/useradd | sed s/"SHELL=\/bin\/sh"/"SHELL=\/bin\/bash"/g > /tmp/useradd
mv /tmp/useradd /etc/default/useradd
useradd -m -s "/bin/bash" $USER >> $_LOGFILE 2>&1
echo $USER:$USERPASS | chpasswd
usermod -c $USER $USER >> $_LOGFILE 2>&1
adduser $USER sudo >> $_LOGFILE 2>&1
if ! [ "${ONLY_BASE}" = "yes" ] ; then
# ** Tricks
do_tricks
# ENABLE SSH ROOT LOOGIN WITH PASSWORD
if [ -f /etc/ssh/sshd_config ]; then
cat /etc/ssh/sshd_config | sed s/"PermitRootLogin without-password"/"PermitRootLogin yes"/g > /tmp/sshd_config
mv /tmp/sshd_config /etc/ssh/sshd_config
fi
#----------------------------------------------------
if [ -f /etc/init.d/udev ]; then
cat /etc/init.d/udev | sed '/^exit 0/d' > /tmp/_udev_
mv /tmp/_udev_ /etc/init.d/udev
echo "exit 0" >> /etc/init.d/udev
chmod +x /etc/init.d/udev
fi
#----------------------------------------------------
killall -KILL ntpd > /dev/null 2>&1
killall -KILL smbd > /dev/null 2>&1
fi
chown -R $USER:$USER /home/$USER
rm /usr/sbin/policy-rc.d
echo ""
echo "Instalation finished."
echo ""
touch /_OK_
exit 0