firs-run-wizard: Fixed: Spaces in hotnames (now will be replaced with
[openpandora.oe.git] / recipes / pandora-system / pandora-first-run-wizard / first-run-wizard.sh
1 #!/bin/sh
2
3 # Initially based on the scripts by JohnX/Mer Project - http://wiki.maemo.org/Mer/
4 # Reworked for the OpenPandora - John Willis/Michael Mrozek
5
6 # You can start the wizard from the shell using 'xinit ./first-boot-init.sh'
7
8 export LANG=en_GB.UTF-8
9 export GTK2_RC_FILES=/usr/share/themes/Xfce/gtk-2.0/gtkrc
10 xmodmap /etc/skel/.pndXmodmap
11
12 # Ensure there is a wheel group for sudoers to be put into.
13 # TODO: Do this somewhere better.
14 groupadd wheel
15
16 # We load up a background image here.
17 export WALLPAPER='/usr/share/xfce4/backdrops/op-firstrun.png'
18 hsetroot -center $WALLPAPER
19
20 # Default error message (should a user hit cancel, validation fail etc.).
21 ERROR_WINDOW='zenity --title="Error" --error --text="Sorry! Please try again." --timeout 6'
22
23 RESET_ROOT="yes"
24
25 # Greet the user.
26
27 if zenity --question --title="Pandoras Box has been opened." --text="Welcome!\n\nPandora's Box has been opened.\n\nThis wizard will help you setting up your new OpenPandora handheld before the first use.\n\nYou will be asked a few simple questions to personalise and configure your device.\n\nDo you want to set up your unit now or shut the unit down and do it later?" --ok-label="Start now" --cancel-label="Shutdown" ; then
28 # ----
29
30 # Reset ROOT's password to something random 
31
32 # (I know the image build sets the password to something pusdo-random)
33 # (ok, urandom is not 100% secure but it's good enough for our needs)
34
35 if [ $RESET_ROOT == "yes" ]; then
36         rootpwd=$(cat /dev/urandom|tr -dc "a-zA-Z0-9-_\$\?"|fold -w 30|head -n 1)
37 passwd "root" <<EOF
38 $rootpwd
39 $rootpwd
40 EOF
41         rootpwd=""
42 fi
43
44 # ----
45
46 # Ask the user to calibrate the touchscreen.
47
48 #if zenity --question --title="Touchscreen calibration" --text="It is recommended to calibrate and test the device touchscreen.\n\nDo you wish to calibrate the touchscreen now?" --ok-label="Yes" --cancel-label="No"; then 
49 #       # Make sure we have a sane environment as this script will be run long before any /etc/profile stuff.
50 #       . /etc/profile.d/tslib.sh
51 #       # Delete the pointercal file (do we want to do that?)
52 #       # rm /etc/pointercal
53 #       # Spawn the ts_* tools as subprocesses that will return to the script.
54 #       echo Running ts_calibrate       
55 #       /usr/bin/ts_calibrate
56 #       wait
57 #       echo Running ts_test
58 #       /usr/bin/ts_test
59 #       wait
60 #fi
61
62 # ----
63
64 # Setup swap partition if the user has placed an SD with a swap partition on it.
65
66 #swap_part=$(sfdisk -l /dev/mmcblk? | grep swap | cut -d" " -f1)
67 #if [ x$swap_part != x ] ; then
68 #       use_swap=$(zenity --title="Enable swap?" --text "Swap partition found on SD card. Would you like to use it?\n\nWarning: This SD must remain in the system to use the swap." --list --radiolist --column " " --column "Answer" TRUE "Use swap on $swap_part" FALSE "Do not use swap")
69 #       if [ "$use_swap" = "Use swap on $swap_part" ] ; then
70 #               swapon $swap_part
71 #                       echo "$swap_part none swap sw 0 0" >> /etc/fstab
72 #       fi
73 #fi
74
75 # ----
76
77 # Setup the full name and username.
78
79 while ! name=$(zenity --title="Please enter your full name" --entry --text "Please enter your full name.") || [ "x$name" = "x" ] ; do
80         zenity --title="Error" --error --text="Please try again." --timeout 6
81 done
82
83 username_guess=$(echo "$name" | cut -d" " -f1 | tr A-Z a-z)
84
85 while ! username=$(zenity --title="Enter your username" --entry --text "Please choose a short username.\n\nIt should be all lowercase and contain only letters and numbers." --entry-text "$username_guess") || [ "x$username" = "x" ] ; do
86         zenity --title="Error" --error --text="Please try again." --timeout 6
87 done
88
89 while ! useradd -c "$name,,," -G adm,audio,video,netdev,wheel,plugdev,users "$username" ; do
90         username=$(zenity --title="Please check username" --entry --text "Please ensure that your username consists of only\nletters and numbers and is not already in use on the system." --entry-text "$username")
91 done
92
93 # ----
94
95 # Setup the users password.
96
97 password=""
98 while [ x$password = x ] ; do
99         password1=$(zenity --title=Password --entry --text="Please choose a new password." --hide-text)
100         password2=$(zenity --title=Confirm --entry --text="Confirm your new password." --hide-text)
101         if [ $password1 != $password2 ] ; then 
102                 zenity --title="Error" --error --text="The passwords do not match.\n\nPlease try again." --timeout 6
103         else 
104                 if [ x$password1 = x ] ; then
105                         zenity --title="Error" --error --text="Password cannot be blank!\n\nPlease try again." --timeout 6
106                 else
107                         password=$password1
108                 fi
109         fi
110 done
111
112 passwd "$username" <<EOF
113 $password
114 $password
115 EOF
116
117 # ----
118
119 # Pick a name for the OpenPandora.
120
121 while ! hostname=$(zenity --title="Name your Pandora" --entry --text "Please choose a name for your OpenPandora.\n\nIt should only contain letters, numbers and dashes, no spaces." --entry-text "$username-openpandora") || [ "x$hostname" = "x" ]; do 
122         zenity --title="Error" --error --text="Please try again."
123 done
124
125
126 echo $hostname > /etc/hostname
127 sed 's/ /_/g' /etc/hostname
128 echo "127.0.0.1 localhost.localdomain localhost $hostname" > /etc/hosts
129 hostname -F /etc/hostname
130
131 # Set the correct user for Autologin and enable / disable it.
132
133 if zenity --question --title="Autologin" --text="Do you wish to automatically login at startup?\n\nSecurity warning: This skips the password check on startup" --ok-label="Yes" --cancel-label="No"; then       
134         # echo "PREFERED_USER=$username" > /etc/default/autologin
135         sed -i "s/.*default_user.*/default_user $username/g" /etc/slim.conf
136         sed -i 's/.*auto_login.*/auto_login yes/g' /etc/slim.conf
137 else
138         if zenity --question --title="User" --text="Do you wish to have your username automatically populated in the login screen?\n\nNote: This is ideal if you're the only user of the OpenPandora but wish to disable autologin and use a password." --ok-label="Yes" --cancel-label="No"; then 
139                 sed -i "s/.*default_user.*/default_user $username/g" /etc/slim.conf
140                 sed -i 's/.*auto_login.*/auto_login no/g' /etc/slim.conf
141         else
142                 sed -i "s/.*default_user.*/default_user/g" /etc/slim.conf
143                 sed -i 's/.*auto_login.*/auto_login no/g' /etc/slim.conf
144         fi
145 fi
146
147 # ----
148
149 # Select the default interface and setup SLiM to pass that as a sesion to ~./.xinitrc
150
151 while ! selection=$(cat /etc/pandora/conf/gui.conf | awk -F\; '{print $1 "\n" $2 }' | zenity --width=500 --height=300 --title="Select the Default GUI" --list --column "Name" --column "Description" --text "Please select the Default GUI" ); do
152   zenity --title="Error" --error --text="Please select a GUI." --timeout=6
153 done
154
155 echo $selection
156
157 gui=$(grep $selection /etc/pandora/conf/gui.conf | awk -F\; '{print $3}')
158 stopcommand=$(grep $selection /etc/pandora/conf/gui.conf | awk -F\; '{print $4}')
159
160 echo $gui
161
162 if [ $gui ]; then 
163   sed -i "s/.*DEFAULT_SESSION=.*/DEFAULT_SESSION=$gui/g" /home/$username/.xinitrc
164   echo $selection selected as default interface
165   zenity --info --title="Selected session" --text "You selected $selection as default setting. You can always change your default GUI later." --timeout 6
166 else
167   sed -i 's/.*DEFAULT_SESSION=.*/DEFAULT_SESSION=startxfce4/g' /home/$username/.xinitrc
168 fi
169
170 # ----
171
172 # Set the timezone and date/time
173
174 while ! timezone=$(zenity --list --title "Select your timezone" --text="Please select your timezone" --column="Select your timezone" --print-column=1 "GMT (London, Lisbon, Portugal, Casablanca, Morocco)" "GMT+1 (Paris, Berlin, Amsterdam, Bern, Stockholm)" "GMT+2 (Athens, Helsinki, Istanbul)" "GMT+3 (Kuwait, Nairobi, Riyadh, Moscow)" "GMT+4 (Abu Dhabi, Iraq, Muscat, Kabul)" "GMT+5 (Calcutta, Colombo, Islamabad, Madras, New Delhi)" "GMT+6 (Almaty, Dhakar, Kathmandu)" "GMT+7 (Bangkok, Hanoi, Jakarta)" "GMT+8 (Beijing, Hong Kong, Kuala Lumpar, Singapore, Taipei)" "GMT+9 (Osaka, Seoul, Sapporo, Tokyo, Yakutsk)" "GMT+10 (Brisbane, Melbourne, Sydney, Vladivostok)" "GMT+11 (Magadan, New Caledonia, Solomon Is)" "GMT+12 (Auckland, Fiji, Kamchatka, Marshall Is., Wellington, Suva)" "GMT-1 (Azores, Cape Verde Is.)" "GMT-2 (Mid-Atlantic)" "GMT-3 (Brasilia, Buenos Aires, Georgetown)" "GMT-4 (Atlantic Time, Caracas)" "GMT-5 (Bogota, Lima, New York)" "GMT-6 (Mexico City, Saskatchewan, Chicago, Guatamala)" "GMT-7 (Denver, Edmonton, Mountain Time, Phoenix, Salt Lake City)" "GMT-8 (Anchorage, Los Angeles, San Francisco, Seattle)" "GMT-9 (Alaska)" "GMT-10 (Hawaii, Honolulu)" "GMT-11 (Midway Island, Samoa)" "GMT-12 (Eniwetok, Kwaialein)" "UTC" "Universal" --width=500 --height=450) || [ "x$timezone" = "x" ] ; do
175         zenity --title="Error" --error --text="Please select a timezone." --timeout=6
176 done
177 timezone=`echo $timezone | sed  's/(.*)//g'`
178 echo $timezone
179 echo rm /etc/localtime && ln -s /usr/share/zoneinfo/Etc/$timezone /etc/localtime
180
181 #Make sure we clean up any leading zeros in the day (as Zenity freaks out)
182 date_d=`date +%d | sed 's/^0//'`
183 date_m=`date +%m`
184 date_y=`date +%Y`
185
186 while ! date=$(zenity --calendar --text="Please select the current date" --title "Please select the current date" --day=$date_d --month=$date_m --year=$date_y --date-format="%Y%m%d" --width=500) || [ "x$date" = "x" ] ; do
187         zenity --title="Error" --error --text="Please select the date." --timeout 6
188 done
189
190 echo $date
191
192 time_h=`date +%H`
193 time_m=`date +%M`
194
195 while ! time=$(zenity --title="Enter actual time" --entry --text "Please enter the time in 24hour format (HH:MM):" --entry-text "$time_h:$time_m") || [ "x$time" = "x" ] ; do
196         zenity --title="Error" --error --text="Please input the time." --timeout 6
197 done
198
199 while ! date -d $time ; do
200         time=$(zenity --title="Enter actual time" --entry --text "Please enter the time in 24hour format (HH:MM):" --entry-text "$time_h:$time_m")
201 done
202  
203 date +%Y%m%d -s $date
204 date +%H:%M -s $time
205
206 # ----
207
208 # Finsh up and boot the system.
209
210 zenity --info --title="Finished" --text "This concludes the First Boot Wizard.\n\nYour chosen interface will start in a few seconds\n\nThankyou for buying the OpenPandora. Enjoy using the device!" --timeout 6
211
212 # ----
213
214 # NOTE: This is just a temporary fix! These daemons should be removed from startup in the OE recipes. Until the time is found, we'll do it from here.
215 update-rc.d -f samba remove
216 update-rc.d -f xinetd
217 update-rc.d -f avahi-daemon
218 update-rc.d -f apmd
219 update-rc.d -f usb-gadget
220 update-rc.d -f banner
221 update-rc.d -f portmap
222 update-rc.d -f mountnfs
223 update-rc.d -f blueprobe
224 update-rc.d -f dropbear
225 update-rc.d -f wl1251-init
226
227
228 # Write the control file so this script is not run on next boot 
229 # (hackish I know but I want the flexability to drop a new script in later esp. in the early firmwares).
230
231 touch /etc/pandora/first-boot
232 # Make the control file writeable by all to allow the user to delete to rerun the wizard on next boot.
233 chmod 0666 /etc/pandora/first-boot
234
235 # ----
236 else
237 poweroff
238 fi