OSDN Git Service

Fix how LE connection parameters are set after connecting.
[android-x86/system-bt.git] / README.md
1 # Fluoride Bluetooth stack
2
3 ## Building and running on AOSP
4 Just build AOSP - Fluoride is there by default.
5
6 ## Building and running on Linux
7
8 Instructions for Ubuntu, tested on 15.10 with GCC 5.2.1.
9
10 ### Install required libraries
11
12 ```sh
13 sudo apt-get install libevent-dev
14 ```
15
16 ### Install build tools
17
18   - Install [ninja](https://ninja-build.org/) build system
19
20 ```sh
21 sudo apt-get install ninja-build
22 ```
23
24 or download binary from https://github.com/ninja-build/ninja/releases
25
26   - Install [gn](https://chromium.googlesource.com/chromium/src/tools/gn/) -  meta-build system that generates NinjaBuild files.
27
28 Get sha1 of current version from [here](
29 https://chromium.googlesource.com/chromium/buildtools/+/master/linux64/gn.sha1) and then download corresponding executable:
30
31 ```sh
32 wget -O gn http://storage.googleapis.com/chromium-gn/<gn.sha1>
33 ```
34
35 i.e. if sha1 is "3491f6687bd9f19946035700eb84ce3eed18c5fa" (value from 24 Feb 2016) do
36
37 ```sh
38 wget -O gn http://storage.googleapis.com/chromium-gn/3491f6687bd9f19946035700eb84ce3eed18c5fa
39 ```
40
41 Then make binary executable and put it on your PATH, i.e.:
42
43 ```sh
44 chmod a+x ./gn
45 sudo mv ./gn /usr/bin
46 ```
47
48 ### Download source
49
50 ```sh
51 mkdir ~/fluoride
52 cd ~/fluoride
53 git clone https://android.googlesource.com/platform/system/bt
54 ```
55
56 Then fetch third party dependencies:
57
58 ```sh
59 cd ~/fluoride/bt
60 mkdir third_party
61 cd third_party
62 git clone https://github.com/google/googletest.git
63 git clone https://android.googlesource.com/platform/external/libchrome
64 git clone https://android.googlesource.com/platform/external/modp_b64
65 git clone https://android.googlesource.com/platform/external/tinyxml2
66 git clone https://android.googlesource.com/platform/hardware/libhardware
67 ```
68
69 And third party dependencies of third party dependencies:
70
71 ```sh
72 cd fluoride/bt/third_party/libchrome/base/third_party
73 mkdir valgrind
74 cd valgrind
75 curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/valgrind.h?format=TEXT | base64 -d > valgrind.h
76 curl https://chromium.googlesource.com/chromium/src/base/+/master/third_party/valgrind/memcheck.h?format=TEXT | base64 -d > memcheck.h
77 ```
78
79 ### Generate your build files
80
81 ```sh
82 cd ~/fluoride/bt
83 gn gen out/Default
84 ```
85
86 ### Build
87
88 ```sh
89 cd ~/fluoride/bt
90 ninja -C out/Default all
91 ```
92
93 This will build all targets (the shared library, executables, tests, etc) and put them in out/Default. To build an individual target, replace "all" with the target of your choice, e.g. ```ninja -C out/Default net_test_osi```.
94
95 ### Run
96
97 ```sh
98 cd ~/fluoride/bt/out/Default
99 LD_LIBRARY_PATH=./ ./bluetoothtbd -create-ipc-socket=fluoride
100 ```