blob: daff164b88c5df9fa13b40fbf2388d0d60e2da26 (
plain)
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
|
#!/bin/sh
##### vconf create table from settings package #########################
# Set vconf values with -g/-u options
rm -rf /opt/data/setting/set_info
#### Bluetotth API ####################################################
vconftool set -t string db/menu_widget/regionformat "en_GB.UTF-8"
vconftool set -t int db/menu_widget/regionformat_time1224 "1"
vconftool set -t string db/setting/accessibility/font_name "HelveticaNeue"
########################################################################
# PC Specific Environment settings
mkdir -p /opt/share/packages
rm -f /opt/dbspace/.wrt*
if [ -x /usr/bin/wrt-client ]; then
wrt_commons_create_clean_db.sh
wrt_reset_db.sh
fi
pkg_initdb
ail_initdb
##### WA : To allow multi-user launch ##########
chmod -R a+rw /opt/dbspace/
|