Name Date Size #Lines LOC

..--

Documentation/H25-Apr-2025-9,1917,592

LICENSES/H25-Apr-2025-864718

include/H25-Apr-2025-780594

samples/H25-Apr-2025-7642

scripts/H25-Apr-2025-235188

src/H25-Apr-2025-16,03510,608

utest/H25-Apr-2025-2,5372,084

.gitignoreH A D25-Apr-2025116 1615

Android.bpH A D25-Apr-20251.3 KiB7056

LICENSEH A D25-Apr-202577.6 KiB1,5041,244

METADATAH A D25-Apr-2025596 2018

MODULE_LICENSE_GPLHD25-Apr-20250

MakefileH A D25-Apr-202511.1 KiB398276

OWNERSH A D25-Apr-202543 32

READMEH A D25-Apr-20251.5 KiB5731

check-manpages.shH A D25-Apr-20251.5 KiB6245

libtracefs.pc.templateH A D25-Apr-2025334 1210

test.cH A D25-Apr-202572 86

README

1
2The official repository is here:
3
4  https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/
5
6This repository requires libtraceevent to be installed:
7
8  https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
9
10
11To build:
12
13    make;
14    sudo make install;
15
16To build in a specific directory outside of the source directory:
17
18    make O=/path/to/build; sudo make O=/path/to/build
19
20  Note that the path needs to exist before building.
21
22To set the install path (the expected final location):
23
24    make prefix=/usr; sudo make O=/path/to/build
25
26To install in a directory not for the local system (for use to move
27to another machine):
28
29    make DESTDIR=/path/to/dest/ install
30
31  Note, if you have write permission to the DESTDIR, then there is
32  no reason to use sudo or switch to root.
33
34  Note, DESTDIR must end with '/', otherwise the files will be appended
35  to the path, which will most likely have unwanted results.
36
37Contributions:
38
39  For questions about the use of the library, please send email to:
40
41    [email protected]
42
43    Subscribe: http://vger.kernel.org/vger-lists.html#linux-trace-users
44    Archives: https://lore.kernel.org/linux-trace-users/
45
46  For contributions to development, please send patches to:
47
48    [email protected]
49
50    Subscribe: http://vger.kernel.org/vger-lists.html#linux-trace-devel
51    Archives: https://lore.kernel.org/linux-trace-devel/
52
53  Note, this project follows the style of submitting patches as described
54  by the Linux kernel.
55
56     https://www.kernel.org/doc/html/v5.4/process/submitting-patches.html
57