Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openwrt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Freifunk Luebeck
openwrt
Commits
f7033929
Commit
f7033929
authored
15 years ago
by
Gabor Juhos
Browse files
Options
Downloads
Patches
Plain Diff
add menuconfig option for enabling debugfs support in the kernel
SVN-Revision: 17540
parent
04f8c529
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Config.in
+10
-0
10 additions, 0 deletions
Config.in
include/kernel-defaults.mk
+1
-0
1 addition, 0 deletions
include/kernel-defaults.mk
with
11 additions
and
0 deletions
Config.in
+
10
−
0
View file @
f7033929
...
...
@@ -195,6 +195,7 @@ config KERNEL_KALLSYMS
default n
help
This will give you more information in stack traces from kernel oopses
config KERNEL_PROFILING
bool "Compile the kernel with profiling enabled"
default n
...
...
@@ -202,6 +203,15 @@ config KERNEL_PROFILING
Enable the extended profiling support mechanisms used by profilers such
as OProfile.
config KERNEL_DEBUG_FS
bool "Compile the kernel with Debug Filesystem enabled"
depends LINUX_2_6
default y
help
debugfs is a virtual file system that kernel developers use to put
debugging files into. Enable this option to be able to read and
write to these files.
endmenu
menuconfig DEVEL
...
...
This diff is collapsed.
Click to expand it.
include/kernel-defaults.mk
+
1
−
0
View file @
f7033929
...
...
@@ -97,6 +97,7 @@ define Kernel/Configure/Default
$(LINUX_CONFCMD)
>
$(LINUX_DIR)/.config.target
echo
"$(if $(CONFIG_KERNEL_KALLSYMS),CONFIG_KALLSYMS=y,# CONFIG_KALLSYMS is not set)"
>>
$(LINUX_DIR)/.config.target
echo
"$(if $(CONFIG_KERNEL_PROFILING),CONFIG_PROFILING=y,# CONFIG_PROFILING is not set)"
>>
$(LINUX_DIR)/.config.target
echo
"$(if $(CONFIG_KERNEL_DEBUG_FS),CONFIG_DEBUG_FS=y,# CONFIG_DEBUG_FS is not set)"
>>
$(LINUX_DIR)/.config.target
echo
"# CONFIG_KALLSYMS_EXTRA_PASS is not set"
>>
$(LINUX_DIR)/.config.target
echo
"# CONFIG_KALLSYMS_ALL is not set"
>>
$(LINUX_DIR)/.config.target
echo
"# CONFIG_KPROBES is not set"
>>
$(LINUX_DIR)/.config.target
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment