123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211 |
- #
- # Automatically generated make config: don't edit
- # Linux kernel version: 2.6.33-rc2
- # Mon Jan 4 13:41:09 2010
- #
- CONFIG_MIPS=y
- #
- # Machine selection
- #
- # CONFIG_MACH_ALCHEMY is not set
- # CONFIG_AR7 is not set
- # CONFIG_BCM47XX is not set
- # CONFIG_BCM63XX is not set
- # CONFIG_MIPS_COBALT is not set
- # CONFIG_MACH_DECSTATION is not set
- # CONFIG_MACH_JAZZ is not set
- # CONFIG_LASAT is not set
- CONFIG_MACH_LOONGSON=y
- # CONFIG_MIPS_MALTA is not set
- # CONFIG_MIPS_SIM is not set
- # CONFIG_NEC_MARKEINS is not set
- # CONFIG_MACH_VR41XX is not set
- # CONFIG_NXP_STB220 is not set
- # CONFIG_NXP_STB225 is not set
- # CONFIG_PNX8550_JBS is not set
- # CONFIG_PNX8550_STB810 is not set
- # CONFIG_PMC_MSP is not set
- # CONFIG_PMC_YOSEMITE is not set
- # CONFIG_POWERTV is not set
- # CONFIG_SGI_IP22 is not set
- # CONFIG_SGI_IP27 is not set
- # CONFIG_SGI_IP28 is not set
- # CONFIG_SGI_IP32 is not set
- # CONFIG_SIBYTE_CRHINE is not set
- # CONFIG_SIBYTE_CARMEL is not set
- # CONFIG_SIBYTE_CRHONE is not set
- # CONFIG_SIBYTE_RHONE is not set
- # CONFIG_SIBYTE_SWARM is not set
- # CONFIG_SIBYTE_LITTLESUR is not set
- # CONFIG_SIBYTE_SENTOSA is not set
- # CONFIG_SIBYTE_BIGSUR is not set
- # CONFIG_SNI_RM is not set
- # CONFIG_MACH_TX39XX is not set
- # CONFIG_MACH_TX49XX is not set
- # CONFIG_MIKROTIK_RB532 is not set
- # CONFIG_WR_PPMC is not set
- # CONFIG_CAVIUM_OCTEON_SIMULATOR is not set
- # CONFIG_CAVIUM_OCTEON_REFERENCE_BOARD is not set
- # CONFIG_ALCHEMY_GPIO_INDIRECT is not set
- CONFIG_ARCH_SPARSEMEM_ENABLE=y
- # CONFIG_LEMOTE_FULOONG2E is not set
- CONFIG_LEMOTE_MACH2F=y
- CONFIG_CS5536=y
- CONFIG_CS5536_MFGPT=y
- CONFIG_LOONGSON_SUSPEND=y
- CONFIG_LOONGSON_UART_BASE=y
- CONFIG_RWSEM_GENERIC_SPINLOCK=y
- # CONFIG_ARCH_HAS_ILOG2_U32 is not set
- # CONFIG_ARCH_HAS_ILOG2_U64 is not set
- CONFIG_ARCH_SUPPORTS_OPROFILE=y
- CONFIG_GENERIC_FIND_NEXT_BIT=y
- CONFIG_GENERIC_HWEIGHT=y
- CONFIG_GENERIC_CALIBRATE_DELAY=y
- CONFIG_GENERIC_CLOCKEVENTS=y
- CONFIG_GENERIC_TIME=y
- CONFIG_GENERIC_CMOS_UPDATE=y
- CONFIG_SCHED_OMIT_FRAME_POINTER=y
- CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
- CONFIG_DMA_NONCOHERENT=y
- CONFIG_DMA_NEED_PCI_MAP_STATE=y
- CONFIG_SYS_HAS_EARLY_PRINTK=y
- CONFIG_I8259=y
- # CONFIG_NO_IOPORT is not set
- CONFIG_GENERIC_ISA_DMA=y
- CONFIG_GENERIC_ISA_DMA_SUPPORT_BROKEN=y
- # CONFIG_CPU_BIG_ENDIAN is not set
- CONFIG_CPU_LITTLE_ENDIAN=y
- CONFIG_SYS_SUPPORTS_LITTLE_ENDIAN=y
- CONFIG_IRQ_CPU=y
- CONFIG_BOOT_ELF32=y
- CONFIG_MIPS_L1_CACHE_SHIFT=5
- #
- # CPU selection
- #
- # CONFIG_CPU_LOONGSON2E is not set
- CONFIG_CPU_LOONGSON2F=y
- # CONFIG_CPU_MIPS32_R1 is not set
- # CONFIG_CPU_MIPS32_R2 is not set
- # CONFIG_CPU_MIPS64_R1 is not set
- # CONFIG_CPU_MIPS64_R2 is not set
- # CONFIG_CPU_R3000 is not set
- # CONFIG_CPU_TX39XX is not set
- # CONFIG_CPU_VR41XX is not set
- # CONFIG_CPU_R4300 is not set
- # CONFIG_CPU_R4X00 is not set
- # CONFIG_CPU_TX49XX is not set
- # CONFIG_CPU_R5000 is not set
- # CONFIG_CPU_R5432 is not set
- # CONFIG_CPU_R5500 is not set
- # CONFIG_CPU_R6000 is not set
- # CONFIG_CPU_NEVADA is not set
- # CONFIG_CPU_R8000 is not set
- # CONFIG_CPU_R10000 is not set
- # CONFIG_CPU_RM7000 is not set
- # CONFIG_CPU_RM9000 is not set
- # CONFIG_CPU_SB1 is not set
- # CONFIG_CPU_CAVIUM_OCTEON is not set
- CONFIG_SYS_SUPPORTS_ZBOOT=y
- CONFIG_CPU_LOONGSON2=y
- CONFIG_SYS_HAS_CPU_LOONGSON2F=y
- CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y
- CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y
- CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y
- CONFIG_CPU_SUPPORTS_64BIT_KERNEL=y
- CONFIG_CPU_SUPPORTS_CPUFREQ=y
- CONFIG_CPU_SUPPORTS_ADDRWINCFG=y
- CONFIG_CPU_SUPPORTS_UNCACHED_ACCELERATED=y
- #
- # Kernel type
- #
- # CONFIG_32BIT is not set
- CONFIG_64BIT=y
- # CONFIG_PAGE_SIZE_4KB is not set
- # CONFIG_PAGE_SIZE_8KB is not set
- CONFIG_PAGE_SIZE_16KB=y
- # CONFIG_PAGE_SIZE_32KB is not set
- # CONFIG_PAGE_SIZE_64KB is not set
- CONFIG_BOARD_SCACHE=y
- CONFIG_MIPS_MT_DISABLED=y
- # CONFIG_MIPS_MT_SMP is not set
- # CONFIG_MIPS_MT_SMTC is not set
- CONFIG_CPU_HAS_WB=y
- CONFIG_CPU_HAS_SYNC=y
- CONFIG_GENERIC_HARDIRQS=y
- CONFIG_GENERIC_IRQ_PROBE=y
- CONFIG_CPU_SUPPORTS_HIGHMEM=y
- CONFIG_SYS_SUPPORTS_HIGHMEM=y
- CONFIG_ARCH_POPULATES_NODE_MAP=y
- CONFIG_SELECT_MEMORY_MODEL=y
- # CONFIG_FLATMEM_MANUAL is not set
- # CONFIG_DISCONTIGMEM_MANUAL is not set
- CONFIG_SPARSEMEM_MANUAL=y
- CONFIG_SPARSEMEM=y
- CONFIG_HAVE_MEMORY_PRESENT=y
- CONFIG_SPARSEMEM_STATIC=y
- CONFIG_PAGEFLAGS_EXTENDED=y
- CONFIG_SPLIT_PTLOCK_CPUS=4
- CONFIG_PHYS_ADDR_T_64BIT=y
- CONFIG_ZONE_DMA_FLAG=0
- CONFIG_VIRT_TO_BUS=y
- # CONFIG_KSM is not set
- CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
- CONFIG_TICK_ONESHOT=y
- CONFIG_NO_HZ=y
- CONFIG_HIGH_RES_TIMERS=y
- CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
- # CONFIG_HZ_48 is not set
- # CONFIG_HZ_100 is not set
- # CONFIG_HZ_128 is not set
- CONFIG_HZ_250=y
- # CONFIG_HZ_256 is not set
- # CONFIG_HZ_1000 is not set
- # CONFIG_HZ_1024 is not set
- CONFIG_SYS_SUPPORTS_ARBIT_HZ=y
- CONFIG_HZ=250
- # CONFIG_PREEMPT_NONE is not set
- # CONFIG_PREEMPT_VOLUNTARY is not set
- CONFIG_PREEMPT=y
- CONFIG_KEXEC=y
- # CONFIG_SECCOMP is not set
- CONFIG_LOCKDEP_SUPPORT=y
- CONFIG_STACKTRACE_SUPPORT=y
- CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
- CONFIG_CONSTRUCTORS=y
- #
- # General setup
- #
- CONFIG_EXPERIMENTAL=y
- CONFIG_BROKEN_ON_SMP=y
- CONFIG_LOCK_KERNEL=y
- CONFIG_INIT_ENV_ARG_LIMIT=32
- CONFIG_LOCALVERSION=""
- # CONFIG_LOCALVERSION_AUTO is not set
- CONFIG_HAVE_KERNEL_GZIP=y
- CONFIG_HAVE_KERNEL_BZIP2=y
- CONFIG_HAVE_KERNEL_LZMA=y
- CONFIG_KERNEL_GZIP=y
- # CONFIG_KERNEL_BZIP2 is not set
- # CONFIG_KERNEL_LZMA is not set
- CONFIG_SWAP=y
- CONFIG_SYSVIPC=y
- CONFIG_SYSVIPC_SYSCTL=y
- # CONFIG_POSIX_MQUEUE is not set
- CONFIG_BSD_PROCESS_ACCT=y
- CONFIG_BSD_PROCESS_ACCT_V3=y
- # CONFIG_TASKSTATS is not set
- CONFIG_AUDIT=y
- #
- # RCU Subsystem
- #
- CONFIG_TREE_RCU=y
- # CONFIG_TREE_PREEMPT_RCU is not set
- # CONFIG_TINY_RCU is not set
- # CONFIG_RCU_TRACE is not set
- CONFIG_RCU_FANOUT=64
- # CONFIG_RCU_FANOUT_EXACT is not set
- # CONFIG_TREE_RCU_TRACE is not set
- CONFIG_IKCONFIG=y
- CONFIG_IKCONFIG_PROC=y
- CONFIG_LOG_BUF_SHIFT=15
- # CONFIG_GROUP_SCHED is not set
- # CONFIG_CGROUPS is not set
- CONFIG_SYSFS_DEPRECATED=y
- CONFIG_SYSFS_DEPRECATED_V2=y
- # CONFIG_RELAY is not set
- # CONFIG_NAMESPACES is not set
- CONFIG_BLK_DEV_INITRD=y
- CONFIG_INITRAMFS_SOURCE=""
- CONFIG_RD_GZIP=y
- CONFIG_RD_BZIP2=y
- CONFIG_RD_LZMA=y
- # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
- CONFIG_SYSCTL=y
- CONFIG_ANON_INODES=y
- CONFIG_EMBEDDED=y
- CONFIG_SYSCTL_SYSCALL=y
- CONFIG_KALLSYMS=y
- # CONFIG_KALLSYMS_EXTRA_PASS is not set
- CONFIG_HOTPLUG=y
- CONFIG_PRINTK=y
- CONFIG_BUG=y
- CONFIG_ELF_CORE=y
- CONFIG_PCSPKR_PLATFORM=y
- CONFIG_BASE_FULL=y
- CONFIG_FUTEX=y
- CONFIG_EPOLL=y
- CONFIG_SIGNALFD=y
- CONFIG_TIMERFD=y
- CONFIG_EVENTFD=y
- CONFIG_SHMEM=y
- CONFIG_AIO=y
- #
- # Kernel Performance Events And Counters
- #
- CONFIG_VM_EVENT_COUNTERS=y
- CONFIG_PCI_QUIRKS=y
- CONFIG_SLUB_DEBUG=y
- CONFIG_COMPAT_BRK=y
- # CONFIG_SLAB is not set
- CONFIG_SLUB=y
- # CONFIG_SLOB is not set
- CONFIG_PROFILING=y
- CONFIG_TRACEPOINTS=y
- CONFIG_OPROFILE=m
- CONFIG_HAVE_OPROFILE=y
- CONFIG_HAVE_SYSCALL_WRAPPERS=y
- #
- # GCOV-based kernel profiling
- #
- # CONFIG_GCOV_KERNEL is not set
- CONFIG_SLOW_WORK=y
- # CONFIG_SLOW_WORK_DEBUG is not set
- CONFIG_HAVE_GENERIC_DMA_COHERENT=y
- CONFIG_SLABINFO=y
- CONFIG_RT_MUTEXES=y
- CONFIG_BASE_SMALL=0
- CONFIG_MODULES=y
- # CONFIG_MODULE_FORCE_LOAD is not set
- CONFIG_MODULE_UNLOAD=y
- # CONFIG_MODULE_FORCE_UNLOAD is not set
- CONFIG_MODVERSIONS=y
- # CONFIG_MODULE_SRCVERSION_ALL is not set
- CONFIG_BLOCK=y
- CONFIG_BLK_DEV_BSG=y
- CONFIG_BLK_DEV_INTEGRITY=y
- CONFIG_BLOCK_COMPAT=y
- #
- # IO Schedulers
- #
- CONFIG_IOSCHED_NOOP=y
- CONFIG_IOSCHED_DEADLINE=m
- CONFIG_IOSCHED_CFQ=y
- # CONFIG_DEFAULT_DEADLINE is not set
- CONFIG_DEFAULT_CFQ=y
- # CONFIG_DEFAULT_NOOP is not set
- CONFIG_DEFAULT_IOSCHED="cfq"
- # CONFIG_INLINE_SPIN_TRYLOCK is not set
- # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set
- # CONFIG_INLINE_SPIN_LOCK is not set
- # CONFIG_INLINE_SPIN_LOCK_BH is not set
- # CONFIG_INLINE_SPIN_LOCK_IRQ is not set
- # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set
- # CONFIG_INLINE_SPIN_UNLOCK is not set
- # CONFIG_INLINE_SPIN_UNLOCK_BH is not set
- # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set
- # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set
- # CONFIG_INLINE_READ_TRYLOCK is not set
- # CONFIG_INLINE_READ_LOCK is not set
- # CONFIG_INLINE_READ_LOCK_BH is not set
- # CONFIG_INLINE_READ_LOCK_IRQ is not set
- # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set
- # CONFIG_INLINE_READ_UNLOCK is not set
- # CONFIG_INLINE_READ_UNLOCK_BH is not set
- # CONFIG_INLINE_READ_UNLOCK_IRQ is not set
- # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set
- # CONFIG_INLINE_WRITE_TRYLOCK is not set
- # CONFIG_INLINE_WRITE_LOCK is not set
- # CONFIG_INLINE_WRITE_LOCK_BH is not set
- # CONFIG_INLINE_WRITE_LOCK_IRQ is not set
- # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set
- # CONFIG_INLINE_WRITE_UNLOCK is not set
- # CONFIG_INLINE_WRITE_UNLOCK_BH is not set
- # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set
- # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set
- # CONFIG_MUTEX_SPIN_ON_OWNER is not set
- CONFIG_FREEZER=y
- #
- # Bus options (PCI, PCMCIA, EISA, ISA, TC)
- #
- CONFIG_HW_HAS_PCI=y
- CONFIG_PCI=y
- CONFIG_PCI_DOMAINS=y
- # CONFIG_ARCH_SUPPORTS_MSI is not set
- CONFIG_PCI_LEGACY=y
- # CONFIG_PCI_STUB is not set
- # CONFIG_PCI_IOV is not set
- CONFIG_ISA=y
- CONFIG_MMU=y
- # CONFIG_PCCARD is not set
- # CONFIG_HOTPLUG_PCI is not set
- #
- # Executable file formats
- #
- CONFIG_BINFMT_ELF=y
- # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
- # CONFIG_HAVE_AOUT is not set
- CONFIG_BINFMT_MISC=m
- CONFIG_MIPS32_COMPAT=y
- CONFIG_COMPAT=y
- CONFIG_SYSVIPC_COMPAT=y
- CONFIG_MIPS32_O32=y
- CONFIG_MIPS32_N32=y
- CONFIG_BINFMT_ELF32=y
- #
- # Power management options
- #
- CONFIG_ARCH_HIBERNATION_POSSIBLE=y
- CONFIG_ARCH_SUSPEND_POSSIBLE=y
- CONFIG_PM=y
- # CONFIG_PM_DEBUG is not set
- CONFIG_PM_SLEEP=y
- CONFIG_SUSPEND=y
- CONFIG_SUSPEND_FREEZER=y
- CONFIG_HIBERNATION_NVS=y
- CONFIG_HIBERNATION=y
- CONFIG_PM_STD_PARTITION="/dev/hda3"
- CONFIG_PM_RUNTIME=y
- CONFIG_MIPS_EXTERNAL_TIMER=y
- CONFIG_MIPS_CPUFREQ=y
- #
- # CPU Frequency scaling
- #
- CONFIG_CPU_FREQ=y
- CONFIG_CPU_FREQ_TABLE=y
- CONFIG_CPU_FREQ_DEBUG=y
- CONFIG_CPU_FREQ_STAT=m
- CONFIG_CPU_FREQ_STAT_DETAILS=y
- # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
- # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
- # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
- CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
- # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
- CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
- CONFIG_CPU_FREQ_GOV_POWERSAVE=m
- CONFIG_CPU_FREQ_GOV_USERSPACE=m
- CONFIG_CPU_FREQ_GOV_ONDEMAND=y
- CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m
- #
- # CPUFreq processor drivers
- #
- CONFIG_LOONGSON2_CPUFREQ=m
- CONFIG_NET=y
- #
- # Networking options
- #
- CONFIG_PACKET=y
- CONFIG_PACKET_MMAP=y
- CONFIG_UNIX=y
- CONFIG_XFRM=y
- CONFIG_XFRM_USER=m
- # CONFIG_XFRM_SUB_POLICY is not set
- # CONFIG_XFRM_MIGRATE is not set
- # CONFIG_XFRM_STATISTICS is not set
- CONFIG_NET_KEY=m
- # CONFIG_NET_KEY_MIGRATE is not set
- CONFIG_INET=y
- CONFIG_IP_MULTICAST=y
- CONFIG_IP_ADVANCED_ROUTER=y
- CONFIG_ASK_IP_FIB_HASH=y
- # CONFIG_IP_FIB_TRIE is not set
- CONFIG_IP_FIB_HASH=y
- CONFIG_IP_MULTIPLE_TABLES=y
- CONFIG_IP_ROUTE_MULTIPATH=y
- CONFIG_IP_ROUTE_VERBOSE=y
- # CONFIG_IP_PNP is not set
- CONFIG_NET_IPIP=m
- CONFIG_NET_IPGRE=m
- # CONFIG_NET_IPGRE_BROADCAST is not set
- CONFIG_IP_MROUTE=y
- CONFIG_IP_PIMSM_V1=y
- CONFIG_IP_PIMSM_V2=y
- CONFIG_ARPD=y
- CONFIG_SYN_COOKIES=y
- # CONFIG_INET_AH is not set
- # CONFIG_INET_ESP is not set
- # CONFIG_INET_IPCOMP is not set
- # CONFIG_INET_XFRM_TUNNEL is not set
- CONFIG_INET_TUNNEL=m
- CONFIG_INET_XFRM_MODE_TRANSPORT=m
- CONFIG_INET_XFRM_MODE_TUNNEL=m
- CONFIG_INET_XFRM_MODE_BEET=m
- CONFIG_INET_LRO=y
- CONFIG_INET_DIAG=y
- CONFIG_INET_TCP_DIAG=y
- CONFIG_TCP_CONG_ADVANCED=y
- CONFIG_TCP_CONG_BIC=y
- CONFIG_TCP_CONG_CUBIC=y
- CONFIG_TCP_CONG_WESTWOOD=m
- CONFIG_TCP_CONG_HTCP=m
- # CONFIG_TCP_CONG_HSTCP is not set
- # CONFIG_TCP_CONG_HYBLA is not set
- # CONFIG_TCP_CONG_VEGAS is not set
- # CONFIG_TCP_CONG_SCALABLE is not set
- # CONFIG_TCP_CONG_LP is not set
- # CONFIG_TCP_CONG_VENO is not set
- # CONFIG_TCP_CONG_YEAH is not set
- # CONFIG_TCP_CONG_ILLINOIS is not set
- CONFIG_DEFAULT_BIC=y
- # CONFIG_DEFAULT_CUBIC is not set
- # CONFIG_DEFAULT_HTCP is not set
- # CONFIG_DEFAULT_VEGAS is not set
- # CONFIG_DEFAULT_WESTWOOD is not set
- # CONFIG_DEFAULT_RENO is not set
- CONFIG_DEFAULT_TCP_CONG="bic"
- CONFIG_TCP_MD5SIG=y
- CONFIG_IPV6=m
- CONFIG_IPV6_PRIVACY=y
- CONFIG_IPV6_ROUTER_PREF=y
- # CONFIG_IPV6_ROUTE_INFO is not set
- # CONFIG_IPV6_OPTIMISTIC_DAD is not set
- # CONFIG_INET6_AH is not set
- # CONFIG_INET6_ESP is not set
- # CONFIG_INET6_IPCOMP is not set
- # CONFIG_IPV6_MIP6 is not set
- # CONFIG_INET6_XFRM_TUNNEL is not set
- CONFIG_INET6_TUNNEL=m
- CONFIG_INET6_XFRM_MODE_TRANSPORT=m
- CONFIG_INET6_XFRM_MODE_TUNNEL=m
- CONFIG_INET6_XFRM_MODE_BEET=m
- # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
- CONFIG_IPV6_SIT=m
- # CONFIG_IPV6_SIT_6RD is not set
- CONFIG_IPV6_NDISC_NODETYPE=y
- CONFIG_IPV6_TUNNEL=m
- CONFIG_IPV6_MULTIPLE_TABLES=y
- CONFIG_IPV6_SUBTREES=y
- # CONFIG_IPV6_MROUTE is not set
- CONFIG_NETWORK_SECMARK=y
- CONFIG_NETFILTER=y
- # CONFIG_NETFILTER_DEBUG is not set
- CONFIG_NETFILTER_ADVANCED=y
- CONFIG_BRIDGE_NETFILTER=y
- #
- # Core Netfilter Configuration
- #
- # CONFIG_NETFILTER_NETLINK_QUEUE is not set
- # CONFIG_NETFILTER_NETLINK_LOG is not set
- # CONFIG_NF_CONNTRACK is not set
- # CONFIG_NETFILTER_XTABLES is not set
- # CONFIG_IP_VS is not set
- #
- # IP: Netfilter Configuration
- #
- # CONFIG_NF_DEFRAG_IPV4 is not set
- # CONFIG_IP_NF_QUEUE is not set
- # CONFIG_IP_NF_IPTABLES is not set
- # CONFIG_IP_NF_ARPTABLES is not set
- #
- # IPv6: Netfilter Configuration
- #
- # CONFIG_IP6_NF_QUEUE is not set
- # CONFIG_IP6_NF_IPTABLES is not set
- # CONFIG_BRIDGE_NF_EBTABLES is not set
- # CONFIG_IP_DCCP is not set
- # CONFIG_IP_SCTP is not set
- # CONFIG_RDS is not set
- # CONFIG_TIPC is not set
- # CONFIG_ATM is not set
- CONFIG_STP=m
- CONFIG_BRIDGE=m
- # CONFIG_NET_DSA is not set
- CONFIG_VLAN_8021Q=m
- # CONFIG_VLAN_8021Q_GVRP is not set
- # CONFIG_DECNET is not set
- CONFIG_LLC=m
- # CONFIG_LLC2 is not set
- CONFIG_IPX=m
- # CONFIG_IPX_INTERN is not set
- # CONFIG_ATALK is not set
- # CONFIG_X25 is not set
- # CONFIG_LAPB is not set
- # CONFIG_ECONET is not set
- # CONFIG_WAN_ROUTER is not set
- # CONFIG_PHONET is not set
- # CONFIG_IEEE802154 is not set
- CONFIG_NET_SCHED=y
- #
- # Queueing/Scheduling
- #
- # CONFIG_NET_SCH_CBQ is not set
- # CONFIG_NET_SCH_HTB is not set
- # CONFIG_NET_SCH_HFSC is not set
- # CONFIG_NET_SCH_PRIO is not set
- # CONFIG_NET_SCH_MULTIQ is not set
- # CONFIG_NET_SCH_RED is not set
- # CONFIG_NET_SCH_SFQ is not set
- # CONFIG_NET_SCH_TEQL is not set
- # CONFIG_NET_SCH_TBF is not set
- # CONFIG_NET_SCH_GRED is not set
- # CONFIG_NET_SCH_DSMARK is not set
- # CONFIG_NET_SCH_NETEM is not set
- # CONFIG_NET_SCH_DRR is not set
- # CONFIG_NET_SCH_INGRESS is not set
- #
- # Classification
- #
- CONFIG_NET_CLS=y
- # CONFIG_NET_CLS_BASIC is not set
- # CONFIG_NET_CLS_TCINDEX is not set
- # CONFIG_NET_CLS_ROUTE4 is not set
- # CONFIG_NET_CLS_FW is not set
- # CONFIG_NET_CLS_U32 is not set
- # CONFIG_NET_CLS_RSVP is not set
- # CONFIG_NET_CLS_RSVP6 is not set
- # CONFIG_NET_CLS_FLOW is not set
- CONFIG_NET_EMATCH=y
- CONFIG_NET_EMATCH_STACK=32
- # CONFIG_NET_EMATCH_CMP is not set
- # CONFIG_NET_EMATCH_NBYTE is not set
- # CONFIG_NET_EMATCH_U32 is not set
- # CONFIG_NET_EMATCH_META is not set
- # CONFIG_NET_EMATCH_TEXT is not set
- CONFIG_NET_CLS_ACT=y
- # CONFIG_NET_ACT_POLICE is not set
- # CONFIG_NET_ACT_GACT is not set
- # CONFIG_NET_ACT_MIRRED is not set
- # CONFIG_NET_ACT_NAT is not set
- # CONFIG_NET_ACT_PEDIT is not set
- # CONFIG_NET_ACT_SIMP is not set
- # CONFIG_NET_ACT_SKBEDIT is not set
- CONFIG_NET_SCH_FIFO=y
- # CONFIG_DCB is not set
- #
- # Network testing
- #
- # CONFIG_NET_PKTGEN is not set
- # CONFIG_NET_DROP_MONITOR is not set
- # CONFIG_HAMRADIO is not set
- # CONFIG_CAN is not set
- # CONFIG_IRDA is not set
- CONFIG_BT=m
- CONFIG_BT_L2CAP=m
- CONFIG_BT_SCO=m
- CONFIG_BT_RFCOMM=m
- CONFIG_BT_RFCOMM_TTY=y
- CONFIG_BT_BNEP=m
- CONFIG_BT_BNEP_MC_FILTER=y
- CONFIG_BT_BNEP_PROTO_FILTER=y
- CONFIG_BT_HIDP=m
- #
- # Bluetooth device drivers
- #
- CONFIG_BT_HCIBTUSB=m
- # CONFIG_BT_HCIBTSDIO is not set
- # CONFIG_BT_HCIUART is not set
- # CONFIG_BT_HCIBCM203X is not set
- # CONFIG_BT_HCIBPA10X is not set
- CONFIG_BT_HCIBFUSB=m
- CONFIG_BT_HCIVHCI=m
- # CONFIG_BT_MRVL is not set
- # CONFIG_AF_RXRPC is not set
- CONFIG_FIB_RULES=y
- CONFIG_WIRELESS=y
- CONFIG_WEXT_CORE=y
- CONFIG_WEXT_PROC=y
- CONFIG_CFG80211=m
- # CONFIG_NL80211_TESTMODE is not set
- # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
- # CONFIG_CFG80211_REG_DEBUG is not set
- CONFIG_CFG80211_DEFAULT_PS=y
- # CONFIG_CFG80211_DEBUGFS is not set
- # CONFIG_WIRELESS_OLD_REGULATORY is not set
- CONFIG_CFG80211_WEXT=y
- CONFIG_WIRELESS_EXT_SYSFS=y
- CONFIG_LIB80211=m
- CONFIG_LIB80211_DEBUG=y
- CONFIG_MAC80211=m
- # CONFIG_MAC80211_RC_PID is not set
- CONFIG_MAC80211_RC_MINSTREL=y
- # CONFIG_MAC80211_RC_DEFAULT_PID is not set
- CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
- CONFIG_MAC80211_RC_DEFAULT="minstrel"
- # CONFIG_MAC80211_MESH is not set
- CONFIG_MAC80211_LEDS=y
- # CONFIG_MAC80211_DEBUGFS is not set
- # CONFIG_MAC80211_DEBUG_MENU is not set
- # CONFIG_WIMAX is not set
- CONFIG_RFKILL=m
- CONFIG_RFKILL_LEDS=y
- CONFIG_RFKILL_INPUT=y
- # CONFIG_NET_9P is not set
- #
- # Device Drivers
- #
- #
- # Generic Driver Options
- #
- CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
- # CONFIG_DEVTMPFS is not set
- CONFIG_STANDALONE=y
- CONFIG_PREVENT_FIRMWARE_BUILD=y
- CONFIG_FW_LOADER=y
- CONFIG_FIRMWARE_IN_KERNEL=y
- CONFIG_EXTRA_FIRMWARE=""
- # CONFIG_SYS_HYPERVISOR is not set
- CONFIG_CONNECTOR=m
- # CONFIG_MTD is not set
- # CONFIG_PARPORT is not set
- # CONFIG_PNP is not set
- CONFIG_BLK_DEV=y
- # CONFIG_BLK_CPQ_DA is not set
- # CONFIG_BLK_CPQ_CISS_DA is not set
- # CONFIG_BLK_DEV_DAC960 is not set
- # CONFIG_BLK_DEV_UMEM is not set
- # CONFIG_BLK_DEV_COW_COMMON is not set
- CONFIG_BLK_DEV_LOOP=y
- CONFIG_BLK_DEV_CRYPTOLOOP=m
- #
- # DRBD disabled because PROC_FS, INET or CONNECTOR not selected
- #
- # CONFIG_BLK_DEV_DRBD is not set
- # CONFIG_BLK_DEV_NBD is not set
- # CONFIG_BLK_DEV_SX8 is not set
- # CONFIG_BLK_DEV_UB is not set
- CONFIG_BLK_DEV_RAM=y
- CONFIG_BLK_DEV_RAM_COUNT=16
- CONFIG_BLK_DEV_RAM_SIZE=8192
- # CONFIG_BLK_DEV_XIP is not set
- # CONFIG_CDROM_PKTCDVD is not set
- # CONFIG_ATA_OVER_ETH is not set
- # CONFIG_BLK_DEV_HD is not set
- # CONFIG_MISC_DEVICES is not set
- CONFIG_HAVE_IDE=y
- CONFIG_IDE=y
- #
- # Please see Documentation/ide/ide.txt for help/info on IDE drives
- #
- CONFIG_IDE_XFER_MODE=y
- CONFIG_IDE_TIMINGS=y
- # CONFIG_BLK_DEV_IDE_SATA is not set
- CONFIG_IDE_GD=y
- CONFIG_IDE_GD_ATA=y
- # CONFIG_IDE_GD_ATAPI is not set
- # CONFIG_BLK_DEV_IDECD is not set
- # CONFIG_BLK_DEV_IDETAPE is not set
- CONFIG_IDE_TASK_IOCTL=y
- CONFIG_IDE_PROC_FS=y
- #
- # IDE chipset support/bugfixes
- #
- # CONFIG_IDE_GENERIC is not set
- # CONFIG_BLK_DEV_PLATFORM is not set
- CONFIG_BLK_DEV_IDEDMA_SFF=y
- #
- # PCI IDE chipsets support
- #
- CONFIG_BLK_DEV_IDEPCI=y
- # CONFIG_IDEPCI_PCIBUS_ORDER is not set
- # CONFIG_BLK_DEV_GENERIC is not set
- # CONFIG_BLK_DEV_OPTI621 is not set
- CONFIG_BLK_DEV_IDEDMA_PCI=y
- # CONFIG_BLK_DEV_AEC62XX is not set
- # CONFIG_BLK_DEV_ALI15X3 is not set
- CONFIG_BLK_DEV_AMD74XX=y
- # CONFIG_BLK_DEV_CMD64X is not set
- # CONFIG_BLK_DEV_TRIFLEX is not set
- # CONFIG_BLK_DEV_CS5520 is not set
- # CONFIG_BLK_DEV_CS5530 is not set
- # CONFIG_BLK_DEV_HPT366 is not set
- # CONFIG_BLK_DEV_JMICRON is not set
- # CONFIG_BLK_DEV_SC1200 is not set
- # CONFIG_BLK_DEV_PIIX is not set
- # CONFIG_BLK_DEV_IT8172 is not set
- # CONFIG_BLK_DEV_IT8213 is not set
- # CONFIG_BLK_DEV_IT821X is not set
- # CONFIG_BLK_DEV_NS87415 is not set
- # CONFIG_BLK_DEV_PDC202XX_OLD is not set
- # CONFIG_BLK_DEV_PDC202XX_NEW is not set
- # CONFIG_BLK_DEV_SVWKS is not set
- # CONFIG_BLK_DEV_SIIMAGE is not set
- # CONFIG_BLK_DEV_SLC90E66 is not set
- # CONFIG_BLK_DEV_TRM290 is not set
- # CONFIG_BLK_DEV_VIA82CXXX is not set
- # CONFIG_BLK_DEV_TC86C001 is not set
- #
- # Other IDE chipsets support
- #
- #
- # Note: most of these also require special kernel boot parameters
- #
- # CONFIG_BLK_DEV_4DRIVES is not set
- # CONFIG_BLK_DEV_ALI14XX is not set
- # CONFIG_BLK_DEV_DTC2278 is not set
- # CONFIG_BLK_DEV_HT6560B is not set
- # CONFIG_BLK_DEV_QD65XX is not set
- # CONFIG_BLK_DEV_UMC8672 is not set
- CONFIG_BLK_DEV_IDEDMA=y
- #
- # SCSI device support
- #
- # CONFIG_RAID_ATTRS is not set
- CONFIG_SCSI=m
- CONFIG_SCSI_DMA=y
- # CONFIG_SCSI_TGT is not set
- # CONFIG_SCSI_NETLINK is not set
- CONFIG_SCSI_PROC_FS=y
- #
- # SCSI support type (disk, tape, CD-ROM)
- #
- CONFIG_BLK_DEV_SD=m
- # CONFIG_CHR_DEV_ST is not set
- # CONFIG_CHR_DEV_OSST is not set
- # CONFIG_BLK_DEV_SR is not set
- CONFIG_CHR_DEV_SG=m
- # CONFIG_CHR_DEV_SCH is not set
- CONFIG_SCSI_MULTI_LUN=y
- # CONFIG_SCSI_CONSTANTS is not set
- # CONFIG_SCSI_LOGGING is not set
- # CONFIG_SCSI_SCAN_ASYNC is not set
- CONFIG_SCSI_WAIT_SCAN=m
- #
- # SCSI Transports
- #
- # CONFIG_SCSI_SPI_ATTRS is not set
- # CONFIG_SCSI_FC_ATTRS is not set
- # CONFIG_SCSI_ISCSI_ATTRS is not set
- # CONFIG_SCSI_SAS_ATTRS is not set
- # CONFIG_SCSI_SAS_LIBSAS is not set
- # CONFIG_SCSI_SRP_ATTRS is not set
- # CONFIG_SCSI_LOWLEVEL is not set
- # CONFIG_SCSI_DH is not set
- # CONFIG_SCSI_OSD_INITIATOR is not set
- # CONFIG_ATA is not set
- CONFIG_MD=y
- CONFIG_BLK_DEV_MD=m
- CONFIG_MD_LINEAR=m
- CONFIG_MD_RAID0=m
- CONFIG_MD_RAID1=m
- CONFIG_MD_RAID10=m
- CONFIG_MD_RAID456=m
- CONFIG_MD_RAID6_PQ=m
- # CONFIG_ASYNC_RAID6_TEST is not set
- CONFIG_MD_MULTIPATH=m
- CONFIG_MD_FAULTY=m
- CONFIG_BLK_DEV_DM=m
- CONFIG_DM_DEBUG=y
- CONFIG_DM_CRYPT=m
- CONFIG_DM_SNAPSHOT=m
- CONFIG_DM_MIRROR=m
- CONFIG_DM_LOG_USERSPACE=m
- CONFIG_DM_ZERO=m
- CONFIG_DM_MULTIPATH=m
- CONFIG_DM_MULTIPATH_QL=m
- CONFIG_DM_MULTIPATH_ST=m
- CONFIG_DM_DELAY=m
- CONFIG_DM_UEVENT=y
- # CONFIG_FUSION is not set
- #
- # IEEE 1394 (FireWire) support
- #
- #
- # You can enable one or both FireWire driver stacks.
- #
- #
- # The newer stack is recommended.
- #
- # CONFIG_FIREWIRE is not set
- # CONFIG_IEEE1394 is not set
- # CONFIG_I2O is not set
- CONFIG_NETDEVICES=y
- # CONFIG_IFB is not set
- CONFIG_DUMMY=m
- # CONFIG_BONDING is not set
- # CONFIG_MACVLAN is not set
- # CONFIG_EQUALIZER is not set
- CONFIG_TUN=m
- CONFIG_VETH=m
- # CONFIG_ARCNET is not set
- # CONFIG_PHYLIB is not set
- CONFIG_NET_ETHERNET=y
- CONFIG_MII=y
- # CONFIG_AX88796 is not set
- # CONFIG_HAPPYMEAL is not set
- # CONFIG_SUNGEM is not set
- # CONFIG_CASSINI is not set
- # CONFIG_NET_VENDOR_3COM is not set
- # CONFIG_NET_VENDOR_SMC is not set
- # CONFIG_SMC91X is not set
- # CONFIG_DM9000 is not set
- # CONFIG_ETHOC is not set
- # CONFIG_SMSC911X is not set
- # CONFIG_NET_VENDOR_RACAL is not set
- # CONFIG_DNET is not set
- # CONFIG_NET_TULIP is not set
- # CONFIG_AT1700 is not set
- # CONFIG_DEPCA is not set
- # CONFIG_HP100 is not set
- # CONFIG_NET_ISA is not set
- # CONFIG_IBM_NEW_EMAC_ZMII is not set
- # CONFIG_IBM_NEW_EMAC_RGMII is not set
- # CONFIG_IBM_NEW_EMAC_TAH is not set
- # CONFIG_IBM_NEW_EMAC_EMAC4 is not set
- # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set
- # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
- # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
- CONFIG_NET_PCI=y
- # CONFIG_PCNET32 is not set
- # CONFIG_AMD8111_ETH is not set
- # CONFIG_ADAPTEC_STARFIRE is not set
- # CONFIG_AC3200 is not set
- # CONFIG_APRICOT is not set
- # CONFIG_B44 is not set
- # CONFIG_FORCEDETH is not set
- # CONFIG_CS89x0 is not set
- # CONFIG_TC35815 is not set
- # CONFIG_E100 is not set
- # CONFIG_FEALNX is not set
- # CONFIG_NATSEMI is not set
- # CONFIG_NE2K_PCI is not set
- # CONFIG_8139CP is not set
- CONFIG_8139TOO=y
- # CONFIG_8139TOO_PIO is not set
- # CONFIG_8139TOO_TUNE_TWISTER is not set
- # CONFIG_8139TOO_8129 is not set
- # CONFIG_8139_OLD_RX_RESET is not set
- # CONFIG_R6040 is not set
- # CONFIG_SIS900 is not set
- # CONFIG_EPIC100 is not set
- # CONFIG_SMSC9420 is not set
- # CONFIG_SUNDANCE is not set
- # CONFIG_TLAN is not set
- # CONFIG_KS8842 is not set
- # CONFIG_KS8851_MLL is not set
- # CONFIG_VIA_RHINE is not set
- # CONFIG_SC92031 is not set
- # CONFIG_ATL2 is not set
- CONFIG_NETDEV_1000=y
- # CONFIG_ACENIC is not set
- # CONFIG_DL2K is not set
- # CONFIG_E1000 is not set
- # CONFIG_E1000E is not set
- # CONFIG_IP1000 is not set
- # CONFIG_IGB is not set
- # CONFIG_IGBVF is not set
- # CONFIG_NS83820 is not set
- # CONFIG_HAMACHI is not set
- # CONFIG_YELLOWFIN is not set
- CONFIG_R8169=y
- CONFIG_R8169_VLAN=y
- # CONFIG_SIS190 is not set
- # CONFIG_SKGE is not set
- # CONFIG_SKY2 is not set
- # CONFIG_VIA_VELOCITY is not set
- # CONFIG_TIGON3 is not set
- # CONFIG_BNX2 is not set
- # CONFIG_CNIC is not set
- # CONFIG_QLA3XXX is not set
- # CONFIG_ATL1 is not set
- # CONFIG_ATL1E is not set
- # CONFIG_ATL1C is not set
- # CONFIG_JME is not set
- # CONFIG_NETDEV_10000 is not set
- # CONFIG_TR is not set
- CONFIG_WLAN=y
- # CONFIG_LIBERTAS_THINFIRM is not set
- # CONFIG_ATMEL is not set
- # CONFIG_AT76C50X_USB is not set
- # CONFIG_PRISM54 is not set
- # CONFIG_USB_ZD1201 is not set
- # CONFIG_USB_NET_RNDIS_WLAN is not set
- # CONFIG_RTL8180 is not set
- # CONFIG_RTL8187 is not set
- # CONFIG_ADM8211 is not set
- # CONFIG_MAC80211_HWSIM is not set
- # CONFIG_MWL8K is not set
- # CONFIG_ATH_COMMON is not set
- # CONFIG_B43 is not set
- # CONFIG_B43LEGACY is not set
- # CONFIG_HOSTAP is not set
- # CONFIG_IPW2100 is not set
- # CONFIG_IPW2200 is not set
- # CONFIG_IWLWIFI is not set
- # CONFIG_IWM is not set
- # CONFIG_LIBERTAS is not set
- # CONFIG_HERMES is not set
- # CONFIG_P54_COMMON is not set
- # CONFIG_RT2X00 is not set
- # CONFIG_WL12XX is not set
- # CONFIG_ZD1211RW is not set
- #
- # Enable WiMAX (Networking options) to see the WiMAX drivers
- #
- #
- # USB Network Adapters
- #
- # CONFIG_USB_CATC is not set
- # CONFIG_USB_KAWETH is not set
- # CONFIG_USB_PEGASUS is not set
- # CONFIG_USB_RTL8150 is not set
- CONFIG_USB_USBNET=m
- CONFIG_USB_NET_AX8817X=m
- CONFIG_USB_NET_CDCETHER=m
- CONFIG_USB_NET_CDC_EEM=m
- # CONFIG_USB_NET_DM9601 is not set
- # CONFIG_USB_NET_SMSC95XX is not set
- # CONFIG_USB_NET_GL620A is not set
- CONFIG_USB_NET_NET1080=m
- # CONFIG_USB_NET_PLUSB is not set
- # CONFIG_USB_NET_MCS7830 is not set
- # CONFIG_USB_NET_RNDIS_HOST is not set
- CONFIG_USB_NET_CDC_SUBSET=m
- # CONFIG_USB_ALI_M5632 is not set
- # CONFIG_USB_AN2720 is not set
- CONFIG_USB_BELKIN=y
- CONFIG_USB_ARMLINUX=y
- # CONFIG_USB_EPSON2888 is not set
- # CONFIG_USB_KC2190 is not set
- CONFIG_USB_NET_ZAURUS=m
- # CONFIG_USB_HSO is not set
- # CONFIG_USB_NET_INT51X1 is not set
- # CONFIG_WAN is not set
- # CONFIG_FDDI is not set
- # CONFIG_HIPPI is not set
- # CONFIG_PPP is not set
- # CONFIG_SLIP is not set
- # CONFIG_NET_FC is not set
- CONFIG_NETCONSOLE=m
- CONFIG_NETCONSOLE_DYNAMIC=y
- CONFIG_NETPOLL=y
- # CONFIG_NETPOLL_TRAP is not set
- CONFIG_NET_POLL_CONTROLLER=y
- # CONFIG_VMXNET3 is not set
- # CONFIG_ISDN is not set
- # CONFIG_PHONE is not set
- #
- # Input device support
- #
- CONFIG_INPUT=y
- CONFIG_INPUT_FF_MEMLESS=m
- CONFIG_INPUT_POLLDEV=m
- # CONFIG_INPUT_SPARSEKMAP is not set
- #
- # Userland interfaces
- #
- CONFIG_INPUT_MOUSEDEV=y
- CONFIG_INPUT_MOUSEDEV_PSAUX=y
- CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
- CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
- # CONFIG_INPUT_JOYDEV is not set
- CONFIG_INPUT_EVDEV=y
- # CONFIG_INPUT_EVBUG is not set
- #
- # Input Device Drivers
- #
- CONFIG_INPUT_KEYBOARD=y
- CONFIG_KEYBOARD_ATKBD=y
- # CONFIG_KEYBOARD_LKKBD is not set
- # CONFIG_KEYBOARD_NEWTON is not set
- # CONFIG_KEYBOARD_OPENCORES is not set
- # CONFIG_KEYBOARD_STOWAWAY is not set
- # CONFIG_KEYBOARD_SUNKBD is not set
- # CONFIG_KEYBOARD_XTKBD is not set
- CONFIG_INPUT_MOUSE=y
- CONFIG_MOUSE_PS2=y
- # CONFIG_MOUSE_PS2_ALPS is not set
- # CONFIG_MOUSE_PS2_LOGIPS2PP is not set
- CONFIG_MOUSE_PS2_SYNAPTICS=y
- # CONFIG_MOUSE_PS2_TRACKPOINT is not set
- # CONFIG_MOUSE_PS2_ELANTECH is not set
- # CONFIG_MOUSE_PS2_SENTELIC is not set
- # CONFIG_MOUSE_PS2_TOUCHKIT is not set
- # CONFIG_MOUSE_SERIAL is not set
- CONFIG_MOUSE_APPLETOUCH=m
- # CONFIG_MOUSE_BCM5974 is not set
- # CONFIG_MOUSE_INPORT is not set
- # CONFIG_MOUSE_LOGIBM is not set
- # CONFIG_MOUSE_PC110PAD is not set
- # CONFIG_MOUSE_VSXXXAA is not set
- # CONFIG_INPUT_JOYSTICK is not set
- # CONFIG_INPUT_TABLET is not set
- # CONFIG_INPUT_TOUCHSCREEN is not set
- # CONFIG_INPUT_MISC is not set
- #
- # Hardware I/O ports
- #
- CONFIG_SERIO=y
- CONFIG_SERIO_I8042=y
- # CONFIG_SERIO_SERPORT is not set
- # CONFIG_SERIO_PCIPS2 is not set
- CONFIG_SERIO_LIBPS2=y
- # CONFIG_SERIO_RAW is not set
- # CONFIG_SERIO_ALTERA_PS2 is not set
- # CONFIG_GAMEPORT is not set
- #
- # Character devices
- #
- CONFIG_VT=y
- CONFIG_CONSOLE_TRANSLATIONS=y
- CONFIG_VT_CONSOLE=y
- CONFIG_HW_CONSOLE=y
- # CONFIG_VT_HW_CONSOLE_BINDING is not set
- CONFIG_DEVKMEM=y
- CONFIG_SERIAL_NONSTANDARD=y
- # CONFIG_COMPUTONE is not set
- # CONFIG_ROCKETPORT is not set
- # CONFIG_CYCLADES is not set
- # CONFIG_DIGIEPCA is not set
- # CONFIG_MOXA_INTELLIO is not set
- # CONFIG_MOXA_SMARTIO is not set
- # CONFIG_ISI is not set
- # CONFIG_SYNCLINKMP is not set
- # CONFIG_SYNCLINK_GT is not set
- # CONFIG_N_HDLC is not set
- # CONFIG_RISCOM8 is not set
- # CONFIG_SPECIALIX is not set
- # CONFIG_STALDRV is not set
- # CONFIG_NOZOMI is not set
- #
- # Serial drivers
- #
- CONFIG_SERIAL_8250=m
- # CONFIG_SERIAL_8250_PCI is not set
- CONFIG_SERIAL_8250_NR_UARTS=16
- CONFIG_SERIAL_8250_RUNTIME_UARTS=4
- CONFIG_SERIAL_8250_EXTENDED=y
- CONFIG_SERIAL_8250_MANY_PORTS=y
- CONFIG_SERIAL_8250_FOURPORT=y
- # CONFIG_SERIAL_8250_ACCENT is not set
- # CONFIG_SERIAL_8250_BOCA is not set
- # CONFIG_SERIAL_8250_EXAR_ST16C554 is not set
- # CONFIG_SERIAL_8250_HUB6 is not set
- # CONFIG_SERIAL_8250_SHARE_IRQ is not set
- # CONFIG_SERIAL_8250_DETECT_IRQ is not set
- # CONFIG_SERIAL_8250_RSA is not set
- #
- # Non-8250 serial port support
- #
- CONFIG_SERIAL_CORE=m
- # CONFIG_SERIAL_JSM is not set
- CONFIG_UNIX98_PTYS=y
- # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
- CONFIG_LEGACY_PTYS=y
- CONFIG_LEGACY_PTY_COUNT=16
- # CONFIG_IPMI_HANDLER is not set
- CONFIG_HW_RANDOM=y
- # CONFIG_HW_RANDOM_TIMERIOMEM is not set
- CONFIG_RTC=y
- # CONFIG_DTLK is not set
- # CONFIG_R3964 is not set
- # CONFIG_APPLICOM is not set
- # CONFIG_RAW_DRIVER is not set
- # CONFIG_TCG_TPM is not set
- CONFIG_DEVPORT=y
- # CONFIG_I2C is not set
- # CONFIG_SPI is not set
- #
- # PPS support
- #
- # CONFIG_PPS is not set
- # CONFIG_W1 is not set
- # CONFIG_POWER_SUPPLY is not set
- CONFIG_HWMON=y
- # CONFIG_HWMON_VID is not set
- # CONFIG_HWMON_DEBUG_CHIP is not set
- #
- # Native drivers
- #
- # CONFIG_SENSORS_I5K_AMB is not set
- # CONFIG_SENSORS_F71805F is not set
- # CONFIG_SENSORS_F71882FG is not set
- # CONFIG_SENSORS_IT87 is not set
- # CONFIG_SENSORS_PC87360 is not set
- # CONFIG_SENSORS_PC87427 is not set
- # CONFIG_SENSORS_SIS5595 is not set
- # CONFIG_SENSORS_SMSC47M1 is not set
- # CONFIG_SENSORS_SMSC47B397 is not set
- # CONFIG_SENSORS_VIA686A is not set
- # CONFIG_SENSORS_VT1211 is not set
- # CONFIG_SENSORS_VT8231 is not set
- # CONFIG_SENSORS_W83627HF is not set
- # CONFIG_SENSORS_W83627EHF is not set
- CONFIG_THERMAL=y
- # CONFIG_THERMAL_HWMON is not set
- # CONFIG_WATCHDOG is not set
- CONFIG_SSB_POSSIBLE=y
- #
- # Sonics Silicon Backplane
- #
- # CONFIG_SSB is not set
- #
- # Multifunction device drivers
- #
- # CONFIG_MFD_CORE is not set
- # CONFIG_MFD_SM501 is not set
- # CONFIG_HTC_PASIC3 is not set
- # CONFIG_MFD_TMIO is not set
- # CONFIG_REGULATOR is not set
- CONFIG_MEDIA_SUPPORT=m
- #
- # Multimedia core support
- #
- CONFIG_VIDEO_DEV=m
- CONFIG_VIDEO_V4L2_COMMON=m
- CONFIG_VIDEO_ALLOW_V4L1=y
- CONFIG_VIDEO_V4L1_COMPAT=y
- # CONFIG_DVB_CORE is not set
- CONFIG_VIDEO_MEDIA=m
- #
- # Multimedia drivers
- #
- CONFIG_IR_CORE=m
- CONFIG_VIDEO_IR=m
- # CONFIG_MEDIA_ATTACH is not set
- CONFIG_VIDEO_V4L2=m
- CONFIG_VIDEO_V4L1=m
- CONFIG_VIDEOBUF_GEN=m
- CONFIG_VIDEOBUF_VMALLOC=m
- CONFIG_VIDEO_CAPTURE_DRIVERS=y
- # CONFIG_VIDEO_ADV_DEBUG is not set
- # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
- CONFIG_VIDEO_HELPER_CHIPS_AUTO=y
- CONFIG_VIDEO_VIVI=m
- # CONFIG_VIDEO_PMS is not set
- # CONFIG_VIDEO_CPIA is not set
- # CONFIG_VIDEO_CPIA2 is not set
- # CONFIG_VIDEO_STRADIS is not set
- CONFIG_V4L_USB_DRIVERS=y
- CONFIG_USB_VIDEO_CLASS=m
- CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
- CONFIG_USB_GSPCA=m
- CONFIG_USB_M5602=m
- CONFIG_USB_STV06XX=m
- # CONFIG_USB_GL860 is not set
- CONFIG_USB_GSPCA_CONEX=m
- CONFIG_USB_GSPCA_ETOMS=m
- CONFIG_USB_GSPCA_FINEPIX=m
- # CONFIG_USB_GSPCA_JEILINJ is not set
- CONFIG_USB_GSPCA_MARS=m
- CONFIG_USB_GSPCA_MR97310A=m
- CONFIG_USB_GSPCA_OV519=m
- CONFIG_USB_GSPCA_OV534=m
- CONFIG_USB_GSPCA_PAC207=m
- # CONFIG_USB_GSPCA_PAC7302 is not set
- CONFIG_USB_GSPCA_PAC7311=m
- CONFIG_USB_GSPCA_SN9C20X=m
- CONFIG_USB_GSPCA_SN9C20X_EVDEV=y
- CONFIG_USB_GSPCA_SONIXB=m
- CONFIG_USB_GSPCA_SONIXJ=m
- CONFIG_USB_GSPCA_SPCA500=m
- CONFIG_USB_GSPCA_SPCA501=m
- CONFIG_USB_GSPCA_SPCA505=m
- CONFIG_USB_GSPCA_SPCA506=m
- CONFIG_USB_GSPCA_SPCA508=m
- CONFIG_USB_GSPCA_SPCA561=m
- CONFIG_USB_GSPCA_SQ905=m
- CONFIG_USB_GSPCA_SQ905C=m
- CONFIG_USB_GSPCA_STK014=m
- # CONFIG_USB_GSPCA_STV0680 is not set
- CONFIG_USB_GSPCA_SUNPLUS=m
- CONFIG_USB_GSPCA_T613=m
- CONFIG_USB_GSPCA_TV8532=m
- CONFIG_USB_GSPCA_VC032X=m
- CONFIG_USB_GSPCA_ZC3XX=m
- # CONFIG_VIDEO_HDPVR is not set
- # CONFIG_USB_VICAM is not set
- # CONFIG_USB_IBMCAM is not set
- # CONFIG_USB_KONICAWC is not set
- # CONFIG_USB_QUICKCAM_MESSENGER is not set
- CONFIG_USB_ET61X251=m
- # CONFIG_USB_OV511 is not set
- # CONFIG_USB_SE401 is not set
- CONFIG_USB_SN9C102=m
- # CONFIG_USB_STV680 is not set
- CONFIG_USB_ZC0301=m
- # CONFIG_USB_PWC is not set
- CONFIG_USB_PWC_INPUT_EVDEV=y
- CONFIG_USB_ZR364XX=m
- CONFIG_USB_STKWEBCAM=m
- CONFIG_USB_S2255=m
- # CONFIG_RADIO_ADAPTERS is not set
- # CONFIG_DAB is not set
- #
- # Graphics support
- #
- CONFIG_VGA_ARB=y
- # CONFIG_DRM is not set
- # CONFIG_VGASTATE is not set
- CONFIG_VIDEO_OUTPUT_CONTROL=y
- CONFIG_FB=y
- CONFIG_FIRMWARE_EDID=y
- # CONFIG_FB_DDC is not set
- CONFIG_FB_BOOT_VESA_SUPPORT=y
- CONFIG_FB_CFB_FILLRECT=y
- CONFIG_FB_CFB_COPYAREA=y
- CONFIG_FB_CFB_IMAGEBLIT=y
- # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
- # CONFIG_FB_SYS_FILLRECT is not set
- # CONFIG_FB_SYS_COPYAREA is not set
- # CONFIG_FB_SYS_IMAGEBLIT is not set
- # CONFIG_FB_FOREIGN_ENDIAN is not set
- # CONFIG_FB_SYS_FOPS is not set
- # CONFIG_FB_SVGALIB is not set
- # CONFIG_FB_MACMODES is not set
- # CONFIG_FB_BACKLIGHT is not set
- CONFIG_FB_MODE_HELPERS=y
- CONFIG_FB_TILEBLITTING=y
- #
- # Frame buffer hardware drivers
- #
- # CONFIG_FB_CIRRUS is not set
- # CONFIG_FB_PM2 is not set
- # CONFIG_FB_CYBER2000 is not set
- # CONFIG_FB_ASILIANT is not set
- # CONFIG_FB_IMSTT is not set
- # CONFIG_FB_UVESA is not set
- # CONFIG_FB_S1D13XXX is not set
- # CONFIG_FB_NVIDIA is not set
- # CONFIG_FB_RIVA is not set
- # CONFIG_FB_MATROX is not set
- # CONFIG_FB_RADEON is not set
- # CONFIG_FB_ATY128 is not set
- # CONFIG_FB_ATY is not set
- # CONFIG_FB_S3 is not set
- # CONFIG_FB_SAVAGE is not set
- CONFIG_FB_SIS=y
- CONFIG_FB_SIS_300=y
- CONFIG_FB_SIS_315=y
- # CONFIG_FB_VIA is not set
- # CONFIG_FB_NEOMAGIC is not set
- # CONFIG_FB_KYRO is not set
- # CONFIG_FB_3DFX is not set
- # CONFIG_FB_VOODOO1 is not set
- # CONFIG_FB_VT8623 is not set
- # CONFIG_FB_TRIDENT is not set
- # CONFIG_FB_ARK is not set
- # CONFIG_FB_PM3 is not set
- # CONFIG_FB_CARMINE is not set
- # CONFIG_FB_VIRTUAL is not set
- # CONFIG_FB_METRONOME is not set
- # CONFIG_FB_MB862XX is not set
- # CONFIG_FB_BROADSHEET is not set
- CONFIG_BACKLIGHT_LCD_SUPPORT=y
- # CONFIG_LCD_CLASS_DEVICE is not set
- CONFIG_BACKLIGHT_CLASS_DEVICE=y
- CONFIG_BACKLIGHT_GENERIC=m
- #
- # Display device support
- #
- # CONFIG_DISPLAY_SUPPORT is not set
- #
- # Console display driver support
- #
- # CONFIG_VGA_CONSOLE is not set
- # CONFIG_MDA_CONSOLE is not set
- CONFIG_DUMMY_CONSOLE=y
- CONFIG_FRAMEBUFFER_CONSOLE=y
- # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set
- CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
- CONFIG_FONTS=y
- CONFIG_FONT_8x8=y
- CONFIG_FONT_8x16=y
- CONFIG_FONT_6x11=y
- CONFIG_FONT_7x14=y
- CONFIG_FONT_PEARL_8x8=y
- CONFIG_FONT_ACORN_8x8=y
- CONFIG_FONT_MINI_4x6=y
- CONFIG_FONT_SUN8x16=y
- CONFIG_FONT_SUN12x22=y
- CONFIG_FONT_10x18=y
- CONFIG_LOGO=y
- # CONFIG_LOGO_LINUX_MONO is not set
- # CONFIG_LOGO_LINUX_VGA16 is not set
- CONFIG_LOGO_LINUX_CLUT224=y
- CONFIG_SOUND=m
- CONFIG_SOUND_OSS_CORE=y
- CONFIG_SOUND_OSS_CORE_PRECLAIM=y
- CONFIG_SND=m
- CONFIG_SND_TIMER=m
- CONFIG_SND_PCM=m
- CONFIG_SND_HWDEP=m
- CONFIG_SND_RAWMIDI=m
- CONFIG_SND_SEQUENCER=m
- CONFIG_SND_SEQ_DUMMY=m
- CONFIG_SND_OSSEMUL=y
- CONFIG_SND_MIXER_OSS=m
- CONFIG_SND_PCM_OSS=m
- CONFIG_SND_PCM_OSS_PLUGINS=y
- CONFIG_SND_SEQUENCER_OSS=y
- CONFIG_SND_HRTIMER=m
- CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
- # CONFIG_SND_RTCTIMER is not set
- # CONFIG_SND_DYNAMIC_MINORS is not set
- CONFIG_SND_SUPPORT_OLD_API=y
- CONFIG_SND_VERBOSE_PROCFS=y
- # CONFIG_SND_VERBOSE_PRINTK is not set
- # CONFIG_SND_DEBUG is not set
- CONFIG_SND_VMASTER=y
- CONFIG_SND_RAWMIDI_SEQ=m
- # CONFIG_SND_OPL3_LIB_SEQ is not set
- # CONFIG_SND_OPL4_LIB_SEQ is not set
- # CONFIG_SND_SBAWE_SEQ is not set
- # CONFIG_SND_EMU10K1_SEQ is not set
- CONFIG_SND_MPU401_UART=m
- CONFIG_SND_AC97_CODEC=m
- CONFIG_SND_DRIVERS=y
- CONFIG_SND_DUMMY=m
- CONFIG_SND_VIRMIDI=m
- # CONFIG_SND_MTPAV is not set
- CONFIG_SND_SERIAL_U16550=m
- CONFIG_SND_MPU401=m
- CONFIG_SND_AC97_POWER_SAVE=y
- CONFIG_SND_AC97_POWER_SAVE_DEFAULT=10
- CONFIG_SND_PCI=y
- # CONFIG_SND_AD1889 is not set
- # CONFIG_SND_ALS300 is not set
- # CONFIG_SND_ALI5451 is not set
- # CONFIG_SND_ATIIXP is not set
- # CONFIG_SND_ATIIXP_MODEM is not set
- # CONFIG_SND_AU8810 is not set
- # CONFIG_SND_AU8820 is not set
- # CONFIG_SND_AU8830 is not set
- # CONFIG_SND_AW2 is not set
- # CONFIG_SND_AZT3328 is not set
- # CONFIG_SND_BT87X is not set
- # CONFIG_SND_CA0106 is not set
- # CONFIG_SND_CMIPCI is not set
- # CONFIG_SND_OXYGEN is not set
- # CONFIG_SND_CS4281 is not set
- # CONFIG_SND_CS46XX is not set
- CONFIG_SND_CS5535AUDIO=m
- # CONFIG_SND_CTXFI is not set
- # CONFIG_SND_DARLA20 is not set
- # CONFIG_SND_GINA20 is not set
- # CONFIG_SND_LAYLA20 is not set
- # CONFIG_SND_DARLA24 is not set
- # CONFIG_SND_GINA24 is not set
- # CONFIG_SND_LAYLA24 is not set
- # CONFIG_SND_MONA is not set
- # CONFIG_SND_MIA is not set
- # CONFIG_SND_ECHO3G is not set
- # CONFIG_SND_INDIGO is not set
- # CONFIG_SND_INDIGOIO is not set
- # CONFIG_SND_INDIGODJ is not set
- # CONFIG_SND_INDIGOIOX is not set
- # CONFIG_SND_INDIGODJX is not set
- # CONFIG_SND_EMU10K1 is not set
- # CONFIG_SND_EMU10K1X is not set
- # CONFIG_SND_ENS1370 is not set
- # CONFIG_SND_ENS1371 is not set
- # CONFIG_SND_ES1938 is not set
- # CONFIG_SND_ES1968 is not set
- # CONFIG_SND_FM801 is not set
- # CONFIG_SND_HDA_INTEL is not set
- # CONFIG_SND_HDSP is not set
- # CONFIG_SND_HDSPM is not set
- # CONFIG_SND_HIFIER is not set
- # CONFIG_SND_ICE1712 is not set
- # CONFIG_SND_ICE1724 is not set
- # CONFIG_SND_INTEL8X0 is not set
- # CONFIG_SND_INTEL8X0M is not set
- # CONFIG_SND_KORG1212 is not set
- # CONFIG_SND_LX6464ES is not set
- # CONFIG_SND_MAESTRO3 is not set
- # CONFIG_SND_MIXART is not set
- # CONFIG_SND_NM256 is not set
- # CONFIG_SND_PCXHR is not set
- # CONFIG_SND_RIPTIDE is not set
- # CONFIG_SND_RME32 is not set
- # CONFIG_SND_RME96 is not set
- # CONFIG_SND_RME9652 is not set
- # CONFIG_SND_SONICVIBES is not set
- # CONFIG_SND_TRIDENT is not set
- # CONFIG_SND_VIA82XX is not set
- # CONFIG_SND_VIA82XX_MODEM is not set
- # CONFIG_SND_VIRTUOSO is not set
- # CONFIG_SND_VX222 is not set
- # CONFIG_SND_YMFPCI is not set
- # CONFIG_SND_MIPS is not set
- CONFIG_SND_USB=y
- CONFIG_SND_USB_AUDIO=m
- CONFIG_SND_USB_CAIAQ=m
- CONFIG_SND_USB_CAIAQ_INPUT=y
- # CONFIG_SND_SOC is not set
- # CONFIG_SOUND_PRIME is not set
- CONFIG_AC97_BUS=m
- CONFIG_HID_SUPPORT=y
- CONFIG_HID=y
- CONFIG_HIDRAW=y
- #
- # USB Input Devices
- #
- CONFIG_USB_HID=y
- # CONFIG_HID_PID is not set
- CONFIG_USB_HIDDEV=y
- #
- # Special HID drivers
- #
- CONFIG_HID_A4TECH=m
- CONFIG_HID_APPLE=m
- CONFIG_HID_BELKIN=m
- CONFIG_HID_CHERRY=m
- CONFIG_HID_CHICONY=m
- CONFIG_HID_CYPRESS=m
- CONFIG_HID_DRAGONRISE=m
- CONFIG_DRAGONRISE_FF=y
- CONFIG_HID_EZKEY=m
- CONFIG_HID_KYE=m
- CONFIG_HID_GYRATION=m
- CONFIG_HID_TWINHAN=m
- CONFIG_HID_KENSINGTON=m
- CONFIG_HID_LOGITECH=m
- CONFIG_LOGITECH_FF=y
- CONFIG_LOGIRUMBLEPAD2_FF=y
- CONFIG_HID_MICROSOFT=m
- CONFIG_HID_MONTEREY=m
- CONFIG_HID_NTRIG=m
- CONFIG_HID_PANTHERLORD=m
- CONFIG_PANTHERLORD_FF=y
- CONFIG_HID_PETALYNX=m
- CONFIG_HID_SAMSUNG=m
- CONFIG_HID_SONY=m
- CONFIG_HID_SUNPLUS=m
- CONFIG_HID_GREENASIA=m
- CONFIG_GREENASIA_FF=y
- CONFIG_HID_SMARTJOYPLUS=m
- CONFIG_SMARTJOYPLUS_FF=y
- CONFIG_HID_TOPSEED=m
- CONFIG_HID_THRUSTMASTER=m
- CONFIG_THRUSTMASTER_FF=y
- CONFIG_HID_WACOM=m
- CONFIG_HID_ZEROPLUS=m
- CONFIG_ZEROPLUS_FF=y
- CONFIG_USB_SUPPORT=y
- CONFIG_USB_ARCH_HAS_HCD=y
- CONFIG_USB_ARCH_HAS_OHCI=y
- CONFIG_USB_ARCH_HAS_EHCI=y
- CONFIG_USB=y
- # CONFIG_USB_DEBUG is not set
- # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
- #
- # Miscellaneous USB options
- #
- CONFIG_USB_DEVICEFS=y
- # CONFIG_USB_DEVICE_CLASS is not set
- CONFIG_USB_DYNAMIC_MINORS=y
- CONFIG_USB_SUSPEND=y
- # CONFIG_USB_OTG is not set
- CONFIG_USB_OTG_WHITELIST=y
- # CONFIG_USB_OTG_BLACKLIST_HUB is not set
- CONFIG_USB_MON=y
- CONFIG_USB_WUSB=m
- # CONFIG_USB_WUSB_CBAF is not set
- #
- # USB Host Controller Drivers
- #
- # CONFIG_USB_C67X00_HCD is not set
- # CONFIG_USB_XHCI_HCD is not set
- CONFIG_USB_EHCI_HCD=y
- CONFIG_USB_EHCI_ROOT_HUB_TT=y
- # CONFIG_USB_EHCI_TT_NEWSCHED is not set
- # CONFIG_USB_OXU210HP_HCD is not set
- # CONFIG_USB_ISP116X_HCD is not set
- # CONFIG_USB_ISP1760_HCD is not set
- # CONFIG_USB_ISP1362_HCD is not set
- CONFIG_USB_OHCI_HCD=y
- # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set
- # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set
- CONFIG_USB_OHCI_LITTLE_ENDIAN=y
- CONFIG_USB_UHCI_HCD=m
- # CONFIG_USB_SL811_HCD is not set
- # CONFIG_USB_R8A66597_HCD is not set
- CONFIG_USB_WHCI_HCD=m
- CONFIG_USB_HWA_HCD=m
- # CONFIG_USB_GADGET_MUSB_HDRC is not set
- #
- # USB Device Class drivers
- #
- CONFIG_USB_ACM=m
- CONFIG_USB_PRINTER=m
- CONFIG_USB_WDM=m
- # CONFIG_USB_TMC is not set
- #
- # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
- #
- #
- # also be needed; see USB_STORAGE Help for more info
- #
- CONFIG_USB_STORAGE=m
- # CONFIG_USB_STORAGE_DEBUG is not set
- CONFIG_USB_STORAGE_DATAFAB=m
- CONFIG_USB_STORAGE_FREECOM=m
- CONFIG_USB_STORAGE_ISD200=m
- CONFIG_USB_STORAGE_USBAT=m
- CONFIG_USB_STORAGE_SDDR09=m
- CONFIG_USB_STORAGE_SDDR55=m
- CONFIG_USB_STORAGE_JUMPSHOT=m
- CONFIG_USB_STORAGE_ALAUDA=m
- # CONFIG_USB_STORAGE_ONETOUCH is not set
- # CONFIG_USB_STORAGE_KARMA is not set
- # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
- CONFIG_USB_LIBUSUAL=y
- #
- # USB Imaging devices
- #
- # CONFIG_USB_MDC800 is not set
- # CONFIG_USB_MICROTEK is not set
- #
- # USB port drivers
- #
- CONFIG_USB_SERIAL=m
- # CONFIG_USB_EZUSB is not set
- CONFIG_USB_SERIAL_GENERIC=y
- # CONFIG_USB_SERIAL_AIRCABLE is not set
- # CONFIG_USB_SERIAL_ARK3116 is not set
- # CONFIG_USB_SERIAL_BELKIN is not set
- # CONFIG_USB_SERIAL_CH341 is not set
- # CONFIG_USB_SERIAL_WHITEHEAT is not set
- # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
- # CONFIG_USB_SERIAL_CP210X is not set
- # CONFIG_USB_SERIAL_CYPRESS_M8 is not set
- # CONFIG_USB_SERIAL_EMPEG is not set
- # CONFIG_USB_SERIAL_FTDI_SIO is not set
- # CONFIG_USB_SERIAL_FUNSOFT is not set
- # CONFIG_USB_SERIAL_VISOR is not set
- # CONFIG_USB_SERIAL_IPAQ is not set
- # CONFIG_USB_SERIAL_IR is not set
- # CONFIG_USB_SERIAL_EDGEPORT is not set
- # CONFIG_USB_SERIAL_EDGEPORT_TI is not set
- # CONFIG_USB_SERIAL_GARMIN is not set
- # CONFIG_USB_SERIAL_IPW is not set
- # CONFIG_USB_SERIAL_IUU is not set
- # CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
- # CONFIG_USB_SERIAL_KEYSPAN is not set
- # CONFIG_USB_SERIAL_KLSI is not set
- # CONFIG_USB_SERIAL_KOBIL_SCT is not set
- # CONFIG_USB_SERIAL_MCT_U232 is not set
- # CONFIG_USB_SERIAL_MOS7720 is not set
- # CONFIG_USB_SERIAL_MOS7840 is not set
- # CONFIG_USB_SERIAL_MOTOROLA is not set
- # CONFIG_USB_SERIAL_NAVMAN is not set
- # CONFIG_USB_SERIAL_PL2303 is not set
- # CONFIG_USB_SERIAL_OTI6858 is not set
- # CONFIG_USB_SERIAL_QUALCOMM is not set
- # CONFIG_USB_SERIAL_SPCP8X5 is not set
- # CONFIG_USB_SERIAL_HP4X is not set
- # CONFIG_USB_SERIAL_SAFE is not set
- # CONFIG_USB_SERIAL_SIEMENS_MPI is not set
- # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set
- # CONFIG_USB_SERIAL_SYMBOL is not set
- # CONFIG_USB_SERIAL_TI is not set
- # CONFIG_USB_SERIAL_CYBERJACK is not set
- # CONFIG_USB_SERIAL_XIRCOM is not set
- # CONFIG_USB_SERIAL_OPTION is not set
- # CONFIG_USB_SERIAL_OMNINET is not set
- # CONFIG_USB_SERIAL_OPTICON is not set
- # CONFIG_USB_SERIAL_DEBUG is not set
- #
- # USB Miscellaneous drivers
- #
- # CONFIG_USB_EMI62 is not set
- # CONFIG_USB_EMI26 is not set
- # CONFIG_USB_ADUTUX is not set
- # CONFIG_USB_SEVSEG is not set
- # CONFIG_USB_RIO500 is not set
- # CONFIG_USB_LEGOTOWER is not set
- # CONFIG_USB_LCD is not set
- # CONFIG_USB_BERRY_CHARGE is not set
- CONFIG_USB_LED=m
- # CONFIG_USB_CYPRESS_CY7C63 is not set
- # CONFIG_USB_CYTHERM is not set
- # CONFIG_USB_IDMOUSE is not set
- # CONFIG_USB_FTDI_ELAN is not set
- # CONFIG_USB_APPLEDISPLAY is not set
- # CONFIG_USB_SISUSBVGA is not set
- # CONFIG_USB_LD is not set
- # CONFIG_USB_TRANCEVIBRATOR is not set
- # CONFIG_USB_IOWARRIOR is not set
- # CONFIG_USB_TEST is not set
- # CONFIG_USB_ISIGHTFW is not set
- # CONFIG_USB_VST is not set
- CONFIG_USB_GADGET=m
- # CONFIG_USB_GADGET_DEBUG_FILES is not set
- # CONFIG_USB_GADGET_DEBUG_FS is not set
- CONFIG_USB_GADGET_VBUS_DRAW=2
- CONFIG_USB_GADGET_SELECTED=y
- # CONFIG_USB_GADGET_AT91 is not set
- # CONFIG_USB_GADGET_ATMEL_USBA is not set
- # CONFIG_USB_GADGET_FSL_USB2 is not set
- # CONFIG_USB_GADGET_LH7A40X is not set
- # CONFIG_USB_GADGET_OMAP is not set
- # CONFIG_USB_GADGET_PXA25X is not set
- # CONFIG_USB_GADGET_R8A66597 is not set
- # CONFIG_USB_GADGET_PXA27X is not set
- # CONFIG_USB_GADGET_S3C_HSOTG is not set
- # CONFIG_USB_GADGET_IMX is not set
- # CONFIG_USB_GADGET_S3C2410 is not set
- CONFIG_USB_GADGET_M66592=y
- CONFIG_USB_M66592=m
- # CONFIG_USB_GADGET_AMD5536UDC is not set
- # CONFIG_USB_GADGET_FSL_QE is not set
- # CONFIG_USB_GADGET_CI13XXX is not set
- # CONFIG_USB_GADGET_NET2280 is not set
- # CONFIG_USB_GADGET_GOKU is not set
- # CONFIG_USB_GADGET_LANGWELL is not set
- # CONFIG_USB_GADGET_DUMMY_HCD is not set
- CONFIG_USB_GADGET_DUALSPEED=y
- # CONFIG_USB_ZERO is not set
- # CONFIG_USB_AUDIO is not set
- # CONFIG_USB_ETH is not set
- # CONFIG_USB_GADGETFS is not set
- # CONFIG_USB_FILE_STORAGE is not set
- # CONFIG_USB_MASS_STORAGE is not set
- # CONFIG_USB_G_SERIAL is not set
- # CONFIG_USB_MIDI_GADGET is not set
- # CONFIG_USB_G_PRINTER is not set
- # CONFIG_USB_CDC_COMPOSITE is not set
- # CONFIG_USB_G_MULTI is not set
- #
- # OTG and related infrastructure
- #
- # CONFIG_NOP_USB_XCEIV is not set
- CONFIG_UWB=m
- CONFIG_UWB_HWA=m
- CONFIG_UWB_WHCI=m
- # CONFIG_UWB_WLP is not set
- # CONFIG_UWB_I1480U is not set
- CONFIG_MMC=m
- # CONFIG_MMC_DEBUG is not set
- # CONFIG_MMC_UNSAFE_RESUME is not set
- #
- # MMC/SD/SDIO Card Drivers
- #
- CONFIG_MMC_BLOCK=m
- CONFIG_MMC_BLOCK_BOUNCE=y
- # CONFIG_SDIO_UART is not set
- # CONFIG_MMC_TEST is not set
- #
- # MMC/SD/SDIO Host Controller Drivers
- #
- # CONFIG_MMC_SDHCI is not set
- # CONFIG_MMC_AT91 is not set
- # CONFIG_MMC_ATMELMCI is not set
- # CONFIG_MMC_TIFM_SD is not set
- # CONFIG_MMC_CB710 is not set
- # CONFIG_MMC_VIA_SDMMC is not set
- # CONFIG_MEMSTICK is not set
- CONFIG_NEW_LEDS=y
- CONFIG_LEDS_CLASS=m
- #
- # LED drivers
- #
- #
- # LED Triggers
- #
- CONFIG_LEDS_TRIGGERS=y
- # CONFIG_LEDS_TRIGGER_TIMER is not set
- # CONFIG_LEDS_TRIGGER_IDE_DISK is not set
- # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
- # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
- # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
- #
- # iptables trigger is under Netfilter config (LED target)
- #
- # CONFIG_ACCESSIBILITY is not set
- # CONFIG_INFINIBAND is not set
- # CONFIG_RTC_CLASS is not set
- # CONFIG_DMADEVICES is not set
- # CONFIG_AUXDISPLAY is not set
- # CONFIG_UIO is not set
- #
- # TI VLYNQ
- #
- CONFIG_STAGING=y
- # CONFIG_STAGING_EXCLUDE_BUILD is not set
- # CONFIG_ET131X is not set
- # CONFIG_USB_IP_COMMON is not set
- # CONFIG_W35UND is not set
- # CONFIG_ECHO is not set
- # CONFIG_OTUS is not set
- # CONFIG_COMEDI is not set
- # CONFIG_ASUS_OLED is not set
- # CONFIG_ALTERA_PCIE_CHDMA is not set
- # CONFIG_R8187SE is not set
- # CONFIG_RTL8192E is not set
- # CONFIG_INPUT_MIMIO is not set
- # CONFIG_TRANZPORT is not set
- #
- # Qualcomm MSM Camera And Video
- #
- #
- # Camera Sensor Selection
- #
- # CONFIG_INPUT_GPIO is not set
- # CONFIG_POHMELFS is not set
- # CONFIG_B3DFG is not set
- # CONFIG_PLAN9AUTH is not set
- # CONFIG_LINE6_USB is not set
- # CONFIG_USB_SERIAL_QUATECH2 is not set
- # CONFIG_USB_SERIAL_QUATECH_USB2 is not set
- # CONFIG_VT6655 is not set
- # CONFIG_VT6656 is not set
- # CONFIG_FB_UDL is not set
- # CONFIG_VME_BUS is not set
- #
- # RAR Register Driver
- #
- # CONFIG_RAR_REGISTER is not set
- # CONFIG_IIO is not set
- # CONFIG_RAMZSWAP is not set
- # CONFIG_BATMAN_ADV is not set
- # CONFIG_STRIP is not set
- # CONFIG_WAVELAN is not set
- CONFIG_FB_SM7XX=y
- # CONFIG_FB_SM7XX_ACCEL is not set
- #
- # File systems
- #
- CONFIG_EXT2_FS=m
- # CONFIG_EXT2_FS_XATTR is not set
- # CONFIG_EXT2_FS_XIP is not set
- CONFIG_EXT3_FS=y
- # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set
- CONFIG_EXT3_FS_XATTR=y
- CONFIG_EXT3_FS_POSIX_ACL=y
- CONFIG_EXT3_FS_SECURITY=y
- CONFIG_EXT4_FS=y
- CONFIG_EXT4_FS_XATTR=y
- # CONFIG_EXT4_FS_POSIX_ACL is not set
- # CONFIG_EXT4_FS_SECURITY is not set
- # CONFIG_EXT4_DEBUG is not set
- CONFIG_JBD=y
- # CONFIG_JBD_DEBUG is not set
- CONFIG_JBD2=y
- # CONFIG_JBD2_DEBUG is not set
- CONFIG_FS_MBCACHE=y
- CONFIG_REISERFS_FS=m
- # CONFIG_REISERFS_CHECK is not set
- CONFIG_REISERFS_PROC_INFO=y
- CONFIG_REISERFS_FS_XATTR=y
- # CONFIG_REISERFS_FS_POSIX_ACL is not set
- # CONFIG_REISERFS_FS_SECURITY is not set
- CONFIG_JFS_FS=m
- CONFIG_JFS_POSIX_ACL=y
- # CONFIG_JFS_SECURITY is not set
- # CONFIG_JFS_DEBUG is not set
- # CONFIG_JFS_STATISTICS is not set
- CONFIG_FS_POSIX_ACL=y
- CONFIG_XFS_FS=m
- CONFIG_XFS_QUOTA=y
- CONFIG_XFS_POSIX_ACL=y
- # CONFIG_XFS_RT is not set
- # CONFIG_XFS_DEBUG is not set
- # CONFIG_GFS2_FS is not set
- # CONFIG_OCFS2_FS is not set
- CONFIG_BTRFS_FS=m
- # CONFIG_BTRFS_FS_POSIX_ACL is not set
- # CONFIG_NILFS2_FS is not set
- CONFIG_FILE_LOCKING=y
- CONFIG_FSNOTIFY=y
- CONFIG_DNOTIFY=y
- CONFIG_INOTIFY=y
- CONFIG_INOTIFY_USER=y
- CONFIG_QUOTA=y
- # CONFIG_QUOTA_NETLINK_INTERFACE is not set
- CONFIG_PRINT_QUOTA_WARNING=y
- CONFIG_QUOTA_TREE=m
- # CONFIG_QFMT_V1 is not set
- CONFIG_QFMT_V2=m
- CONFIG_QUOTACTL=y
- CONFIG_AUTOFS_FS=m
- CONFIG_AUTOFS4_FS=m
- # CONFIG_FUSE_FS is not set
- #
- # Caches
- #
- CONFIG_FSCACHE=m
- # CONFIG_FSCACHE_STATS is not set
- # CONFIG_FSCACHE_HISTOGRAM is not set
- # CONFIG_FSCACHE_DEBUG is not set
- # CONFIG_FSCACHE_OBJECT_LIST is not set
- CONFIG_CACHEFILES=m
- # CONFIG_CACHEFILES_DEBUG is not set
- # CONFIG_CACHEFILES_HISTOGRAM is not set
- #
- # CD-ROM/DVD Filesystems
- #
- CONFIG_ISO9660_FS=m
- CONFIG_JOLIET=y
- CONFIG_ZISOFS=y
- # CONFIG_UDF_FS is not set
- #
- # DOS/FAT/NT Filesystems
- #
- CONFIG_FAT_FS=m
- CONFIG_MSDOS_FS=m
- CONFIG_VFAT_FS=m
- CONFIG_FAT_DEFAULT_CODEPAGE=437
- CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
- CONFIG_NTFS_FS=m
- # CONFIG_NTFS_DEBUG is not set
- CONFIG_NTFS_RW=y
- #
- # Pseudo filesystems
- #
- CONFIG_PROC_FS=y
- CONFIG_PROC_KCORE=y
- CONFIG_PROC_SYSCTL=y
- CONFIG_PROC_PAGE_MONITOR=y
- CONFIG_SYSFS=y
- CONFIG_TMPFS=y
- # CONFIG_TMPFS_POSIX_ACL is not set
- # CONFIG_HUGETLB_PAGE is not set
- CONFIG_CONFIGFS_FS=m
- CONFIG_MISC_FILESYSTEMS=y
- # CONFIG_ADFS_FS is not set
- # CONFIG_AFFS_FS is not set
- # CONFIG_ECRYPT_FS is not set
- # CONFIG_HFS_FS is not set
- # CONFIG_HFSPLUS_FS is not set
- # CONFIG_BEFS_FS is not set
- # CONFIG_BFS_FS is not set
- # CONFIG_EFS_FS is not set
- CONFIG_CRAMFS=m
- CONFIG_SQUASHFS=m
- CONFIG_SQUASHFS_EMBEDDED=y
- CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
- # CONFIG_VXFS_FS is not set
- # CONFIG_MINIX_FS is not set
- # CONFIG_OMFS_FS is not set
- # CONFIG_HPFS_FS is not set
- # CONFIG_QNX4FS_FS is not set
- CONFIG_ROMFS_FS=m
- CONFIG_ROMFS_BACKED_BY_BLOCK=y
- # CONFIG_ROMFS_BACKED_BY_MTD is not set
- # CONFIG_ROMFS_BACKED_BY_BOTH is not set
- CONFIG_ROMFS_ON_BLOCK=y
- # CONFIG_SYSV_FS is not set
- # CONFIG_UFS_FS is not set
- CONFIG_NETWORK_FILESYSTEMS=y
- CONFIG_NFS_FS=m
- CONFIG_NFS_V3=y
- CONFIG_NFS_V3_ACL=y
- # CONFIG_NFS_V4 is not set
- # CONFIG_NFS_FSCACHE is not set
- CONFIG_NFSD=m
- CONFIG_NFSD_V3=y
- # CONFIG_NFSD_V3_ACL is not set
- CONFIG_NFSD_V4=y
- CONFIG_LOCKD=m
- CONFIG_LOCKD_V4=y
- CONFIG_EXPORTFS=m
- CONFIG_NFS_ACL_SUPPORT=m
- CONFIG_NFS_COMMON=y
- CONFIG_SUNRPC=m
- CONFIG_SUNRPC_GSS=m
- CONFIG_RPCSEC_GSS_KRB5=m
- # CONFIG_RPCSEC_GSS_SPKM3 is not set
- # CONFIG_SMB_FS is not set
- CONFIG_CIFS=m
- # CONFIG_CIFS_STATS is not set
- # CONFIG_CIFS_WEAK_PW_HASH is not set
- # CONFIG_CIFS_UPCALL is not set
- # CONFIG_CIFS_XATTR is not set
- # CONFIG_CIFS_DEBUG2 is not set
- # CONFIG_CIFS_DFS_UPCALL is not set
- # CONFIG_CIFS_EXPERIMENTAL is not set
- # CONFIG_NCP_FS is not set
- # CONFIG_CODA_FS is not set
- # CONFIG_AFS_FS is not set
- #
- # Partition Types
- #
- # CONFIG_PARTITION_ADVANCED is not set
- CONFIG_MSDOS_PARTITION=y
- CONFIG_NLS=y
- CONFIG_NLS_DEFAULT="utf8"
- CONFIG_NLS_CODEPAGE_437=m
- CONFIG_NLS_CODEPAGE_737=m
- CONFIG_NLS_CODEPAGE_775=m
- CONFIG_NLS_CODEPAGE_850=m
- CONFIG_NLS_CODEPAGE_852=m
- CONFIG_NLS_CODEPAGE_855=m
- CONFIG_NLS_CODEPAGE_857=m
- CONFIG_NLS_CODEPAGE_860=m
- CONFIG_NLS_CODEPAGE_861=m
- CONFIG_NLS_CODEPAGE_862=m
- CONFIG_NLS_CODEPAGE_863=m
- CONFIG_NLS_CODEPAGE_864=m
- CONFIG_NLS_CODEPAGE_865=m
- CONFIG_NLS_CODEPAGE_866=m
- CONFIG_NLS_CODEPAGE_869=m
- CONFIG_NLS_CODEPAGE_936=m
- CONFIG_NLS_CODEPAGE_950=m
- CONFIG_NLS_CODEPAGE_932=m
- CONFIG_NLS_CODEPAGE_949=m
- CONFIG_NLS_CODEPAGE_874=m
- CONFIG_NLS_ISO8859_8=m
- CONFIG_NLS_CODEPAGE_1250=m
- CONFIG_NLS_CODEPAGE_1251=m
- CONFIG_NLS_ASCII=m
- CONFIG_NLS_ISO8859_1=m
- CONFIG_NLS_ISO8859_2=m
- CONFIG_NLS_ISO8859_3=m
- CONFIG_NLS_ISO8859_4=m
- CONFIG_NLS_ISO8859_5=m
- CONFIG_NLS_ISO8859_6=m
- CONFIG_NLS_ISO8859_7=m
- CONFIG_NLS_ISO8859_9=m
- CONFIG_NLS_ISO8859_13=m
- CONFIG_NLS_ISO8859_14=m
- CONFIG_NLS_ISO8859_15=m
- CONFIG_NLS_KOI8_R=m
- CONFIG_NLS_KOI8_U=m
- CONFIG_NLS_UTF8=y
- # CONFIG_DLM is not set
- #
- # Kernel hacking
- #
- CONFIG_TRACE_IRQFLAGS_SUPPORT=y
- CONFIG_PRINTK_TIME=y
- CONFIG_ENABLE_WARN_DEPRECATED=y
- CONFIG_ENABLE_MUST_CHECK=y
- CONFIG_FRAME_WARN=1024
- # CONFIG_MAGIC_SYSRQ is not set
- CONFIG_STRIP_ASM_SYMS=y
- # CONFIG_UNUSED_SYMBOLS is not set
- CONFIG_DEBUG_FS=y
- # CONFIG_HEADERS_CHECK is not set
- # CONFIG_DEBUG_KERNEL is not set
- # CONFIG_SLUB_DEBUG_ON is not set
- # CONFIG_SLUB_STATS is not set
- CONFIG_STACKTRACE=y
- # CONFIG_DEBUG_MEMORY_INIT is not set
- # CONFIG_RCU_CPU_STALL_DETECTOR is not set
- CONFIG_SYSCTL_SYSCALL_CHECK=y
- CONFIG_NOP_TRACER=y
- CONFIG_HAVE_FUNCTION_TRACER=y
- CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
- CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
- CONFIG_HAVE_DYNAMIC_FTRACE=y
- CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
- CONFIG_RING_BUFFER=y
- CONFIG_EVENT_TRACING=y
- CONFIG_CONTEXT_SWITCH_TRACER=y
- CONFIG_RING_BUFFER_ALLOW_SWAP=y
- CONFIG_TRACING=y
- CONFIG_TRACING_SUPPORT=y
- # CONFIG_FTRACE is not set
- # CONFIG_DYNAMIC_DEBUG is not set
- # CONFIG_SAMPLES is not set
- CONFIG_HAVE_ARCH_KGDB=y
- CONFIG_EARLY_PRINTK=y
- # CONFIG_CMDLINE_BOOL is not set
- #
- # Security options
- #
- CONFIG_KEYS=y
- CONFIG_KEYS_DEBUG_PROC_KEYS=y
- # CONFIG_SECURITY is not set
- # CONFIG_SECURITYFS is not set
- # CONFIG_DEFAULT_SECURITY_SELINUX is not set
- # CONFIG_DEFAULT_SECURITY_SMACK is not set
- # CONFIG_DEFAULT_SECURITY_TOMOYO is not set
- CONFIG_DEFAULT_SECURITY_DAC=y
- CONFIG_DEFAULT_SECURITY=""
- CONFIG_XOR_BLOCKS=m
- CONFIG_ASYNC_CORE=m
- CONFIG_ASYNC_MEMCPY=m
- CONFIG_ASYNC_XOR=m
- CONFIG_ASYNC_PQ=m
- CONFIG_ASYNC_RAID6_RECOV=m
- CONFIG_CRYPTO=y
- #
- # Crypto core or helper
- #
- CONFIG_CRYPTO_FIPS=y
- CONFIG_CRYPTO_ALGAPI=y
- CONFIG_CRYPTO_ALGAPI2=y
- CONFIG_CRYPTO_AEAD=m
- CONFIG_CRYPTO_AEAD2=y
- CONFIG_CRYPTO_BLKCIPHER=m
- CONFIG_CRYPTO_BLKCIPHER2=y
- CONFIG_CRYPTO_HASH=y
- CONFIG_CRYPTO_HASH2=y
- CONFIG_CRYPTO_RNG=m
- CONFIG_CRYPTO_RNG2=y
- CONFIG_CRYPTO_PCOMP=y
- CONFIG_CRYPTO_MANAGER=m
- CONFIG_CRYPTO_MANAGER2=y
- CONFIG_CRYPTO_GF128MUL=m
- CONFIG_CRYPTO_NULL=m
- CONFIG_CRYPTO_WORKQUEUE=y
- CONFIG_CRYPTO_CRYPTD=m
- CONFIG_CRYPTO_AUTHENC=m
- CONFIG_CRYPTO_TEST=m
- #
- # Authenticated Encryption with Associated Data
- #
- CONFIG_CRYPTO_CCM=m
- CONFIG_CRYPTO_GCM=m
- CONFIG_CRYPTO_SEQIV=m
- #
- # Block modes
- #
- CONFIG_CRYPTO_CBC=m
- CONFIG_CRYPTO_CTR=m
- # CONFIG_CRYPTO_CTS is not set
- CONFIG_CRYPTO_ECB=m
- CONFIG_CRYPTO_LRW=m
- CONFIG_CRYPTO_PCBC=m
- CONFIG_CRYPTO_XTS=m
- #
- # Hash modes
- #
- CONFIG_CRYPTO_HMAC=m
- CONFIG_CRYPTO_XCBC=m
- # CONFIG_CRYPTO_VMAC is not set
- #
- # Digest
- #
- CONFIG_CRYPTO_CRC32C=m
- CONFIG_CRYPTO_GHASH=m
- CONFIG_CRYPTO_MD4=m
- CONFIG_CRYPTO_MD5=y
- CONFIG_CRYPTO_MICHAEL_MIC=m
- CONFIG_CRYPTO_RMD128=m
- CONFIG_CRYPTO_RMD160=m
- CONFIG_CRYPTO_RMD256=m
- CONFIG_CRYPTO_RMD320=m
- CONFIG_CRYPTO_SHA1=m
- CONFIG_CRYPTO_SHA256=m
- CONFIG_CRYPTO_SHA512=m
- CONFIG_CRYPTO_TGR192=m
- CONFIG_CRYPTO_WP512=m
- #
- # Ciphers
- #
- CONFIG_CRYPTO_AES=m
- CONFIG_CRYPTO_ANUBIS=m
- CONFIG_CRYPTO_ARC4=m
- CONFIG_CRYPTO_BLOWFISH=m
- CONFIG_CRYPTO_CAMELLIA=m
- CONFIG_CRYPTO_CAST5=m
- CONFIG_CRYPTO_CAST6=m
- CONFIG_CRYPTO_DES=m
- CONFIG_CRYPTO_FCRYPT=m
- CONFIG_CRYPTO_KHAZAD=m
- CONFIG_CRYPTO_SALSA20=m
- CONFIG_CRYPTO_SEED=m
- CONFIG_CRYPTO_SERPENT=m
- CONFIG_CRYPTO_TEA=m
- CONFIG_CRYPTO_TWOFISH=m
- CONFIG_CRYPTO_TWOFISH_COMMON=m
- #
- # Compression
- #
- CONFIG_CRYPTO_DEFLATE=m
- CONFIG_CRYPTO_ZLIB=m
- CONFIG_CRYPTO_LZO=m
- #
- # Random Number Generation
- #
- CONFIG_CRYPTO_ANSI_CPRNG=m
- CONFIG_CRYPTO_HW=y
- # CONFIG_CRYPTO_DEV_HIFN_795X is not set
- CONFIG_BINARY_PRINTF=y
- #
- # Library routines
- #
- CONFIG_BITREVERSE=y
- CONFIG_GENERIC_FIND_LAST_BIT=y
- # CONFIG_CRC_CCITT is not set
- CONFIG_CRC16=y
- CONFIG_CRC_T10DIF=y
- # CONFIG_CRC_ITU_T is not set
- CONFIG_CRC32=y
- # CONFIG_CRC7 is not set
- CONFIG_LIBCRC32C=m
- CONFIG_AUDIT_GENERIC=y
- CONFIG_ZLIB_INFLATE=y
- CONFIG_ZLIB_DEFLATE=m
- CONFIG_LZO_COMPRESS=m
- CONFIG_LZO_DECOMPRESS=m
- CONFIG_DECOMPRESS_GZIP=y
- CONFIG_DECOMPRESS_BZIP2=y
- CONFIG_DECOMPRESS_LZMA=y
- CONFIG_HAS_IOMEM=y
- CONFIG_HAS_IOPORT=y
- CONFIG_HAS_DMA=y
- CONFIG_NLATTR=y
|