TIVI-256: virtual keyboard fix
[profile/ivi/image-configurations.git] / custom / scripts / ivi-2.0-symlinks.post
1 # customize the slp-common post script  
2
3 echo 'kickstart post script start'
4
5 # to make udev happy
6 ln -sf /bin/busybox /sbin/blkid
7
8 # where in the world is xinitrc?
9 ln -sf /etc/X11/xinitrc /usr/etc/X11/xinitrc
10
11 # inittab hack to fix console - UI switching
12 sed -ri 's/--noclear tty1/tty3/' /etc/inittab
13 sed -ri 's/tty2/tty4/' /etc/inittab
14
15 # modprobe fuse for sqlfs-mount
16 /bin/sed -i "3i /sbin/modprobe fuse || :" /etc/rc.d/init.d/sqlfs-mount 
17
18 if [ -d /etc/init.d ]; then
19     cp /etc/init.d/* /etc/rc.d/init.d/ -rdf
20 fi
21 rm -rf /etc/init.d*
22 ln -sf /etc/rc.d/init.d /etc/init.d
23
24 rm -rf /etc/localtime  
25 ln -sf /opt/etc/localtime /etc/localtime  
26
27 # Without this line the rpm doesn't get the architecture right.
28 # echo -n 'armv7l-tizen-linux' > /etc/rpm/platform
29 > /etc/rpm/platform
30
31 ssh-keygen -t rsa1 -f /etc/ssh/ssh_host_key -N ""
32 ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N ""
33 ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ""
34
35 pkg_initdb
36
37 INITDB=1 ail_initdb
38 /opt/apps/com.samsung.menu-screen/bin/menuscreen_initdb
39
40 # ims-service domain setting
41 RESULT=`grep "192.168.0.163 config.45001.rcse" /etc/hosts`  
42 if [ -z "$RESULT" ]; then  
43     echo "Set domain for auto configuration"  
44     echo "192.168.0.163 config.45001.rcse" >> /etc/hosts  
45 else  
46     echo "Already setted domain for test auto configuration"  
47 fi  
48 # ims-service domain setting
49
50 cat > /usr/bin/press << EOF
51 #!/bin/sh
52
53 JUNK="SLP"
54
55 [ "\$1" ] && TIMEOUT="\$1" || TIMEOUT="1"
56
57 echo "Press return key to stop scripts"
58 read -t \$TIMEOUT JUNK
59 exit \$?
60 EOF
61 chmod +x /usr/bin/press
62
63 ln -s /opt/etc/X11/xkb /usr/share/X11
64 ln -s /home/app /opt/home/app
65 ln -s /home/developer /opt/home/developer
66
67
68 echo "UDEV_PERSISTENT_STORAGE=no" >> /etc/sysconfig/udev
69
70 rm -rf /usr/share/man
71 rm -rf /usr/share/doc
72
73 ldconfig
74
75 mkdir -p /opt/var/lib/dbus
76
77 rm -f /var/lib/rpm/__db*
78 mv -f /var/lib/rpm /opt/var/lib/ 
79 ln -sf /opt/var/lib/rpm /var/lib/rpm
80 rpmdb --rebuilddb
81
82 if [ -e /usr/bin/build-backup-data.sh ]; then
83            /usr/bin/build-backup-data.sh
84 fi