meta data for this page
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| linux:bluetooth:kernel [2018/09/18 12:12] – created niziak | linux:bluetooth:kernel [2018/09/19 11:18] (current) – niziak | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | <code bash> | ||
| mount -t debugfs none / | mount -t debugfs none / | ||
| + | </ | ||
| + | |||
| + | <code bash> | ||
| + | echo "file net/ | ||
| + | </ | ||
| + | |||
| + | ====== Enable pr_debug ====== | ||
| + | |||
| + | <file | linux-4.18.6/ | ||
| + | CFLAGS += -DDEBUG=1 | ||
| + | </ | ||
| + | |||
| + | <code bash> | ||
| + | cp / | ||
| + | cp / | ||
| + | |||
| + | make oldconfig | ||
| + | |||
| + | #make EXTRAVERSION=-my modules_prepare | ||
| + | make modules_prepare | ||
| + | make M=net/ | ||
| + | |||
| + | sudo cp net/ | ||
| + | |||
| + | depmod -a | ||
| + | sudo rmmod btusb btrtl btintel btbcm bnep btusb bluetooth | ||
| + | |||
| + | modinfo bluetooth | ||
| + | filename: | ||
| + | ... | ||
| + | |||
| + | sudo modprobe bluetooth | ||
| + | |||
| + | </ | ||
| + | |||