]> git.ipfire.org Git - ipfire-2.x.git/blob - src/installer/dracut-module/run-installer.sh
installer: Fix umounting destination
[ipfire-2.x.git] / src / installer / dracut-module / run-installer.sh
1 #!/bin/sh
2 #
3 # IPFire Installer RC
4 #
5
6 # Enable Unicode
7 echo -en '\033%G' && kbd_mode -u
8
9 # Load default console font
10 setfont LatArCyrHeb-16
11
12 # Silence the kernel
13 echo >/proc/sys/kernel/printk "1 4 1 7"
14 echo -n -e "\033[9;0]"
15
16 echo "Starting shells on tty2 and tty3 ..."
17 /usr/local/bin/iowrap /dev/tty2 /bin/bash &
18 /usr/local/bin/iowrap /dev/tty3 /bin/bash &
19
20 echo "Loading Installer..."
21 /bin/bash --login -c "/usr/bin/installer /dev/tty2"
22 ret=$?
23
24 case "${ret}" in
25 0)
26 # The installer has finished without a problem.
27 ;;
28 *)
29 echo "The installer has crashed. You will be dropped to a debugging shell"
30 /bin/bash --login
31 ;;
32 esac
33
34 # Reboot the system
35 /shutdown reboot