-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathjhi.conf
67 lines (67 loc) · 1.26 KB
/
jhi.conf
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#
# jhi.conf
#
#
#
# Transport type
#
# How to connect to DAL firmware
#
# AUTO - Choose between MEI and KERNEL automatically
# MEI - The most common. Use /dev/mei directly.
# SOCKET - Connect through an IP socket (for development purposes)
# KERNEL - Connect through the DAL kernel module (mei_dal). Uses /dev/dal{0,1,2}
#
# AUTO is the default.
#
# Uncomment one of the following:
#
transport AUTO
#transport MEI
#transport SOCKET
#transport KERNEL
#
#
#
# Firmware emulation IP address
#
# 127.0.0.1 is the default
#
# When using SOCKET, connect to this IP address:
#
#socket_ip_address 127.0.0.1
socket_ip_address 192.168.56.1
#
#
#
# Log level
#
# OFF - No prints
# RELEASE - Recommended for general use
# DEBUG - When something goes wrong enable this to see why
#
#log_level OFF
#log_level RELEASE
log_level DEBUG
#
#
#
# Daemon socket path
#
# Location for the Unix domain socket the daemon creates for user
# applications to connect to.
#
# /tmp/jhi_socket is the default
#
socket_path /var/run/jhi_socket
#socket_path /tmp/jhi_socket
#
#
# Applets location on the filesystem
#
# applets_dir can be read only.
# app_repo_dir needs to be writeable by the daemon.
#
#applets_dir /var/lib/intel/dal/applets
#app_repo_dir /var/lib/intel/dal/applet_repository
#