~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to init/Kconfig

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-3o58a3c1bj7x00rs
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
config CONSTRUCTORS
20
20
        bool
21
21
        depends on !UML
22
 
        default y
23
22
 
24
23
config HAVE_IRQ_WORK
25
24
        bool
211
210
 
212
211
endchoice
213
212
 
 
213
config DEFAULT_HOSTNAME
 
214
        string "Default hostname"
 
215
        default "(none)"
 
216
        help
 
217
          This option determines the default system hostname before userspace
 
218
          calls sethostname(2). The kernel traditionally uses "(none)" here,
 
219
          but you may wish to use a different default here to make a minimal
 
220
          system more usable with less configuration.
 
221
 
214
222
config VERSION_SIGNATURE
215
223
        string "Arbitrary version signature"
216
224
        help
501
509
 
502
510
config RCU_BOOST
503
511
        bool "Enable RCU priority boosting"
504
 
        depends on RT_MUTEXES && TINY_PREEMPT_RCU
 
512
        depends on RT_MUTEXES && PREEMPT_RCU
505
513
        default n
506
514
        help
507
515
          This option boosts the priority of preempted RCU readers that
605
613
 
606
614
          Say N if unsure.
607
615
 
608
 
config CGROUP_NS
609
 
        bool "Namespace cgroup subsystem"
610
 
        help
611
 
          Provides a simple namespace cgroup subsystem to
612
 
          provide hierarchical naming of sets of namespaces,
613
 
          for instance virtual servers and checkpoint/restart
614
 
          jobs.
615
 
 
616
616
config CGROUP_FREEZER
617
617
        bool "Freezer cgroup subsystem"
618
618
        help
919
919
 
920
920
config CC_OPTIMIZE_FOR_SIZE
921
921
        bool "Optimize for size"
922
 
        default y
923
922
        help
924
923
          Enabling this option will pass "-Os" instead of "-O2" to gcc
925
924
          resulting in a smaller kernel.
976
975
        bool "Include all symbols in kallsyms"
977
976
        depends on DEBUG_KERNEL && KALLSYMS
978
977
        help
979
 
           Normally kallsyms only contains the symbols of functions, for nicer
980
 
           OOPS messages.  Some debuggers can use kallsyms for other
981
 
           symbols too: say Y here to include all symbols, if you need them 
982
 
           and you don't care about adding 300k to the size of your kernel.
983
 
 
984
 
           Say N.
985
 
 
986
 
config KALLSYMS_EXTRA_PASS
987
 
        bool "Do an extra kallsyms pass"
988
 
        depends on KALLSYMS
989
 
        help
990
 
           If kallsyms is not working correctly, the build will fail with
991
 
           inconsistent kallsyms data.  If that occurs, log a bug report and
992
 
           turn on KALLSYMS_EXTRA_PASS which should result in a stable build.
993
 
           Always say N here unless you find a bug in kallsyms, which must be
994
 
           reported.  KALLSYMS_EXTRA_PASS is only a temporary workaround while
995
 
           you wait for kallsyms to be fixed.
996
 
 
 
978
           Normally kallsyms only contains the symbols of functions for nicer
 
979
           OOPS messages and backtraces (i.e., symbols from the text and inittext
 
980
           sections). This is sufficient for most cases. And only in very rare
 
981
           cases (e.g., when a debugger is used) all symbols are required (e.g.,
 
982
           names of variables from the data sections, etc).
 
983
 
 
984
           This option makes sure that all symbols are loaded into the kernel
 
985
           image (i.e., symbols from all sections) in cost of increased kernel
 
986
           size (depending on the kernel configuration, it may be 300KiB or
 
987
           something like this).
 
988
 
 
989
           Say N unless you really need all symbols.
997
990
 
998
991
config HOTPLUG
999
992
        bool "Support for hot-pluggable devices" if EXPERT