forked from nisargjhaveri/WirelessAndroidAutoDongle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable some unused kernel features to speed up boot
- Loading branch information
1 parent
d6ff765
commit b9e145e
Showing
1 changed file
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,14 @@ | ||
# Add f_accessory function for usb gadget | ||
CONFIG_USB_CONFIGFS_UEVENT=y | ||
CONFIG_USB_CONFIGFS_F_ACC=y | ||
CONFIG_USB_CONFIGFS_F_ACC=y | ||
|
||
# Disable bnep in bluetooth | ||
CONFIG_BT_BNEP=n | ||
|
||
# Disable some kernel debugging options | ||
CONFIG_DEBUG_BUGVERBOSE=n | ||
CONFIG_DEBUG_FS=n | ||
CONFIG_KGDB=n | ||
CONFIG_DEBUG_MEMORY_INIT=n | ||
CONFIG_FTRACE=n | ||
CONFIG_SLUB_DEBUG=n |