blob: 7dec9718a8ea9f5eae53df5e830abed40cfcd542 (
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
|
#!/bin/sh
##### vconf create table from settings package #########################
# Set vconf values with -g/-u options
source /etc/tizen-platform.conf
rm -rf ${TZ_SYS_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 ${TZ_SYS_RW_PACKAGES}
rm -f ${TZ_SYS_DB}/.wrt*
pkg_initdb
ail_initdb
##### WA : To allow multi-user launch ##########
chmod -R a+rw ${TZ_SYS_DB}/
|