OSDN Git Service

monitor/avdtp: Decode AVDTP_CLOSE
[android-x86/external-bluetooth-bluez.git] / HACKING
1 Hacking on BlueZ
2 ****************
3
4 Build tools requirements
5 ========================
6
7 When building and testing directly from the repository it is important to
8 have at least automake version 1.10 or later installed. All modern
9 distributions should default to the latest version, but it seems that
10 Debian's default is still an earlier version:
11
12   Check version
13     # dpkg -l '*automake*'
14
15   Install new version
16     # apt-get install automake1.10
17     # update-alternatives --config automake
18
19
20 Working with the source code repository
21 =======================================
22
23 The repository contains two extra scripts that accomplish the bootstrap
24 process. One is called "bootstrap" which is the basic scripts that uses the
25 autotools scripts to create the needed files for building and installing.
26 It makes sure to call the right programs depending on the usage of shared or
27 static libraries or translations etc.
28
29 The second program is called "bootstrap-configure". This program will make
30 sure to properly clean the repository, call the "bootstrap" script and then
31 call configure with proper settings for development. It will use the best
32 options and pass them over to configure. These options normally include
33 the enabling the maintainer mode and the debugging features.
34
35 So while in a normal source project the call "./configure ..." is used to
36 configure the project with its settings like prefix and extra options. In
37 case of bare repositories call "./bootstrap-configure" and it will bootstrap
38 the repository and calls configure with all the correct options to make
39 development easier.
40
41 In case of preparing for a release with "make distcheck", don't use
42 bootstrap-configure since it could export development specific settings.
43
44 So the normal steps to checkout, build and install such a repository is
45 like this:
46
47   Checkout repository
48     # git clone git://git.kernel.org/pub/scm/bluetooth/bluez.git
49     # cd bluez
50
51   Configure and build
52     # ./bootstrap-configure
53     # make
54
55   Configure and build with cgcc (Sparse)
56     # ./bootstrap-configure CC=cgcc
57     # make
58
59   Run unit tests
60     # make check
61
62   Check installation
63     # make install DESTDIR=$PWD/x
64     # find x
65     # rm -rf x
66
67   Check distribution
68     # make distcheck
69
70   Final installation
71     # sudo make install
72
73   Remove autogenerated files
74     # make maintainer-clean
75
76
77 Running from within the source code repository
78 ==============================================
79
80 When using "./configure --enable-maintainer-mode" the automake scripts will
81 use the plugins directly from within the repository. This removes the need
82 to use "make install" when testing "bluetoothd". The "bootstrap-configure"
83 automatically includes this option.
84
85   Copy configuration file which specifies the required security policies
86     # sudo cp ./src/bluetooth.conf /etc/dbus-1/system.d/
87
88   Run daemon in foreground with debugging
89     # sudo ./src/bluetoothd -n -d
90
91   Run daemon with valgrind
92    # sudo valgrind --trace-children=yes --track-origins=yes --track-fds=yes
93    --show-possibly-lost=no --leak-check=full ./src/bluetoothd -n -d
94
95 For production installations or distribution packaging it is important that
96 the "--enable-maintainer-mode" option is NOT used.
97
98 Note multiple arguments to -d can be specified, colon, comma or space
99 separated. The arguments are relative source code filenames for which
100 debugging output should be enabled; output shell-style globs are
101 accepted (e.g.: 'plugins/*:src/main.c').
102
103 Submitting patches
104 ==================
105
106 If you fixed a bug or you want to add support for something, patches are
107 welcome! In order to ease the inclusion of your patch, it's important to follow
108 some rules, otherwise it will likely be rejected by maintainers.
109
110 BlueZ rules for submitting patches follow most of the rules used by Linux kernel
111 (https://www.kernel.org/doc/Documentation/SubmittingPatches) with some remarks:
112
113 1) Do *not* add "Signed-off-by" lines in your commit messages. BlueZ does not
114 use them, so including them is actually an error.
115
116 2) Be sure to follow the coding style rules of BlueZ. They are listed in
117 doc/coding-style.txt.
118
119 3) Split your patch according to the top-level directories. E.g.: if you added
120 a feature that touches files under 'include/', 'src/' and 'drivers/'
121 directories, split in three separated patches, taking care not to
122 break compilation.
123
124 4) Bug fixes should be sent first as they take priority over new features.
125
126 5) The commit message should follow 50/72 formatting which means the header
127 should be limited to 50 characters and the description should be wrapped at 72
128 characters except if it contains quoted information from debug tools like
129 backtraces, compiler errors, etc.