Merge branch 'master' into core-updates
This commit is contained in:
commit
3c0316169b
|
@ -257,9 +257,9 @@ dist_noinst_DATA = guix/tests.scm guix/tests/http.scm
|
||||||
# Auxiliary files for packages.
|
# Auxiliary files for packages.
|
||||||
AUX_FILES = \
|
AUX_FILES = \
|
||||||
gnu/packages/aux-files/emacs/guix-emacs.el \
|
gnu/packages/aux-files/emacs/guix-emacs.el \
|
||||||
gnu/packages/aux-files/linux-libre/4.15-arm.conf \
|
gnu/packages/aux-files/linux-libre/4.16-arm.conf \
|
||||||
gnu/packages/aux-files/linux-libre/4.15-i686.conf \
|
gnu/packages/aux-files/linux-libre/4.16-i686.conf \
|
||||||
gnu/packages/aux-files/linux-libre/4.15-x86_64.conf \
|
gnu/packages/aux-files/linux-libre/4.16-x86_64.conf \
|
||||||
gnu/packages/aux-files/linux-libre/4.14-arm.conf \
|
gnu/packages/aux-files/linux-libre/4.14-arm.conf \
|
||||||
gnu/packages/aux-files/linux-libre/4.14-i686.conf \
|
gnu/packages/aux-files/linux-libre/4.14-i686.conf \
|
||||||
gnu/packages/aux-files/linux-libre/4.14-x86_64.conf \
|
gnu/packages/aux-files/linux-libre/4.14-x86_64.conf \
|
||||||
|
|
|
@ -5221,8 +5221,12 @@ This is the declarative counterpart of @code{gexp->script}.
|
||||||
|
|
||||||
@deffn {Monadic Procedure} gexp->file @var{name} @var{exp} @
|
@deffn {Monadic Procedure} gexp->file @var{name} @var{exp} @
|
||||||
[#:set-load-path? #t] [#:module-path %load-path] @
|
[#:set-load-path? #t] [#:module-path %load-path] @
|
||||||
|
[#:splice? #f] @
|
||||||
[#:guile (default-guile)]
|
[#:guile (default-guile)]
|
||||||
Return a derivation that builds a file @var{name} containing @var{exp}.
|
Return a derivation that builds a file @var{name} containing @var{exp}.
|
||||||
|
When @var{splice?} is true, @var{exp} is considered to be a list of
|
||||||
|
expressions that will be spliced in the resulting file.
|
||||||
|
|
||||||
When @var{set-load-path?} is true, emit code in the resulting file to
|
When @var{set-load-path?} is true, emit code in the resulting file to
|
||||||
set @code{%load-path} and @code{%load-compiled-path} to honor
|
set @code{%load-path} and @code{%load-compiled-path} to honor
|
||||||
@var{exp}'s imported modules. Look up @var{exp}'s modules in
|
@var{exp}'s imported modules. Look up @var{exp}'s modules in
|
||||||
|
@ -5232,7 +5236,7 @@ The resulting file holds references to all the dependencies of @var{exp}
|
||||||
or a subset thereof.
|
or a subset thereof.
|
||||||
@end deffn
|
@end deffn
|
||||||
|
|
||||||
@deffn {Scheme Procedure} scheme-file @var{name} @var{exp}
|
@deffn {Scheme Procedure} scheme-file @var{name} @var{exp} [#:splice? #f]
|
||||||
Return an object representing the Scheme file @var{name} that contains
|
Return an object representing the Scheme file @var{name} that contains
|
||||||
@var{exp}.
|
@var{exp}.
|
||||||
|
|
||||||
|
@ -18538,6 +18542,9 @@ By default, Cgit can be accessed on port 80 (@code{http://localhost:80}).
|
||||||
(service cgit-service-type)
|
(service cgit-service-type)
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
|
The @code{file-object} type designates either a file-like object
|
||||||
|
(@pxref{G-Expressions, file-like objects}) or a string.
|
||||||
|
|
||||||
@c %start of fragment
|
@c %start of fragment
|
||||||
|
|
||||||
Available @code{cgit-configuration} fields are:
|
Available @code{cgit-configuration} fields are:
|
||||||
|
@ -18552,7 +18559,7 @@ NGINX configuration.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string about-filter
|
@deftypevr {@code{cgit-configuration} parameter} file-object about-filter
|
||||||
Specifies a command which will be invoked to format the content of about
|
Specifies a command which will be invoked to format the content of about
|
||||||
pages (both top-level and for each repository).
|
pages (both top-level and for each repository).
|
||||||
|
|
||||||
|
@ -18568,7 +18575,7 @@ Defaults to @samp{""}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string auth-filter
|
@deftypevr {@code{cgit-configuration} parameter} file-object auth-filter
|
||||||
Specifies a command that will be invoked for authenticating repository
|
Specifies a command that will be invoked for authenticating repository
|
||||||
access.
|
access.
|
||||||
|
|
||||||
|
@ -18677,7 +18684,7 @@ Defaults to @samp{()}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string commit-filter
|
@deftypevr {@code{cgit-configuration} parameter} file-object commit-filter
|
||||||
Command which will be invoked to format commit messages.
|
Command which will be invoked to format commit messages.
|
||||||
|
|
||||||
Defaults to @samp{""}.
|
Defaults to @samp{""}.
|
||||||
|
@ -18693,14 +18700,14 @@ Defaults to @samp{"git log"}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string css
|
@deftypevr {@code{cgit-configuration} parameter} file-object css
|
||||||
URL which specifies the css document to include in all cgit pages.
|
URL which specifies the css document to include in all cgit pages.
|
||||||
|
|
||||||
Defaults to @samp{"/share/cgit/cgit.css"}.
|
Defaults to @samp{"/share/cgit/cgit.css"}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string email-filter
|
@deftypevr {@code{cgit-configuration} parameter} file-object email-filter
|
||||||
Specifies a command which will be invoked to format names and email
|
Specifies a command which will be invoked to format names and email
|
||||||
address of committers, authors, and taggers, as represented in various
|
address of committers, authors, and taggers, as represented in various
|
||||||
places throughout the cgit interface.
|
places throughout the cgit interface.
|
||||||
|
@ -18824,7 +18831,7 @@ Defaults to @samp{#f}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string favicon
|
@deftypevr {@code{cgit-configuration} parameter} file-object favicon
|
||||||
URL used as link to a shortcut icon for cgit.
|
URL used as link to a shortcut icon for cgit.
|
||||||
|
|
||||||
Defaults to @samp{"/favicon.ico"}.
|
Defaults to @samp{"/favicon.ico"}.
|
||||||
|
@ -18856,7 +18863,7 @@ Defaults to @samp{""}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string include
|
@deftypevr {@code{cgit-configuration} parameter} file-object include
|
||||||
Name of a configfile to include before the rest of the current config-
|
Name of a configfile to include before the rest of the current config-
|
||||||
file is parsed.
|
file is parsed.
|
||||||
|
|
||||||
|
@ -18888,7 +18895,7 @@ Defaults to @samp{#f}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string logo
|
@deftypevr {@code{cgit-configuration} parameter} file-object logo
|
||||||
URL which specifies the source of an image which will be used as a logo
|
URL which specifies the source of an image which will be used as a logo
|
||||||
on all cgit pages.
|
on all cgit pages.
|
||||||
|
|
||||||
|
@ -18903,7 +18910,7 @@ Defaults to @samp{""}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string owner-filter
|
@deftypevr {@code{cgit-configuration} parameter} file-object owner-filter
|
||||||
Command which will be invoked to format the Owner column of the main
|
Command which will be invoked to format the Owner column of the main
|
||||||
page.
|
page.
|
||||||
|
|
||||||
|
@ -18972,7 +18979,7 @@ Defaults to @samp{((gif "image/gif") (html "text/html") (jpg
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string mimetype-file
|
@deftypevr {@code{cgit-configuration} parameter} file-object mimetype-file
|
||||||
Specifies the file to use for automatic mimetype lookup.
|
Specifies the file to use for automatic mimetype lookup.
|
||||||
|
|
||||||
Defaults to @samp{""}.
|
Defaults to @samp{""}.
|
||||||
|
@ -19010,7 +19017,16 @@ Defaults to @samp{#f}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string readme
|
@deftypevr {@code{cgit-configuration} parameter} list project-list
|
||||||
|
A list of subdirectories inside of @code{repository-directory}, relative
|
||||||
|
to it, that should loaded as Git repositories. An empty list means that
|
||||||
|
all subdirectories will be loaded.
|
||||||
|
|
||||||
|
Defaults to @samp{()}.
|
||||||
|
|
||||||
|
@end deftypevr
|
||||||
|
|
||||||
|
@deftypevr {@code{cgit-configuration} parameter} file-object readme
|
||||||
Text which will be used as default value for @code{cgit-repo-readme}.
|
Text which will be used as default value for @code{cgit-repo-readme}.
|
||||||
|
|
||||||
Defaults to @samp{""}.
|
Defaults to @samp{""}.
|
||||||
|
@ -19128,7 +19144,7 @@ Defaults to @samp{#f}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{cgit-configuration} parameter} string source-filter
|
@deftypevr {@code{cgit-configuration} parameter} file-object source-filter
|
||||||
Specifies a command which will be invoked to format plaintext blobs in
|
Specifies a command which will be invoked to format plaintext blobs in
|
||||||
the tree view.
|
the tree view.
|
||||||
|
|
||||||
|
@ -19190,7 +19206,7 @@ Defaults to @samp{()}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{repository-cgit-configuration} parameter} repo-string source-filter
|
@deftypevr {@code{repository-cgit-configuration} parameter} repo-file-object source-filter
|
||||||
Override the default @code{source-filter}.
|
Override the default @code{source-filter}.
|
||||||
|
|
||||||
Defaults to @samp{""}.
|
Defaults to @samp{""}.
|
||||||
|
@ -19204,7 +19220,7 @@ Defaults to @samp{""}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{repository-cgit-configuration} parameter} repo-string about-filter
|
@deftypevr {@code{repository-cgit-configuration} parameter} repo-file-object about-filter
|
||||||
Override the default @code{about-filter}.
|
Override the default @code{about-filter}.
|
||||||
|
|
||||||
Defaults to @samp{""}.
|
Defaults to @samp{""}.
|
||||||
|
@ -19226,7 +19242,7 @@ Defaults to @samp{()}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{repository-cgit-configuration} parameter} repo-string commit-filter
|
@deftypevr {@code{repository-cgit-configuration} parameter} repo-file-object commit-filter
|
||||||
Override the default @code{commit-filter}.
|
Override the default @code{commit-filter}.
|
||||||
|
|
||||||
Defaults to @samp{""}.
|
Defaults to @samp{""}.
|
||||||
|
@ -19266,7 +19282,7 @@ Defaults to @samp{""}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{repository-cgit-configuration} parameter} repo-string email-filter
|
@deftypevr {@code{repository-cgit-configuration} parameter} repo-file-object email-filter
|
||||||
Override the default @code{email-filter}.
|
Override the default @code{email-filter}.
|
||||||
|
|
||||||
Defaults to @samp{""}.
|
Defaults to @samp{""}.
|
||||||
|
@ -19336,7 +19352,7 @@ Defaults to @samp{#f}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{repository-cgit-configuration} parameter} repo-string logo
|
@deftypevr {@code{repository-cgit-configuration} parameter} repo-file-object logo
|
||||||
URL which specifies the source of an image which will be used as a logo
|
URL which specifies the source of an image which will be used as a logo
|
||||||
on this repo’s pages.
|
on this repo’s pages.
|
||||||
|
|
||||||
|
@ -19351,7 +19367,7 @@ Defaults to @samp{""}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
@deftypevr {@code{repository-cgit-configuration} parameter} repo-string owner-filter
|
@deftypevr {@code{repository-cgit-configuration} parameter} repo-file-object owner-filter
|
||||||
Override the default @code{owner-filter}.
|
Override the default @code{owner-filter}.
|
||||||
|
|
||||||
Defaults to @samp{""}.
|
Defaults to @samp{""}.
|
||||||
|
@ -19436,6 +19452,7 @@ Defaults to @samp{()}.
|
||||||
|
|
||||||
@end deftypevr
|
@end deftypevr
|
||||||
|
|
||||||
|
|
||||||
@c %end of fragment
|
@c %end of fragment
|
||||||
|
|
||||||
However, it could be that you just want to get a @code{cgitrc} up and
|
However, it could be that you just want to get a @code{cgitrc} up and
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#
|
#
|
||||||
# Automatically generated file; DO NOT EDIT.
|
# Automatically generated file; DO NOT EDIT.
|
||||||
# Linux/arm 4.15.0-gnu Kernel Configuration
|
# Linux/arm 4.16.0-gnu Kernel Configuration
|
||||||
#
|
#
|
||||||
CONFIG_ARM=y
|
CONFIG_ARM=y
|
||||||
CONFIG_ARM_HAS_SG_CHAIN=y
|
CONFIG_ARM_HAS_SG_CHAIN=y
|
||||||
|
@ -25,7 +25,6 @@ CONFIG_FIQ=y
|
||||||
CONFIG_ARM_PATCH_PHYS_VIRT=y
|
CONFIG_ARM_PATCH_PHYS_VIRT=y
|
||||||
CONFIG_GENERIC_BUG=y
|
CONFIG_GENERIC_BUG=y
|
||||||
CONFIG_PGTABLE_LEVELS=2
|
CONFIG_PGTABLE_LEVELS=2
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
|
||||||
CONFIG_IRQ_WORK=y
|
CONFIG_IRQ_WORK=y
|
||||||
CONFIG_BUILDTIME_EXTABLE_SORT=y
|
CONFIG_BUILDTIME_EXTABLE_SORT=y
|
||||||
|
|
||||||
|
@ -75,7 +74,6 @@ CONFIG_IRQ_DOMAIN_HIERARCHY=y
|
||||||
CONFIG_GENERIC_MSI_IRQ=y
|
CONFIG_GENERIC_MSI_IRQ=y
|
||||||
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
|
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
|
||||||
CONFIG_HANDLE_DOMAIN_IRQ=y
|
CONFIG_HANDLE_DOMAIN_IRQ=y
|
||||||
# CONFIG_IRQ_DOMAIN_DEBUG is not set
|
|
||||||
CONFIG_IRQ_FORCED_THREADING=y
|
CONFIG_IRQ_FORCED_THREADING=y
|
||||||
CONFIG_SPARSE_IRQ=y
|
CONFIG_SPARSE_IRQ=y
|
||||||
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
||||||
|
@ -245,6 +243,7 @@ CONFIG_HAVE_DMA_CONTIGUOUS=y
|
||||||
CONFIG_GENERIC_SMP_IDLE_THREAD=y
|
CONFIG_GENERIC_SMP_IDLE_THREAD=y
|
||||||
CONFIG_GENERIC_IDLE_POLL_SETUP=y
|
CONFIG_GENERIC_IDLE_POLL_SETUP=y
|
||||||
CONFIG_ARCH_HAS_SET_MEMORY=y
|
CONFIG_ARCH_HAS_SET_MEMORY=y
|
||||||
|
CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
|
||||||
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
|
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
|
||||||
CONFIG_HAVE_CLK=y
|
CONFIG_HAVE_CLK=y
|
||||||
CONFIG_HAVE_DMA_API_DEBUG=y
|
CONFIG_HAVE_DMA_API_DEBUG=y
|
||||||
|
@ -258,10 +257,10 @@ CONFIG_SECCOMP_FILTER=y
|
||||||
CONFIG_HAVE_GCC_PLUGINS=y
|
CONFIG_HAVE_GCC_PLUGINS=y
|
||||||
# CONFIG_GCC_PLUGINS is not set
|
# CONFIG_GCC_PLUGINS is not set
|
||||||
CONFIG_HAVE_CC_STACKPROTECTOR=y
|
CONFIG_HAVE_CC_STACKPROTECTOR=y
|
||||||
CONFIG_CC_STACKPROTECTOR=y
|
|
||||||
# CONFIG_CC_STACKPROTECTOR_NONE is not set
|
# CONFIG_CC_STACKPROTECTOR_NONE is not set
|
||||||
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
|
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
|
||||||
CONFIG_CC_STACKPROTECTOR_STRONG=y
|
CONFIG_CC_STACKPROTECTOR_STRONG=y
|
||||||
|
# CONFIG_CC_STACKPROTECTOR_AUTO is not set
|
||||||
CONFIG_THIN_ARCHIVES=y
|
CONFIG_THIN_ARCHIVES=y
|
||||||
CONFIG_HAVE_CONTEXT_TRACKING=y
|
CONFIG_HAVE_CONTEXT_TRACKING=y
|
||||||
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
|
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
|
||||||
|
@ -287,7 +286,8 @@ CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
|
||||||
CONFIG_STRICT_KERNEL_RWX=y
|
CONFIG_STRICT_KERNEL_RWX=y
|
||||||
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
|
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
|
||||||
CONFIG_STRICT_MODULE_RWX=y
|
CONFIG_STRICT_MODULE_RWX=y
|
||||||
# CONFIG_REFCOUNT_FULL is not set
|
CONFIG_ARCH_HAS_PHYS_TO_DMA=y
|
||||||
|
CONFIG_REFCOUNT_FULL=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# GCOV-based kernel profiling
|
# GCOV-based kernel profiling
|
||||||
|
@ -711,6 +711,11 @@ CONFIG_PCI_ECAM=y
|
||||||
CONFIG_PCI_LABEL=y
|
CONFIG_PCI_LABEL=y
|
||||||
# CONFIG_HOTPLUG_PCI is not set
|
# CONFIG_HOTPLUG_PCI is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Cadence PCIe controllers support
|
||||||
|
#
|
||||||
|
# CONFIG_PCIE_CADENCE_HOST is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# DesignWare PCI Core Support
|
# DesignWare PCI Core Support
|
||||||
#
|
#
|
||||||
|
@ -733,7 +738,6 @@ CONFIG_PCI_TEGRA=y
|
||||||
CONFIG_PCI_HOST_COMMON=y
|
CONFIG_PCI_HOST_COMMON=y
|
||||||
CONFIG_PCI_HOST_GENERIC=y
|
CONFIG_PCI_HOST_GENERIC=y
|
||||||
# CONFIG_PCI_V3_SEMI is not set
|
# CONFIG_PCI_V3_SEMI is not set
|
||||||
# CONFIG_PCIE_ALTERA is not set
|
|
||||||
# CONFIG_PCIE_ROCKCHIP is not set
|
# CONFIG_PCIE_ROCKCHIP is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -892,6 +896,7 @@ CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y
|
||||||
#
|
#
|
||||||
CONFIG_CPUFREQ_DT=m
|
CONFIG_CPUFREQ_DT=m
|
||||||
CONFIG_CPUFREQ_DT_PLATDEV=y
|
CONFIG_CPUFREQ_DT_PLATDEV=y
|
||||||
|
CONFIG_ARM_ARMADA_37XX_CPUFREQ=m
|
||||||
# CONFIG_ARM_BIG_LITTLE_CPUFREQ is not set
|
# CONFIG_ARM_BIG_LITTLE_CPUFREQ is not set
|
||||||
CONFIG_ARM_EXYNOS5440_CPUFREQ=y
|
CONFIG_ARM_EXYNOS5440_CPUFREQ=y
|
||||||
CONFIG_ARM_HIGHBANK_CPUFREQ=m
|
CONFIG_ARM_HIGHBANK_CPUFREQ=m
|
||||||
|
@ -1086,12 +1091,15 @@ CONFIG_BRIDGE_NETFILTER=m
|
||||||
#
|
#
|
||||||
CONFIG_NETFILTER_INGRESS=y
|
CONFIG_NETFILTER_INGRESS=y
|
||||||
CONFIG_NETFILTER_NETLINK=m
|
CONFIG_NETFILTER_NETLINK=m
|
||||||
|
CONFIG_NETFILTER_FAMILY_BRIDGE=y
|
||||||
|
CONFIG_NETFILTER_FAMILY_ARP=y
|
||||||
CONFIG_NETFILTER_NETLINK_ACCT=m
|
CONFIG_NETFILTER_NETLINK_ACCT=m
|
||||||
CONFIG_NETFILTER_NETLINK_QUEUE=m
|
CONFIG_NETFILTER_NETLINK_QUEUE=m
|
||||||
CONFIG_NETFILTER_NETLINK_LOG=m
|
CONFIG_NETFILTER_NETLINK_LOG=m
|
||||||
CONFIG_NF_CONNTRACK=m
|
CONFIG_NF_CONNTRACK=m
|
||||||
CONFIG_NF_LOG_COMMON=m
|
CONFIG_NF_LOG_COMMON=m
|
||||||
# CONFIG_NF_LOG_NETDEV is not set
|
# CONFIG_NF_LOG_NETDEV is not set
|
||||||
|
CONFIG_NETFILTER_CONNCOUNT=m
|
||||||
CONFIG_NF_CONNTRACK_MARK=y
|
CONFIG_NF_CONNTRACK_MARK=y
|
||||||
CONFIG_NF_CONNTRACK_SECMARK=y
|
CONFIG_NF_CONNTRACK_SECMARK=y
|
||||||
CONFIG_NF_CONNTRACK_ZONES=y
|
CONFIG_NF_CONNTRACK_ZONES=y
|
||||||
|
@ -1139,6 +1147,7 @@ CONFIG_NFT_META=m
|
||||||
# CONFIG_NFT_RT is not set
|
# CONFIG_NFT_RT is not set
|
||||||
CONFIG_NFT_NUMGEN=m
|
CONFIG_NFT_NUMGEN=m
|
||||||
CONFIG_NFT_CT=m
|
CONFIG_NFT_CT=m
|
||||||
|
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||||
CONFIG_NFT_SET_RBTREE=m
|
CONFIG_NFT_SET_RBTREE=m
|
||||||
CONFIG_NFT_SET_HASH=m
|
CONFIG_NFT_SET_HASH=m
|
||||||
# CONFIG_NFT_SET_BITMAP is not set
|
# CONFIG_NFT_SET_BITMAP is not set
|
||||||
|
@ -1161,6 +1170,8 @@ CONFIG_NF_DUP_NETDEV=m
|
||||||
CONFIG_NFT_DUP_NETDEV=m
|
CONFIG_NFT_DUP_NETDEV=m
|
||||||
CONFIG_NFT_FWD_NETDEV=m
|
CONFIG_NFT_FWD_NETDEV=m
|
||||||
CONFIG_NFT_FIB_NETDEV=m
|
CONFIG_NFT_FIB_NETDEV=m
|
||||||
|
CONFIG_NF_FLOW_TABLE_INET=m
|
||||||
|
CONFIG_NF_FLOW_TABLE=m
|
||||||
CONFIG_NETFILTER_XTABLES=m
|
CONFIG_NETFILTER_XTABLES=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1322,6 +1333,7 @@ CONFIG_NFT_REJECT_IPV4=m
|
||||||
CONFIG_NFT_DUP_IPV4=m
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NFT_FIB_IPV4=m
|
CONFIG_NFT_FIB_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
|
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||||
CONFIG_NF_DUP_IPV4=m
|
CONFIG_NF_DUP_IPV4=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NF_LOG_IPV4=m
|
CONFIG_NF_LOG_IPV4=m
|
||||||
|
@ -1368,6 +1380,7 @@ CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
CONFIG_NFT_REJECT_IPV6=m
|
CONFIG_NFT_REJECT_IPV6=m
|
||||||
CONFIG_NFT_DUP_IPV6=m
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_FIB_IPV6=m
|
CONFIG_NFT_FIB_IPV6=m
|
||||||
|
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||||
CONFIG_NF_DUP_IPV6=m
|
CONFIG_NF_DUP_IPV6=m
|
||||||
CONFIG_NF_REJECT_IPV6=m
|
CONFIG_NF_REJECT_IPV6=m
|
||||||
CONFIG_NF_LOG_IPV6=m
|
CONFIG_NF_LOG_IPV6=m
|
||||||
|
@ -1386,6 +1399,7 @@ CONFIG_IP6_NF_MATCH_IPV6HEADER=m
|
||||||
CONFIG_IP6_NF_MATCH_MH=m
|
CONFIG_IP6_NF_MATCH_MH=m
|
||||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||||
CONFIG_IP6_NF_MATCH_RT=m
|
CONFIG_IP6_NF_MATCH_RT=m
|
||||||
|
CONFIG_IP6_NF_MATCH_SRH=m
|
||||||
CONFIG_IP6_NF_TARGET_HL=m
|
CONFIG_IP6_NF_TARGET_HL=m
|
||||||
CONFIG_IP6_NF_FILTER=m
|
CONFIG_IP6_NF_FILTER=m
|
||||||
CONFIG_IP6_NF_TARGET_REJECT=m
|
CONFIG_IP6_NF_TARGET_REJECT=m
|
||||||
|
@ -1436,9 +1450,7 @@ CONFIG_IP_DCCP_TFRC_LIB=y
|
||||||
# DCCP Kernel Hacking
|
# DCCP Kernel Hacking
|
||||||
#
|
#
|
||||||
# CONFIG_IP_DCCP_DEBUG is not set
|
# CONFIG_IP_DCCP_DEBUG is not set
|
||||||
CONFIG_NET_DCCPPROBE=m
|
|
||||||
CONFIG_IP_SCTP=m
|
CONFIG_IP_SCTP=m
|
||||||
CONFIG_NET_SCTPPROBE=m
|
|
||||||
# CONFIG_SCTP_DBG_OBJCNT is not set
|
# CONFIG_SCTP_DBG_OBJCNT is not set
|
||||||
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y
|
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y
|
||||||
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set
|
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set
|
||||||
|
@ -1473,6 +1485,7 @@ CONFIG_BRIDGE_IGMP_SNOOPING=y
|
||||||
CONFIG_BRIDGE_VLAN_FILTERING=y
|
CONFIG_BRIDGE_VLAN_FILTERING=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
CONFIG_NET_DSA=m
|
CONFIG_NET_DSA=m
|
||||||
|
CONFIG_NET_DSA_LEGACY=y
|
||||||
CONFIG_NET_DSA_TAG_BRCM=y
|
CONFIG_NET_DSA_TAG_BRCM=y
|
||||||
CONFIG_NET_DSA_TAG_BRCM_PREPEND=y
|
CONFIG_NET_DSA_TAG_BRCM_PREPEND=y
|
||||||
CONFIG_NET_DSA_TAG_DSA=y
|
CONFIG_NET_DSA_TAG_DSA=y
|
||||||
|
@ -1484,7 +1497,6 @@ CONFIG_VLAN_8021Q_MVRP=y
|
||||||
# CONFIG_DECNET is not set
|
# CONFIG_DECNET is not set
|
||||||
CONFIG_LLC=m
|
CONFIG_LLC=m
|
||||||
CONFIG_LLC2=m
|
CONFIG_LLC2=m
|
||||||
# CONFIG_IPX is not set
|
|
||||||
CONFIG_ATALK=m
|
CONFIG_ATALK=m
|
||||||
CONFIG_DEV_APPLETALK=m
|
CONFIG_DEV_APPLETALK=m
|
||||||
CONFIG_IPDDP=m
|
CONFIG_IPDDP=m
|
||||||
|
@ -1639,7 +1651,6 @@ CONFIG_NET_FLOW_LIMIT=y
|
||||||
# Network testing
|
# Network testing
|
||||||
#
|
#
|
||||||
CONFIG_NET_PKTGEN=m
|
CONFIG_NET_PKTGEN=m
|
||||||
# CONFIG_NET_TCPPROBE is not set
|
|
||||||
CONFIG_NET_DROP_MONITOR=m
|
CONFIG_NET_DROP_MONITOR=m
|
||||||
# CONFIG_HAMRADIO is not set
|
# CONFIG_HAMRADIO is not set
|
||||||
CONFIG_CAN=m
|
CONFIG_CAN=m
|
||||||
|
@ -1716,6 +1727,7 @@ CONFIG_BT_INTEL=m
|
||||||
CONFIG_BT_BCM=m
|
CONFIG_BT_BCM=m
|
||||||
CONFIG_BT_RTL=m
|
CONFIG_BT_RTL=m
|
||||||
CONFIG_BT_HCIBTUSB=m
|
CONFIG_BT_HCIBTUSB=m
|
||||||
|
# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set
|
||||||
CONFIG_BT_HCIBTUSB_BCM=y
|
CONFIG_BT_HCIBTUSB_BCM=y
|
||||||
CONFIG_BT_HCIBTUSB_RTL=y
|
CONFIG_BT_HCIBTUSB_RTL=y
|
||||||
CONFIG_BT_HCIBTSDIO=m
|
CONFIG_BT_HCIBTSDIO=m
|
||||||
|
@ -1825,7 +1837,6 @@ CONFIG_DEVTMPFS_MOUNT=y
|
||||||
CONFIG_STANDALONE=y
|
CONFIG_STANDALONE=y
|
||||||
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
CONFIG_FW_LOADER=y
|
CONFIG_FW_LOADER=y
|
||||||
# CONFIG_FIRMWARE_IN_KERNEL is not set
|
|
||||||
CONFIG_EXTRA_FIRMWARE=""
|
CONFIG_EXTRA_FIRMWARE=""
|
||||||
CONFIG_FW_LOADER_USER_HELPER=y
|
CONFIG_FW_LOADER_USER_HELPER=y
|
||||||
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
||||||
|
@ -1976,6 +1987,7 @@ CONFIG_MTD_NAND_RICOH=m
|
||||||
# CONFIG_MTD_NAND_DOCG4 is not set
|
# CONFIG_MTD_NAND_DOCG4 is not set
|
||||||
CONFIG_MTD_NAND_CAFE=m
|
CONFIG_MTD_NAND_CAFE=m
|
||||||
CONFIG_MTD_NAND_PXA3xx=m
|
CONFIG_MTD_NAND_PXA3xx=m
|
||||||
|
CONFIG_MTD_NAND_MARVELL=m
|
||||||
CONFIG_MTD_NAND_NANDSIM=m
|
CONFIG_MTD_NAND_NANDSIM=m
|
||||||
CONFIG_MTD_NAND_GPMI_NAND=m
|
CONFIG_MTD_NAND_GPMI_NAND=m
|
||||||
# CONFIG_MTD_NAND_BRCMNAND is not set
|
# CONFIG_MTD_NAND_BRCMNAND is not set
|
||||||
|
@ -2016,12 +2028,9 @@ CONFIG_OF_EARLY_FLATTREE=y
|
||||||
CONFIG_OF_KOBJ=y
|
CONFIG_OF_KOBJ=y
|
||||||
CONFIG_OF_DYNAMIC=y
|
CONFIG_OF_DYNAMIC=y
|
||||||
CONFIG_OF_ADDRESS=y
|
CONFIG_OF_ADDRESS=y
|
||||||
CONFIG_OF_ADDRESS_PCI=y
|
|
||||||
CONFIG_OF_IRQ=y
|
CONFIG_OF_IRQ=y
|
||||||
CONFIG_OF_NET=y
|
CONFIG_OF_NET=y
|
||||||
CONFIG_OF_MDIO=y
|
CONFIG_OF_MDIO=y
|
||||||
CONFIG_OF_PCI=y
|
|
||||||
CONFIG_OF_PCI_IRQ=y
|
|
||||||
CONFIG_OF_RESERVED_MEM=y
|
CONFIG_OF_RESERVED_MEM=y
|
||||||
CONFIG_OF_RESOLVE=y
|
CONFIG_OF_RESOLVE=y
|
||||||
CONFIG_OF_OVERLAY=y
|
CONFIG_OF_OVERLAY=y
|
||||||
|
@ -2103,6 +2112,7 @@ CONFIG_SRAM=y
|
||||||
CONFIG_SRAM_EXEC=y
|
CONFIG_SRAM_EXEC=y
|
||||||
CONFIG_VEXPRESS_SYSCFG=y
|
CONFIG_VEXPRESS_SYSCFG=y
|
||||||
# CONFIG_PCI_ENDPOINT_TEST is not set
|
# CONFIG_PCI_ENDPOINT_TEST is not set
|
||||||
|
CONFIG_MISC_RTSX=m
|
||||||
CONFIG_C2PORT=m
|
CONFIG_C2PORT=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -2166,6 +2176,9 @@ CONFIG_ALTERA_STAPL=m
|
||||||
# CONFIG_CXL_BASE is not set
|
# CONFIG_CXL_BASE is not set
|
||||||
# CONFIG_CXL_AFU_DRIVER_OPS is not set
|
# CONFIG_CXL_AFU_DRIVER_OPS is not set
|
||||||
# CONFIG_CXL_LIB is not set
|
# CONFIG_CXL_LIB is not set
|
||||||
|
# CONFIG_OCXL_BASE is not set
|
||||||
|
CONFIG_MISC_RTSX_PCI=m
|
||||||
|
CONFIG_MISC_RTSX_USB=m
|
||||||
CONFIG_HAVE_IDE=y
|
CONFIG_HAVE_IDE=y
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
|
@ -2293,6 +2306,7 @@ CONFIG_SATA_PMP=y
|
||||||
# Controllers with non-SFF native interface
|
# Controllers with non-SFF native interface
|
||||||
#
|
#
|
||||||
CONFIG_SATA_AHCI=m
|
CONFIG_SATA_AHCI=m
|
||||||
|
CONFIG_SATA_MOBILE_LPM_POLICY=0
|
||||||
CONFIG_SATA_AHCI_PLATFORM=m
|
CONFIG_SATA_AHCI_PLATFORM=m
|
||||||
# CONFIG_AHCI_DM816 is not set
|
# CONFIG_AHCI_DM816 is not set
|
||||||
CONFIG_AHCI_IMX=m
|
CONFIG_AHCI_IMX=m
|
||||||
|
@ -2405,6 +2419,7 @@ CONFIG_DM_BUFIO=m
|
||||||
# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
|
# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
|
||||||
CONFIG_DM_BIO_PRISON=m
|
CONFIG_DM_BIO_PRISON=m
|
||||||
CONFIG_DM_PERSISTENT_DATA=m
|
CONFIG_DM_PERSISTENT_DATA=m
|
||||||
|
CONFIG_DM_UNSTRIPED=m
|
||||||
CONFIG_DM_CRYPT=m
|
CONFIG_DM_CRYPT=m
|
||||||
CONFIG_DM_SNAPSHOT=m
|
CONFIG_DM_SNAPSHOT=m
|
||||||
CONFIG_DM_THIN_PROVISIONING=m
|
CONFIG_DM_THIN_PROVISIONING=m
|
||||||
|
@ -2587,6 +2602,8 @@ CONFIG_NET_VENDOR_CIRRUS=y
|
||||||
# CONFIG_CS89x0 is not set
|
# CONFIG_CS89x0 is not set
|
||||||
CONFIG_NET_VENDOR_CISCO=y
|
CONFIG_NET_VENDOR_CISCO=y
|
||||||
CONFIG_ENIC=m
|
CONFIG_ENIC=m
|
||||||
|
CONFIG_NET_VENDOR_CORTINA=y
|
||||||
|
CONFIG_GEMINI_ETHERNET=m
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
# CONFIG_DNET is not set
|
# CONFIG_DNET is not set
|
||||||
CONFIG_NET_VENDOR_DEC=y
|
CONFIG_NET_VENDOR_DEC=y
|
||||||
|
@ -2755,6 +2772,7 @@ CONFIG_SMC911X=m
|
||||||
CONFIG_SMSC911X=m
|
CONFIG_SMSC911X=m
|
||||||
# CONFIG_SMSC911X_ARCH_HOOKS is not set
|
# CONFIG_SMSC911X_ARCH_HOOKS is not set
|
||||||
CONFIG_SMSC9420=m
|
CONFIG_SMSC9420=m
|
||||||
|
CONFIG_NET_VENDOR_SOCIONEXT=y
|
||||||
CONFIG_NET_VENDOR_STMICRO=y
|
CONFIG_NET_VENDOR_STMICRO=y
|
||||||
CONFIG_STMMAC_ETH=m
|
CONFIG_STMMAC_ETH=m
|
||||||
CONFIG_STMMAC_PLATFORM=m
|
CONFIG_STMMAC_PLATFORM=m
|
||||||
|
@ -2802,7 +2820,9 @@ CONFIG_MDIO_BUS_MUX=m
|
||||||
# CONFIG_MDIO_BUS_MUX_GPIO is not set
|
# CONFIG_MDIO_BUS_MUX_GPIO is not set
|
||||||
# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
|
# CONFIG_MDIO_BUS_MUX_MMIOREG is not set
|
||||||
# CONFIG_MDIO_HISI_FEMAC is not set
|
# CONFIG_MDIO_HISI_FEMAC is not set
|
||||||
|
CONFIG_MDIO_I2C=m
|
||||||
CONFIG_MDIO_SUN4I=y
|
CONFIG_MDIO_SUN4I=y
|
||||||
|
CONFIG_PHYLINK=m
|
||||||
CONFIG_PHYLIB=y
|
CONFIG_PHYLIB=y
|
||||||
CONFIG_SWPHY=y
|
CONFIG_SWPHY=y
|
||||||
# CONFIG_LED_TRIGGER_PHY is not set
|
# CONFIG_LED_TRIGGER_PHY is not set
|
||||||
|
@ -2810,6 +2830,7 @@ CONFIG_SWPHY=y
|
||||||
#
|
#
|
||||||
# MII PHY device drivers
|
# MII PHY device drivers
|
||||||
#
|
#
|
||||||
|
CONFIG_SFP=m
|
||||||
CONFIG_AMD_PHY=m
|
CONFIG_AMD_PHY=m
|
||||||
CONFIG_AQUANTIA_PHY=m
|
CONFIG_AQUANTIA_PHY=m
|
||||||
CONFIG_AT803X_PHY=m
|
CONFIG_AT803X_PHY=m
|
||||||
|
@ -2969,6 +2990,8 @@ CONFIG_B43_SSB=y
|
||||||
CONFIG_B43_BUSES_BCMA_AND_SSB=y
|
CONFIG_B43_BUSES_BCMA_AND_SSB=y
|
||||||
# CONFIG_B43_BUSES_BCMA is not set
|
# CONFIG_B43_BUSES_BCMA is not set
|
||||||
# CONFIG_B43_BUSES_SSB is not set
|
# CONFIG_B43_BUSES_SSB is not set
|
||||||
|
CONFIG_B43_PCI_AUTOSELECT=y
|
||||||
|
CONFIG_B43_PCICORE_AUTOSELECT=y
|
||||||
CONFIG_B43_SDIO=y
|
CONFIG_B43_SDIO=y
|
||||||
CONFIG_B43_BCMA_PIO=y
|
CONFIG_B43_BCMA_PIO=y
|
||||||
CONFIG_B43_PIO=y
|
CONFIG_B43_PIO=y
|
||||||
|
@ -2980,6 +3003,8 @@ CONFIG_B43_LEDS=y
|
||||||
CONFIG_B43_HWRNG=y
|
CONFIG_B43_HWRNG=y
|
||||||
# CONFIG_B43_DEBUG is not set
|
# CONFIG_B43_DEBUG is not set
|
||||||
CONFIG_B43LEGACY=m
|
CONFIG_B43LEGACY=m
|
||||||
|
CONFIG_B43LEGACY_PCI_AUTOSELECT=y
|
||||||
|
CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y
|
||||||
CONFIG_B43LEGACY_LEDS=y
|
CONFIG_B43LEGACY_LEDS=y
|
||||||
CONFIG_B43LEGACY_HWRNG=y
|
CONFIG_B43LEGACY_HWRNG=y
|
||||||
CONFIG_B43LEGACY_DEBUG=y
|
CONFIG_B43LEGACY_DEBUG=y
|
||||||
|
@ -3057,6 +3082,8 @@ CONFIG_LIBERTAS_THINFIRM_USB=m
|
||||||
CONFIG_MWL8K=m
|
CONFIG_MWL8K=m
|
||||||
CONFIG_WLAN_VENDOR_MEDIATEK=y
|
CONFIG_WLAN_VENDOR_MEDIATEK=y
|
||||||
CONFIG_MT7601U=m
|
CONFIG_MT7601U=m
|
||||||
|
CONFIG_MT76_CORE=m
|
||||||
|
CONFIG_MT76x2E=m
|
||||||
CONFIG_WLAN_VENDOR_RALINK=y
|
CONFIG_WLAN_VENDOR_RALINK=y
|
||||||
CONFIG_RT2X00=m
|
CONFIG_RT2X00=m
|
||||||
CONFIG_RT2400PCI=m
|
CONFIG_RT2400PCI=m
|
||||||
|
@ -3154,6 +3181,7 @@ CONFIG_IEEE802154_ADF7242=m
|
||||||
CONFIG_XEN_NETDEV_FRONTEND=m
|
CONFIG_XEN_NETDEV_FRONTEND=m
|
||||||
CONFIG_XEN_NETDEV_BACKEND=m
|
CONFIG_XEN_NETDEV_BACKEND=m
|
||||||
# CONFIG_VMXNET3 is not set
|
# CONFIG_VMXNET3 is not set
|
||||||
|
CONFIG_NETDEVSIM=m
|
||||||
# CONFIG_ISDN is not set
|
# CONFIG_ISDN is not set
|
||||||
# CONFIG_NVM is not set
|
# CONFIG_NVM is not set
|
||||||
|
|
||||||
|
@ -3355,7 +3383,6 @@ CONFIG_INPUT_MISC=y
|
||||||
CONFIG_INPUT_MMA8450=m
|
CONFIG_INPUT_MMA8450=m
|
||||||
# CONFIG_INPUT_GP2A is not set
|
# CONFIG_INPUT_GP2A is not set
|
||||||
# CONFIG_INPUT_GPIO_BEEPER is not set
|
# CONFIG_INPUT_GPIO_BEEPER is not set
|
||||||
# CONFIG_INPUT_GPIO_TILT_POLLED is not set
|
|
||||||
# CONFIG_INPUT_GPIO_DECODER is not set
|
# CONFIG_INPUT_GPIO_DECODER is not set
|
||||||
CONFIG_INPUT_ATI_REMOTE2=m
|
CONFIG_INPUT_ATI_REMOTE2=m
|
||||||
CONFIG_INPUT_KEYSPAN_REMOTE=m
|
CONFIG_INPUT_KEYSPAN_REMOTE=m
|
||||||
|
@ -3519,7 +3546,7 @@ CONFIG_HW_RANDOM_OMAP=m
|
||||||
CONFIG_HW_RANDOM_OMAP3_ROM=m
|
CONFIG_HW_RANDOM_OMAP3_ROM=m
|
||||||
CONFIG_HW_RANDOM_VIRTIO=m
|
CONFIG_HW_RANDOM_VIRTIO=m
|
||||||
CONFIG_HW_RANDOM_IMX_RNGC=m
|
CONFIG_HW_RANDOM_IMX_RNGC=m
|
||||||
CONFIG_HW_RANDOM_TPM=m
|
CONFIG_HW_RANDOM_EXYNOS=m
|
||||||
# CONFIG_NVRAM is not set
|
# CONFIG_NVRAM is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
# CONFIG_APPLICOM is not set
|
# CONFIG_APPLICOM is not set
|
||||||
|
@ -3597,6 +3624,7 @@ CONFIG_I2C_BCM2835=m
|
||||||
# CONFIG_I2C_EMEV2 is not set
|
# CONFIG_I2C_EMEV2 is not set
|
||||||
CONFIG_I2C_EXYNOS5=m
|
CONFIG_I2C_EXYNOS5=m
|
||||||
CONFIG_I2C_GPIO=y
|
CONFIG_I2C_GPIO=y
|
||||||
|
# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set
|
||||||
CONFIG_I2C_IMX=m
|
CONFIG_I2C_IMX=m
|
||||||
# CONFIG_I2C_IMX_LPI2C is not set
|
# CONFIG_I2C_IMX_LPI2C is not set
|
||||||
CONFIG_I2C_MV64XXX=m
|
CONFIG_I2C_MV64XXX=m
|
||||||
|
@ -3731,6 +3759,7 @@ CONFIG_PINCONF=y
|
||||||
CONFIG_GENERIC_PINCONF=y
|
CONFIG_GENERIC_PINCONF=y
|
||||||
# CONFIG_DEBUG_PINCTRL is not set
|
# CONFIG_DEBUG_PINCTRL is not set
|
||||||
CONFIG_PINCTRL_AS3722=y
|
CONFIG_PINCTRL_AS3722=y
|
||||||
|
CONFIG_PINCTRL_AXP209=m
|
||||||
# CONFIG_PINCTRL_AMD is not set
|
# CONFIG_PINCTRL_AMD is not set
|
||||||
CONFIG_PINCTRL_MCP23S08=m
|
CONFIG_PINCTRL_MCP23S08=m
|
||||||
CONFIG_PINCTRL_ROCKCHIP=y
|
CONFIG_PINCTRL_ROCKCHIP=y
|
||||||
|
@ -3790,7 +3819,6 @@ CONFIG_GPIO_GENERIC=y
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_74XX_MMIO is not set
|
# CONFIG_GPIO_74XX_MMIO is not set
|
||||||
# CONFIG_GPIO_ALTERA is not set
|
# CONFIG_GPIO_ALTERA is not set
|
||||||
CONFIG_GPIO_AXP209=m
|
|
||||||
# CONFIG_GPIO_DWAPB is not set
|
# CONFIG_GPIO_DWAPB is not set
|
||||||
# CONFIG_GPIO_EXAR is not set
|
# CONFIG_GPIO_EXAR is not set
|
||||||
# CONFIG_GPIO_FTGPIO010 is not set
|
# CONFIG_GPIO_FTGPIO010 is not set
|
||||||
|
@ -3836,6 +3864,7 @@ CONFIG_GPIO_TWL6040=y
|
||||||
# PCI GPIO expanders
|
# PCI GPIO expanders
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_PCI_IDIO_16 is not set
|
# CONFIG_GPIO_PCI_IDIO_16 is not set
|
||||||
|
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||||
# CONFIG_GPIO_RDC321X is not set
|
# CONFIG_GPIO_RDC321X is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -3894,7 +3923,6 @@ CONFIG_POWER_RESET_AS3722=y
|
||||||
# CONFIG_POWER_RESET_BRCMSTB is not set
|
# CONFIG_POWER_RESET_BRCMSTB is not set
|
||||||
CONFIG_POWER_RESET_GPIO=y
|
CONFIG_POWER_RESET_GPIO=y
|
||||||
CONFIG_POWER_RESET_GPIO_RESTART=y
|
CONFIG_POWER_RESET_GPIO_RESTART=y
|
||||||
# CONFIG_POWER_RESET_IMX is not set
|
|
||||||
# CONFIG_POWER_RESET_LTC2952 is not set
|
# CONFIG_POWER_RESET_LTC2952 is not set
|
||||||
# CONFIG_POWER_RESET_QNAP is not set
|
# CONFIG_POWER_RESET_QNAP is not set
|
||||||
CONFIG_POWER_RESET_RESTART=y
|
CONFIG_POWER_RESET_RESTART=y
|
||||||
|
@ -4077,6 +4105,7 @@ CONFIG_SENSORS_TMP421=m
|
||||||
# CONFIG_SENSORS_VIA686A is not set
|
# CONFIG_SENSORS_VIA686A is not set
|
||||||
CONFIG_SENSORS_VT1211=m
|
CONFIG_SENSORS_VT1211=m
|
||||||
CONFIG_SENSORS_VT8231=m
|
CONFIG_SENSORS_VT8231=m
|
||||||
|
CONFIG_SENSORS_W83773G=m
|
||||||
# CONFIG_SENSORS_W83781D is not set
|
# CONFIG_SENSORS_W83781D is not set
|
||||||
CONFIG_SENSORS_W83791D=m
|
CONFIG_SENSORS_W83791D=m
|
||||||
CONFIG_SENSORS_W83792D=m
|
CONFIG_SENSORS_W83792D=m
|
||||||
|
@ -4155,6 +4184,7 @@ CONFIG_DA9052_WATCHDOG=m
|
||||||
# CONFIG_ZIIRAVE_WATCHDOG is not set
|
# CONFIG_ZIIRAVE_WATCHDOG is not set
|
||||||
CONFIG_ARM_SP805_WATCHDOG=m
|
CONFIG_ARM_SP805_WATCHDOG=m
|
||||||
# CONFIG_CADENCE_WATCHDOG is not set
|
# CONFIG_CADENCE_WATCHDOG is not set
|
||||||
|
CONFIG_FTWDT010_WATCHDOG=m
|
||||||
CONFIG_HAVE_S3C2410_WATCHDOG=y
|
CONFIG_HAVE_S3C2410_WATCHDOG=y
|
||||||
CONFIG_S3C2410_WATCHDOG=m
|
CONFIG_S3C2410_WATCHDOG=m
|
||||||
CONFIG_DW_WATCHDOG=m
|
CONFIG_DW_WATCHDOG=m
|
||||||
|
@ -4188,16 +4218,18 @@ CONFIG_XEN_WDT=m
|
||||||
#
|
#
|
||||||
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
|
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
|
||||||
CONFIG_SSB_POSSIBLE=y
|
CONFIG_SSB_POSSIBLE=y
|
||||||
|
|
||||||
#
|
|
||||||
# Sonics Silicon Backplane
|
|
||||||
#
|
|
||||||
CONFIG_SSB=m
|
CONFIG_SSB=m
|
||||||
|
CONFIG_SSB_SPROM=y
|
||||||
CONFIG_SSB_BLOCKIO=y
|
CONFIG_SSB_BLOCKIO=y
|
||||||
|
CONFIG_SSB_PCIHOST_POSSIBLE=y
|
||||||
|
CONFIG_SSB_PCIHOST=y
|
||||||
|
CONFIG_SSB_B43_PCI_BRIDGE=y
|
||||||
CONFIG_SSB_SDIOHOST_POSSIBLE=y
|
CONFIG_SSB_SDIOHOST_POSSIBLE=y
|
||||||
CONFIG_SSB_SDIOHOST=y
|
CONFIG_SSB_SDIOHOST=y
|
||||||
# CONFIG_SSB_SILENT is not set
|
# CONFIG_SSB_SILENT is not set
|
||||||
# CONFIG_SSB_DEBUG is not set
|
# CONFIG_SSB_DEBUG is not set
|
||||||
|
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
|
||||||
|
CONFIG_SSB_DRIVER_PCICORE=y
|
||||||
# CONFIG_SSB_DRIVER_GPIO is not set
|
# CONFIG_SSB_DRIVER_GPIO is not set
|
||||||
CONFIG_BCMA_POSSIBLE=y
|
CONFIG_BCMA_POSSIBLE=y
|
||||||
CONFIG_BCMA=m
|
CONFIG_BCMA=m
|
||||||
|
@ -4232,6 +4264,7 @@ CONFIG_MFD_AXP20X_I2C=y
|
||||||
CONFIG_MFD_CROS_EC=m
|
CONFIG_MFD_CROS_EC=m
|
||||||
# CONFIG_MFD_CROS_EC_I2C is not set
|
# CONFIG_MFD_CROS_EC_I2C is not set
|
||||||
CONFIG_MFD_CROS_EC_SPI=m
|
CONFIG_MFD_CROS_EC_SPI=m
|
||||||
|
CONFIG_MFD_CROS_EC_CHARDEV=m
|
||||||
# CONFIG_MFD_ASIC3 is not set
|
# CONFIG_MFD_ASIC3 is not set
|
||||||
# CONFIG_PMIC_DA903X is not set
|
# CONFIG_PMIC_DA903X is not set
|
||||||
CONFIG_PMIC_DA9052=y
|
CONFIG_PMIC_DA9052=y
|
||||||
|
@ -4275,9 +4308,7 @@ CONFIG_MFD_VIPERBOARD=m
|
||||||
# CONFIG_UCB1400_CORE is not set
|
# CONFIG_UCB1400_CORE is not set
|
||||||
# CONFIG_MFD_PM8XXX is not set
|
# CONFIG_MFD_PM8XXX is not set
|
||||||
# CONFIG_MFD_RDC321X is not set
|
# CONFIG_MFD_RDC321X is not set
|
||||||
CONFIG_MFD_RTSX_PCI=m
|
|
||||||
# CONFIG_MFD_RT5033 is not set
|
# CONFIG_MFD_RT5033 is not set
|
||||||
CONFIG_MFD_RTSX_USB=m
|
|
||||||
# CONFIG_MFD_RC5T583 is not set
|
# CONFIG_MFD_RC5T583 is not set
|
||||||
CONFIG_MFD_RK808=y
|
CONFIG_MFD_RK808=y
|
||||||
# CONFIG_MFD_RN5T618 is not set
|
# CONFIG_MFD_RN5T618 is not set
|
||||||
|
@ -4396,9 +4427,8 @@ CONFIG_CEC_CORE=m
|
||||||
CONFIG_CEC_NOTIFIER=y
|
CONFIG_CEC_NOTIFIER=y
|
||||||
CONFIG_RC_CORE=y
|
CONFIG_RC_CORE=y
|
||||||
CONFIG_RC_MAP=m
|
CONFIG_RC_MAP=m
|
||||||
|
CONFIG_LIRC=y
|
||||||
CONFIG_RC_DECODERS=y
|
CONFIG_RC_DECODERS=y
|
||||||
CONFIG_LIRC=m
|
|
||||||
CONFIG_IR_LIRC_CODEC=m
|
|
||||||
CONFIG_IR_NEC_DECODER=m
|
CONFIG_IR_NEC_DECODER=m
|
||||||
CONFIG_IR_RC5_DECODER=m
|
CONFIG_IR_RC5_DECODER=m
|
||||||
CONFIG_IR_RC6_DECODER=m
|
CONFIG_IR_RC6_DECODER=m
|
||||||
|
@ -4454,18 +4484,14 @@ CONFIG_VIDEOBUF_GEN=m
|
||||||
CONFIG_VIDEOBUF_DMA_SG=m
|
CONFIG_VIDEOBUF_DMA_SG=m
|
||||||
CONFIG_VIDEOBUF_VMALLOC=m
|
CONFIG_VIDEOBUF_VMALLOC=m
|
||||||
CONFIG_VIDEOBUF_DVB=m
|
CONFIG_VIDEOBUF_DVB=m
|
||||||
CONFIG_VIDEOBUF2_CORE=m
|
|
||||||
CONFIG_VIDEOBUF2_MEMOPS=m
|
|
||||||
CONFIG_VIDEOBUF2_DMA_CONTIG=m
|
|
||||||
CONFIG_VIDEOBUF2_VMALLOC=m
|
|
||||||
CONFIG_VIDEOBUF2_DMA_SG=m
|
|
||||||
CONFIG_VIDEOBUF2_DVB=m
|
|
||||||
CONFIG_DVB_CORE=y
|
CONFIG_DVB_CORE=y
|
||||||
|
# CONFIG_DVB_MMAP is not set
|
||||||
CONFIG_DVB_NET=y
|
CONFIG_DVB_NET=y
|
||||||
CONFIG_TTPCI_EEPROM=m
|
CONFIG_TTPCI_EEPROM=m
|
||||||
CONFIG_DVB_MAX_ADAPTERS=8
|
CONFIG_DVB_MAX_ADAPTERS=8
|
||||||
CONFIG_DVB_DYNAMIC_MINORS=y
|
CONFIG_DVB_DYNAMIC_MINORS=y
|
||||||
# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
|
# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
|
||||||
|
# CONFIG_DVB_ULE_DEBUG is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Media drivers
|
# Media drivers
|
||||||
|
@ -4786,6 +4812,13 @@ CONFIG_MEDIA_COMMON_OPTIONS=y
|
||||||
CONFIG_VIDEO_CX2341X=m
|
CONFIG_VIDEO_CX2341X=m
|
||||||
CONFIG_VIDEO_TVEEPROM=m
|
CONFIG_VIDEO_TVEEPROM=m
|
||||||
CONFIG_CYPRESS_FIRMWARE=m
|
CONFIG_CYPRESS_FIRMWARE=m
|
||||||
|
CONFIG_VIDEOBUF2_CORE=m
|
||||||
|
CONFIG_VIDEOBUF2_V4L2=m
|
||||||
|
CONFIG_VIDEOBUF2_MEMOPS=m
|
||||||
|
CONFIG_VIDEOBUF2_DMA_CONTIG=m
|
||||||
|
CONFIG_VIDEOBUF2_VMALLOC=m
|
||||||
|
CONFIG_VIDEOBUF2_DMA_SG=m
|
||||||
|
CONFIG_VIDEOBUF2_DVB=m
|
||||||
CONFIG_DVB_B2C2_FLEXCOP=m
|
CONFIG_DVB_B2C2_FLEXCOP=m
|
||||||
CONFIG_VIDEO_SAA7146=m
|
CONFIG_VIDEO_SAA7146=m
|
||||||
CONFIG_VIDEO_SAA7146_VV=m
|
CONFIG_VIDEO_SAA7146_VV=m
|
||||||
|
@ -4881,6 +4914,7 @@ CONFIG_VIDEO_M52790=m
|
||||||
#
|
#
|
||||||
CONFIG_MEDIA_TUNER=y
|
CONFIG_MEDIA_TUNER=y
|
||||||
CONFIG_MEDIA_TUNER_SIMPLE=y
|
CONFIG_MEDIA_TUNER_SIMPLE=y
|
||||||
|
CONFIG_MEDIA_TUNER_TDA18250=m
|
||||||
CONFIG_MEDIA_TUNER_TDA8290=y
|
CONFIG_MEDIA_TUNER_TDA8290=y
|
||||||
CONFIG_MEDIA_TUNER_TDA827X=y
|
CONFIG_MEDIA_TUNER_TDA827X=y
|
||||||
CONFIG_MEDIA_TUNER_TDA18271=y
|
CONFIG_MEDIA_TUNER_TDA18271=y
|
||||||
|
@ -5134,7 +5168,6 @@ CONFIG_DRM_EXYNOS_HDMI=y
|
||||||
# Sub-drivers
|
# Sub-drivers
|
||||||
#
|
#
|
||||||
# CONFIG_DRM_EXYNOS_G2D is not set
|
# CONFIG_DRM_EXYNOS_G2D is not set
|
||||||
# CONFIG_DRM_EXYNOS_IPP is not set
|
|
||||||
CONFIG_DRM_ROCKCHIP=m
|
CONFIG_DRM_ROCKCHIP=m
|
||||||
CONFIG_ROCKCHIP_ANALOGIX_DP=y
|
CONFIG_ROCKCHIP_ANALOGIX_DP=y
|
||||||
# CONFIG_ROCKCHIP_CDN_DP is not set
|
# CONFIG_ROCKCHIP_CDN_DP is not set
|
||||||
|
@ -5197,6 +5230,7 @@ CONFIG_DRM_PANEL=y
|
||||||
#
|
#
|
||||||
# CONFIG_DRM_PANEL_LVDS is not set
|
# CONFIG_DRM_PANEL_LVDS is not set
|
||||||
CONFIG_DRM_PANEL_SIMPLE=m
|
CONFIG_DRM_PANEL_SIMPLE=m
|
||||||
|
CONFIG_DRM_PANEL_ILITEK_IL9322=m
|
||||||
# CONFIG_DRM_PANEL_INNOLUX_P079ZCA is not set
|
# CONFIG_DRM_PANEL_INNOLUX_P079ZCA is not set
|
||||||
# CONFIG_DRM_PANEL_JDI_LT070ME05000 is not set
|
# CONFIG_DRM_PANEL_JDI_LT070ME05000 is not set
|
||||||
# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set
|
# CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set
|
||||||
|
@ -5243,6 +5277,7 @@ CONFIG_DRM_IMX_HDMI=m
|
||||||
CONFIG_DRM_VC4=m
|
CONFIG_DRM_VC4=m
|
||||||
# CONFIG_DRM_VC4_HDMI_CEC is not set
|
# CONFIG_DRM_VC4_HDMI_CEC is not set
|
||||||
CONFIG_DRM_ETNAVIV=m
|
CONFIG_DRM_ETNAVIV=m
|
||||||
|
CONFIG_DRM_ETNAVIV_THERMAL=y
|
||||||
# CONFIG_DRM_ETNAVIV_REGISTER_LOGGING is not set
|
# CONFIG_DRM_ETNAVIV_REGISTER_LOGGING is not set
|
||||||
# CONFIG_DRM_ARCPGU is not set
|
# CONFIG_DRM_ARCPGU is not set
|
||||||
# CONFIG_DRM_HISI_HIBMC is not set
|
# CONFIG_DRM_HISI_HIBMC is not set
|
||||||
|
@ -5256,6 +5291,7 @@ CONFIG_DRM_LEGACY=y
|
||||||
# CONFIG_DRM_MGA is not set
|
# CONFIG_DRM_MGA is not set
|
||||||
CONFIG_DRM_VIA=m
|
CONFIG_DRM_VIA=m
|
||||||
CONFIG_DRM_SAVAGE=m
|
CONFIG_DRM_SAVAGE=m
|
||||||
|
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y
|
||||||
# CONFIG_DRM_LIB_RANDOM is not set
|
# CONFIG_DRM_LIB_RANDOM is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -5677,11 +5713,14 @@ CONFIG_SND_SOC_ES8328_SPI=m
|
||||||
CONFIG_SND_SOC_MAX98090=m
|
CONFIG_SND_SOC_MAX98090=m
|
||||||
# CONFIG_SND_SOC_MAX98504 is not set
|
# CONFIG_SND_SOC_MAX98504 is not set
|
||||||
# CONFIG_SND_SOC_MAX98927 is not set
|
# CONFIG_SND_SOC_MAX98927 is not set
|
||||||
|
# CONFIG_SND_SOC_MAX98373 is not set
|
||||||
# CONFIG_SND_SOC_MAX9860 is not set
|
# CONFIG_SND_SOC_MAX9860 is not set
|
||||||
# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
|
# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
|
||||||
# CONFIG_SND_SOC_PCM1681 is not set
|
# CONFIG_SND_SOC_PCM1681 is not set
|
||||||
# CONFIG_SND_SOC_PCM179X_I2C is not set
|
# CONFIG_SND_SOC_PCM179X_I2C is not set
|
||||||
# CONFIG_SND_SOC_PCM179X_SPI is not set
|
# CONFIG_SND_SOC_PCM179X_SPI is not set
|
||||||
|
# CONFIG_SND_SOC_PCM186X_I2C is not set
|
||||||
|
# CONFIG_SND_SOC_PCM186X_SPI is not set
|
||||||
# CONFIG_SND_SOC_PCM3168A_I2C is not set
|
# CONFIG_SND_SOC_PCM3168A_I2C is not set
|
||||||
# CONFIG_SND_SOC_PCM3168A_SPI is not set
|
# CONFIG_SND_SOC_PCM3168A_SPI is not set
|
||||||
# CONFIG_SND_SOC_PCM512x_I2C is not set
|
# CONFIG_SND_SOC_PCM512x_I2C is not set
|
||||||
|
@ -5707,13 +5746,17 @@ CONFIG_SND_SOC_SGTL5000=m
|
||||||
# CONFIG_SND_SOC_TAS5086 is not set
|
# CONFIG_SND_SOC_TAS5086 is not set
|
||||||
# CONFIG_SND_SOC_TAS571X is not set
|
# CONFIG_SND_SOC_TAS571X is not set
|
||||||
# CONFIG_SND_SOC_TAS5720 is not set
|
# CONFIG_SND_SOC_TAS5720 is not set
|
||||||
|
# CONFIG_SND_SOC_TAS6424 is not set
|
||||||
# CONFIG_SND_SOC_TFA9879 is not set
|
# CONFIG_SND_SOC_TFA9879 is not set
|
||||||
CONFIG_SND_SOC_TLV320AIC23=m
|
CONFIG_SND_SOC_TLV320AIC23=m
|
||||||
CONFIG_SND_SOC_TLV320AIC23_I2C=m
|
CONFIG_SND_SOC_TLV320AIC23_I2C=m
|
||||||
# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
|
# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
|
||||||
# CONFIG_SND_SOC_TLV320AIC31XX is not set
|
# CONFIG_SND_SOC_TLV320AIC31XX is not set
|
||||||
|
# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
|
||||||
|
# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
|
||||||
CONFIG_SND_SOC_TLV320AIC3X=m
|
CONFIG_SND_SOC_TLV320AIC3X=m
|
||||||
CONFIG_SND_SOC_TS3A227E=m
|
CONFIG_SND_SOC_TS3A227E=m
|
||||||
|
# CONFIG_SND_SOC_TSCS42XX is not set
|
||||||
CONFIG_SND_SOC_TWL4030=m
|
CONFIG_SND_SOC_TWL4030=m
|
||||||
CONFIG_SND_SOC_TWL6040=m
|
CONFIG_SND_SOC_TWL6040=m
|
||||||
# CONFIG_SND_SOC_WM8510 is not set
|
# CONFIG_SND_SOC_WM8510 is not set
|
||||||
|
@ -5798,6 +5841,7 @@ CONFIG_HID_WALTOP=m
|
||||||
CONFIG_HID_GYRATION=m
|
CONFIG_HID_GYRATION=m
|
||||||
CONFIG_HID_ICADE=m
|
CONFIG_HID_ICADE=m
|
||||||
# CONFIG_HID_ITE is not set
|
# CONFIG_HID_ITE is not set
|
||||||
|
CONFIG_HID_JABRA=m
|
||||||
CONFIG_HID_TWINHAN=m
|
CONFIG_HID_TWINHAN=m
|
||||||
CONFIG_HID_KENSINGTON=m
|
CONFIG_HID_KENSINGTON=m
|
||||||
CONFIG_HID_LCPOWER=m
|
CONFIG_HID_LCPOWER=m
|
||||||
|
@ -5903,6 +5947,7 @@ CONFIG_USB_WUSB_CBAF=m
|
||||||
#
|
#
|
||||||
# CONFIG_USB_C67X00_HCD is not set
|
# CONFIG_USB_C67X00_HCD is not set
|
||||||
CONFIG_USB_XHCI_HCD=m
|
CONFIG_USB_XHCI_HCD=m
|
||||||
|
# CONFIG_USB_XHCI_DBGCAP is not set
|
||||||
CONFIG_USB_XHCI_PCI=m
|
CONFIG_USB_XHCI_PCI=m
|
||||||
CONFIG_USB_XHCI_PLATFORM=m
|
CONFIG_USB_XHCI_PLATFORM=m
|
||||||
CONFIG_USB_XHCI_MVEBU=m
|
CONFIG_USB_XHCI_MVEBU=m
|
||||||
|
@ -6293,6 +6338,7 @@ CONFIG_MMC_WMT=m
|
||||||
CONFIG_MMC_REALTEK_PCI=m
|
CONFIG_MMC_REALTEK_PCI=m
|
||||||
CONFIG_MMC_REALTEK_USB=m
|
CONFIG_MMC_REALTEK_USB=m
|
||||||
CONFIG_MMC_SUNXI=m
|
CONFIG_MMC_SUNXI=m
|
||||||
|
CONFIG_MMC_CQHCI=m
|
||||||
CONFIG_MMC_TOSHIBA_PCI=m
|
CONFIG_MMC_TOSHIBA_PCI=m
|
||||||
CONFIG_MMC_BCM2835=m
|
CONFIG_MMC_BCM2835=m
|
||||||
# CONFIG_MMC_MTK is not set
|
# CONFIG_MMC_MTK is not set
|
||||||
|
@ -6328,6 +6374,7 @@ CONFIG_LEDS_CLASS=y
|
||||||
# CONFIG_LEDS_BCM6358 is not set
|
# CONFIG_LEDS_BCM6358 is not set
|
||||||
# CONFIG_LEDS_LM3530 is not set
|
# CONFIG_LEDS_LM3530 is not set
|
||||||
# CONFIG_LEDS_LM3642 is not set
|
# CONFIG_LEDS_LM3642 is not set
|
||||||
|
# CONFIG_LEDS_LM3692X is not set
|
||||||
# CONFIG_LEDS_PCA9532 is not set
|
# CONFIG_LEDS_PCA9532 is not set
|
||||||
CONFIG_LEDS_GPIO=m
|
CONFIG_LEDS_GPIO=m
|
||||||
CONFIG_LEDS_LP3944=m
|
CONFIG_LEDS_LP3944=m
|
||||||
|
@ -6383,6 +6430,7 @@ CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
|
||||||
CONFIG_LEDS_TRIGGER_TRANSIENT=m
|
CONFIG_LEDS_TRIGGER_TRANSIENT=m
|
||||||
CONFIG_LEDS_TRIGGER_CAMERA=m
|
CONFIG_LEDS_TRIGGER_CAMERA=m
|
||||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||||
|
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||||
CONFIG_ACCESSIBILITY=y
|
CONFIG_ACCESSIBILITY=y
|
||||||
CONFIG_A11Y_BRAILLE_CONSOLE=y
|
CONFIG_A11Y_BRAILLE_CONSOLE=y
|
||||||
CONFIG_INFINIBAND=m
|
CONFIG_INFINIBAND=m
|
||||||
|
@ -6521,6 +6569,7 @@ CONFIG_RTC_DRV_EFI=y
|
||||||
# CONFIG_RTC_DRV_RP5C01 is not set
|
# CONFIG_RTC_DRV_RP5C01 is not set
|
||||||
# CONFIG_RTC_DRV_V3020 is not set
|
# CONFIG_RTC_DRV_V3020 is not set
|
||||||
# CONFIG_RTC_DRV_ZYNQMP is not set
|
# CONFIG_RTC_DRV_ZYNQMP is not set
|
||||||
|
CONFIG_RTC_DRV_CROS_EC=m
|
||||||
|
|
||||||
#
|
#
|
||||||
# on-CPU RTC drivers
|
# on-CPU RTC drivers
|
||||||
|
@ -6540,6 +6589,7 @@ CONFIG_RTC_DRV_ARMADA38X=y
|
||||||
CONFIG_RTC_DRV_MC13XXX=m
|
CONFIG_RTC_DRV_MC13XXX=m
|
||||||
CONFIG_RTC_DRV_TEGRA=y
|
CONFIG_RTC_DRV_TEGRA=y
|
||||||
CONFIG_RTC_DRV_MXC=y
|
CONFIG_RTC_DRV_MXC=y
|
||||||
|
CONFIG_RTC_DRV_MXC_V2=m
|
||||||
CONFIG_RTC_DRV_SNVS=y
|
CONFIG_RTC_DRV_SNVS=y
|
||||||
# CONFIG_RTC_DRV_R7301 is not set
|
# CONFIG_RTC_DRV_R7301 is not set
|
||||||
|
|
||||||
|
@ -6611,10 +6661,7 @@ CONFIG_UIO_MF624=m
|
||||||
# CONFIG_VFIO is not set
|
# CONFIG_VFIO is not set
|
||||||
CONFIG_VIRT_DRIVERS=y
|
CONFIG_VIRT_DRIVERS=y
|
||||||
CONFIG_VIRTIO=m
|
CONFIG_VIRTIO=m
|
||||||
|
CONFIG_VIRTIO_MENU=y
|
||||||
#
|
|
||||||
# Virtio drivers
|
|
||||||
#
|
|
||||||
CONFIG_VIRTIO_PCI=m
|
CONFIG_VIRTIO_PCI=m
|
||||||
CONFIG_VIRTIO_PCI_LEGACY=y
|
CONFIG_VIRTIO_PCI_LEGACY=y
|
||||||
CONFIG_VIRTIO_BALLOON=m
|
CONFIG_VIRTIO_BALLOON=m
|
||||||
|
@ -6649,6 +6696,16 @@ CONFIG_XEN_EFI=y
|
||||||
CONFIG_XEN_AUTO_XLATE=y
|
CONFIG_XEN_AUTO_XLATE=y
|
||||||
CONFIG_STAGING=y
|
CONFIG_STAGING=y
|
||||||
# CONFIG_IRDA is not set
|
# CONFIG_IRDA is not set
|
||||||
|
# CONFIG_IPX is not set
|
||||||
|
CONFIG_NCP_FS=m
|
||||||
|
CONFIG_NCPFS_PACKET_SIGNING=y
|
||||||
|
CONFIG_NCPFS_IOCTL_LOCKING=y
|
||||||
|
CONFIG_NCPFS_STRONG=y
|
||||||
|
CONFIG_NCPFS_NFS_NS=y
|
||||||
|
CONFIG_NCPFS_OS2_NS=y
|
||||||
|
# CONFIG_NCPFS_SMALLDOS is not set
|
||||||
|
CONFIG_NCPFS_NLS=y
|
||||||
|
CONFIG_NCPFS_EXTRAS=y
|
||||||
# CONFIG_PRISM2_USB is not set
|
# CONFIG_PRISM2_USB is not set
|
||||||
# CONFIG_COMEDI is not set
|
# CONFIG_COMEDI is not set
|
||||||
# CONFIG_RTL8192U is not set
|
# CONFIG_RTL8192U is not set
|
||||||
|
@ -6658,8 +6715,6 @@ CONFIG_R8712U=m
|
||||||
CONFIG_R8188EU=m
|
CONFIG_R8188EU=m
|
||||||
CONFIG_88EU_AP_MODE=y
|
CONFIG_88EU_AP_MODE=y
|
||||||
CONFIG_R8822BE=m
|
CONFIG_R8822BE=m
|
||||||
CONFIG_RTLHALMAC_ST=m
|
|
||||||
CONFIG_RTLPHYDM_ST=m
|
|
||||||
CONFIG_RTLWIFI_DEBUG_ST=y
|
CONFIG_RTLWIFI_DEBUG_ST=y
|
||||||
# CONFIG_RTS5208 is not set
|
# CONFIG_RTS5208 is not set
|
||||||
# CONFIG_VT6655 is not set
|
# CONFIG_VT6655 is not set
|
||||||
|
@ -6769,6 +6824,7 @@ CONFIG_SPEAKUP_SYNTH_DUMMY=m
|
||||||
# CONFIG_LNET is not set
|
# CONFIG_LNET is not set
|
||||||
# CONFIG_DGNC is not set
|
# CONFIG_DGNC is not set
|
||||||
# CONFIG_GS_FPGABOOT is not set
|
# CONFIG_GS_FPGABOOT is not set
|
||||||
|
# CONFIG_UNISYSSPAR is not set
|
||||||
# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set
|
# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set
|
||||||
# CONFIG_FB_TFT is not set
|
# CONFIG_FB_TFT is not set
|
||||||
# CONFIG_WILC1000_SDIO is not set
|
# CONFIG_WILC1000_SDIO is not set
|
||||||
|
@ -6788,8 +6844,9 @@ CONFIG_BCM_VIDEOCORE=y
|
||||||
CONFIG_PI433=m
|
CONFIG_PI433=m
|
||||||
# CONFIG_GOLDFISH is not set
|
# CONFIG_GOLDFISH is not set
|
||||||
CONFIG_CHROME_PLATFORMS=y
|
CONFIG_CHROME_PLATFORMS=y
|
||||||
# CONFIG_CROS_EC_CHARDEV is not set
|
CONFIG_CROS_EC_CTL=m
|
||||||
CONFIG_CROS_EC_PROTO=y
|
CONFIG_CROS_EC_PROTO=y
|
||||||
|
# CONFIG_MELLANOX_PLATFORM is not set
|
||||||
CONFIG_CLKDEV_LOOKUP=y
|
CONFIG_CLKDEV_LOOKUP=y
|
||||||
CONFIG_HAVE_CLK_PREPARE=y
|
CONFIG_HAVE_CLK_PREPARE=y
|
||||||
CONFIG_COMMON_CLK=y
|
CONFIG_COMMON_CLK=y
|
||||||
|
@ -6912,6 +6969,7 @@ CONFIG_TEGRA_IOMMU_SMMU=y
|
||||||
#
|
#
|
||||||
# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
|
# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
|
||||||
# CONFIG_RPMSG_VIRTIO is not set
|
# CONFIG_RPMSG_VIRTIO is not set
|
||||||
|
# CONFIG_SOUNDWIRE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SOC (System On Chip) specific Drivers
|
# SOC (System On Chip) specific Drivers
|
||||||
|
@ -6949,6 +7007,11 @@ CONFIG_SOC_TEGRA_FUSE=y
|
||||||
CONFIG_SOC_TEGRA_FLOWCTRL=y
|
CONFIG_SOC_TEGRA_FLOWCTRL=y
|
||||||
CONFIG_SOC_TEGRA_PMC=y
|
CONFIG_SOC_TEGRA_PMC=y
|
||||||
# CONFIG_SOC_TI is not set
|
# CONFIG_SOC_TI is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Xilinx SoC drivers
|
||||||
|
#
|
||||||
|
# CONFIG_XILINX_VCU is not set
|
||||||
CONFIG_PM_DEVFREQ=y
|
CONFIG_PM_DEVFREQ=y
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -6986,6 +7049,7 @@ CONFIG_MEMORY=y
|
||||||
CONFIG_TI_EMIF=m
|
CONFIG_TI_EMIF=m
|
||||||
CONFIG_OMAP_GPMC=y
|
CONFIG_OMAP_GPMC=y
|
||||||
# CONFIG_OMAP_GPMC_DEBUG is not set
|
# CONFIG_OMAP_GPMC_DEBUG is not set
|
||||||
|
CONFIG_TI_EMIF_SRAM=m
|
||||||
CONFIG_MVEBU_DEVBUS=y
|
CONFIG_MVEBU_DEVBUS=y
|
||||||
CONFIG_SAMSUNG_MC=y
|
CONFIG_SAMSUNG_MC=y
|
||||||
CONFIG_EXYNOS_SROM=y
|
CONFIG_EXYNOS_SROM=y
|
||||||
|
@ -6994,6 +7058,7 @@ CONFIG_TEGRA124_EMC=y
|
||||||
CONFIG_IIO=m
|
CONFIG_IIO=m
|
||||||
CONFIG_IIO_BUFFER=y
|
CONFIG_IIO_BUFFER=y
|
||||||
# CONFIG_IIO_BUFFER_CB is not set
|
# CONFIG_IIO_BUFFER_CB is not set
|
||||||
|
# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
|
||||||
CONFIG_IIO_KFIFO_BUF=m
|
CONFIG_IIO_KFIFO_BUF=m
|
||||||
CONFIG_IIO_TRIGGERED_BUFFER=m
|
CONFIG_IIO_TRIGGERED_BUFFER=m
|
||||||
# CONFIG_IIO_CONFIGFS is not set
|
# CONFIG_IIO_CONFIGFS is not set
|
||||||
|
@ -7070,6 +7135,7 @@ CONFIG_LTC2471=m
|
||||||
# CONFIG_NAU7802 is not set
|
# CONFIG_NAU7802 is not set
|
||||||
# CONFIG_PALMAS_GPADC is not set
|
# CONFIG_PALMAS_GPADC is not set
|
||||||
CONFIG_ROCKCHIP_SARADC=m
|
CONFIG_ROCKCHIP_SARADC=m
|
||||||
|
CONFIG_SD_ADC_MODULATOR=m
|
||||||
# CONFIG_SUN4I_GPADC is not set
|
# CONFIG_SUN4I_GPADC is not set
|
||||||
# CONFIG_TI_ADC081C is not set
|
# CONFIG_TI_ADC081C is not set
|
||||||
# CONFIG_TI_ADC0832 is not set
|
# CONFIG_TI_ADC0832 is not set
|
||||||
|
@ -7247,6 +7313,7 @@ CONFIG_HID_SENSOR_PROX=m
|
||||||
# CONFIG_PA12203001 is not set
|
# CONFIG_PA12203001 is not set
|
||||||
# CONFIG_SI1145 is not set
|
# CONFIG_SI1145 is not set
|
||||||
# CONFIG_STK3310 is not set
|
# CONFIG_STK3310 is not set
|
||||||
|
# CONFIG_ST_UVIS25 is not set
|
||||||
# CONFIG_TCS3414 is not set
|
# CONFIG_TCS3414 is not set
|
||||||
# CONFIG_TCS3472 is not set
|
# CONFIG_TCS3472 is not set
|
||||||
CONFIG_SENSORS_TSL2563=m
|
CONFIG_SENSORS_TSL2563=m
|
||||||
|
@ -7256,6 +7323,7 @@ CONFIG_SENSORS_TSL2563=m
|
||||||
# CONFIG_VCNL4000 is not set
|
# CONFIG_VCNL4000 is not set
|
||||||
# CONFIG_VEML6070 is not set
|
# CONFIG_VEML6070 is not set
|
||||||
# CONFIG_VL6180 is not set
|
# CONFIG_VL6180 is not set
|
||||||
|
# CONFIG_ZOPT2201 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Magnetometer sensors
|
# Magnetometer sensors
|
||||||
|
@ -7457,19 +7525,16 @@ CONFIG_NVMEM_SUNXI_SID=m
|
||||||
# CONFIG_STM is not set
|
# CONFIG_STM is not set
|
||||||
# CONFIG_INTEL_TH is not set
|
# CONFIG_INTEL_TH is not set
|
||||||
# CONFIG_FPGA is not set
|
# CONFIG_FPGA is not set
|
||||||
|
|
||||||
#
|
|
||||||
# FSI support
|
|
||||||
#
|
|
||||||
# CONFIG_FSI is not set
|
# CONFIG_FSI is not set
|
||||||
# CONFIG_TEE is not set
|
# CONFIG_TEE is not set
|
||||||
CONFIG_PM_OPP=y
|
CONFIG_PM_OPP=y
|
||||||
|
# CONFIG_SIOX is not set
|
||||||
|
# CONFIG_SLIMBUS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Firmware Drivers
|
# Firmware Drivers
|
||||||
#
|
#
|
||||||
CONFIG_ARM_PSCI_FW=y
|
CONFIG_ARM_PSCI_FW=y
|
||||||
# CONFIG_ARM_PSCI_CHECKER is not set
|
|
||||||
# CONFIG_ARM_SCPI_PROTOCOL is not set
|
# CONFIG_ARM_SCPI_PROTOCOL is not set
|
||||||
# CONFIG_FIRMWARE_MEMMAP is not set
|
# CONFIG_FIRMWARE_MEMMAP is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
|
@ -7763,16 +7828,8 @@ CONFIG_CIFS_DEBUG=y
|
||||||
# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
|
# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
|
||||||
CONFIG_CIFS_DFS_UPCALL=y
|
CONFIG_CIFS_DFS_UPCALL=y
|
||||||
# CONFIG_CIFS_SMB311 is not set
|
# CONFIG_CIFS_SMB311 is not set
|
||||||
|
# CONFIG_CIFS_SMB_DIRECT is not set
|
||||||
CONFIG_CIFS_FSCACHE=y
|
CONFIG_CIFS_FSCACHE=y
|
||||||
CONFIG_NCP_FS=m
|
|
||||||
CONFIG_NCPFS_PACKET_SIGNING=y
|
|
||||||
CONFIG_NCPFS_IOCTL_LOCKING=y
|
|
||||||
CONFIG_NCPFS_STRONG=y
|
|
||||||
CONFIG_NCPFS_NFS_NS=y
|
|
||||||
CONFIG_NCPFS_OS2_NS=y
|
|
||||||
# CONFIG_NCPFS_SMALLDOS is not set
|
|
||||||
CONFIG_NCPFS_NLS=y
|
|
||||||
CONFIG_NCPFS_EXTRAS=y
|
|
||||||
CONFIG_CODA_FS=m
|
CONFIG_CODA_FS=m
|
||||||
CONFIG_AFS_FS=m
|
CONFIG_AFS_FS=m
|
||||||
# CONFIG_AFS_DEBUG is not set
|
# CONFIG_AFS_DEBUG is not set
|
||||||
|
@ -8007,10 +8064,7 @@ CONFIG_FTRACE_MCOUNT_RECORD=y
|
||||||
# CONFIG_TRACE_EVAL_MAP_FILE is not set
|
# CONFIG_TRACE_EVAL_MAP_FILE is not set
|
||||||
CONFIG_TRACING_EVENTS_GPIO=y
|
CONFIG_TRACING_EVENTS_GPIO=y
|
||||||
# CONFIG_DMA_API_DEBUG is not set
|
# CONFIG_DMA_API_DEBUG is not set
|
||||||
|
CONFIG_RUNTIME_TESTING_MENU=y
|
||||||
#
|
|
||||||
# Runtime Testing
|
|
||||||
#
|
|
||||||
# CONFIG_LKDTM is not set
|
# CONFIG_LKDTM is not set
|
||||||
# CONFIG_TEST_LIST_SORT is not set
|
# CONFIG_TEST_LIST_SORT is not set
|
||||||
# CONFIG_TEST_SORT is not set
|
# CONFIG_TEST_SORT is not set
|
||||||
|
@ -8032,7 +8086,7 @@ CONFIG_TRACING_EVENTS_GPIO=y
|
||||||
# CONFIG_TEST_LKM is not set
|
# CONFIG_TEST_LKM is not set
|
||||||
CONFIG_TEST_USER_COPY=m
|
CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
# CONFIG_TEST_FIND_BIT is not set
|
CONFIG_FIND_BIT_BENCHMARK=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
# CONFIG_TEST_SYSCTL is not set
|
# CONFIG_TEST_SYSCTL is not set
|
||||||
# CONFIG_TEST_UDELAY is not set
|
# CONFIG_TEST_UDELAY is not set
|
||||||
|
@ -8048,7 +8102,9 @@ CONFIG_HAVE_ARCH_KGDB=y
|
||||||
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
|
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
|
||||||
CONFIG_STRICT_DEVMEM=y
|
CONFIG_STRICT_DEVMEM=y
|
||||||
CONFIG_IO_STRICT_DEVMEM=y
|
CONFIG_IO_STRICT_DEVMEM=y
|
||||||
# CONFIG_ARM_PTDUMP is not set
|
CONFIG_ARM_PTDUMP_CORE=y
|
||||||
|
# CONFIG_ARM_PTDUMP_DEBUGFS is not set
|
||||||
|
CONFIG_DEBUG_WX=y
|
||||||
CONFIG_ARM_UNWIND=y
|
CONFIG_ARM_UNWIND=y
|
||||||
CONFIG_OLD_MCOUNT=y
|
CONFIG_OLD_MCOUNT=y
|
||||||
# CONFIG_DEBUG_USER is not set
|
# CONFIG_DEBUG_USER is not set
|
||||||
|
@ -8081,6 +8137,7 @@ CONFIG_SECURITY_PATH=y
|
||||||
CONFIG_LSM_MMAP_MIN_ADDR=32768
|
CONFIG_LSM_MMAP_MIN_ADDR=32768
|
||||||
CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
|
CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
|
||||||
CONFIG_HARDENED_USERCOPY=y
|
CONFIG_HARDENED_USERCOPY=y
|
||||||
|
CONFIG_HARDENED_USERCOPY_FALLBACK=y
|
||||||
# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
|
# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
|
||||||
# CONFIG_STATIC_USERMODEHELPER is not set
|
# CONFIG_STATIC_USERMODEHELPER is not set
|
||||||
CONFIG_SECURITY_SELINUX=y
|
CONFIG_SECURITY_SELINUX=y
|
||||||
|
@ -8156,6 +8213,7 @@ CONFIG_CRYPTO_RNG_DEFAULT=m
|
||||||
CONFIG_CRYPTO_AKCIPHER2=y
|
CONFIG_CRYPTO_AKCIPHER2=y
|
||||||
CONFIG_CRYPTO_AKCIPHER=y
|
CONFIG_CRYPTO_AKCIPHER=y
|
||||||
CONFIG_CRYPTO_KPP2=y
|
CONFIG_CRYPTO_KPP2=y
|
||||||
|
CONFIG_CRYPTO_KPP=m
|
||||||
CONFIG_CRYPTO_ACOMP2=y
|
CONFIG_CRYPTO_ACOMP2=y
|
||||||
CONFIG_CRYPTO_RSA=y
|
CONFIG_CRYPTO_RSA=y
|
||||||
# CONFIG_CRYPTO_DH is not set
|
# CONFIG_CRYPTO_DH is not set
|
||||||
|
@ -8375,7 +8433,8 @@ CONFIG_TEXTSEARCH_FSM=m
|
||||||
CONFIG_ASSOCIATIVE_ARRAY=y
|
CONFIG_ASSOCIATIVE_ARRAY=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
# CONFIG_DMA_NOOP_OPS is not set
|
CONFIG_SGL_ALLOC=y
|
||||||
|
# CONFIG_DMA_DIRECT_OPS is not set
|
||||||
CONFIG_DMA_VIRT_OPS=y
|
CONFIG_DMA_VIRT_OPS=y
|
||||||
CONFIG_CHECK_SIGNATURE=y
|
CONFIG_CHECK_SIGNATURE=y
|
||||||
CONFIG_CPU_RMAP=y
|
CONFIG_CPU_RMAP=y
|
|
@ -1,6 +1,6 @@
|
||||||
#
|
#
|
||||||
# Automatically generated file; DO NOT EDIT.
|
# Automatically generated file; DO NOT EDIT.
|
||||||
# Linux/x86 4.15.0-gnu Kernel Configuration
|
# Linux/x86 4.16.0-gnu Kernel Configuration
|
||||||
#
|
#
|
||||||
# CONFIG_64BIT is not set
|
# CONFIG_64BIT is not set
|
||||||
CONFIG_X86_32=y
|
CONFIG_X86_32=y
|
||||||
|
@ -39,7 +39,6 @@ CONFIG_X86_32_SMP=y
|
||||||
CONFIG_ARCH_SUPPORTS_UPROBES=y
|
CONFIG_ARCH_SUPPORTS_UPROBES=y
|
||||||
CONFIG_FIX_EARLYCON_MEM=y
|
CONFIG_FIX_EARLYCON_MEM=y
|
||||||
CONFIG_PGTABLE_LEVELS=3
|
CONFIG_PGTABLE_LEVELS=3
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
|
||||||
CONFIG_IRQ_WORK=y
|
CONFIG_IRQ_WORK=y
|
||||||
CONFIG_BUILDTIME_EXTABLE_SORT=y
|
CONFIG_BUILDTIME_EXTABLE_SORT=y
|
||||||
CONFIG_THREAD_INFO_IN_TASK=y
|
CONFIG_THREAD_INFO_IN_TASK=y
|
||||||
|
@ -93,7 +92,6 @@ CONFIG_GENERIC_MSI_IRQ=y
|
||||||
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
|
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
|
||||||
CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
|
CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
|
||||||
CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
|
CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
|
||||||
# CONFIG_IRQ_DOMAIN_DEBUG is not set
|
|
||||||
CONFIG_IRQ_FORCED_THREADING=y
|
CONFIG_IRQ_FORCED_THREADING=y
|
||||||
CONFIG_SPARSE_IRQ=y
|
CONFIG_SPARSE_IRQ=y
|
||||||
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
||||||
|
@ -226,6 +224,7 @@ CONFIG_KALLSYMS_ALL=y
|
||||||
CONFIG_KALLSYMS_BASE_RELATIVE=y
|
CONFIG_KALLSYMS_BASE_RELATIVE=y
|
||||||
CONFIG_BPF_SYSCALL=y
|
CONFIG_BPF_SYSCALL=y
|
||||||
CONFIG_USERFAULTFD=y
|
CONFIG_USERFAULTFD=y
|
||||||
|
CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
|
||||||
# CONFIG_EMBEDDED is not set
|
# CONFIG_EMBEDDED is not set
|
||||||
CONFIG_HAVE_PERF_EVENTS=y
|
CONFIG_HAVE_PERF_EVENTS=y
|
||||||
# CONFIG_PC104 is not set
|
# CONFIG_PC104 is not set
|
||||||
|
@ -271,12 +270,14 @@ CONFIG_HAVE_KPROBES=y
|
||||||
CONFIG_HAVE_KRETPROBES=y
|
CONFIG_HAVE_KRETPROBES=y
|
||||||
CONFIG_HAVE_OPTPROBES=y
|
CONFIG_HAVE_OPTPROBES=y
|
||||||
CONFIG_HAVE_KPROBES_ON_FTRACE=y
|
CONFIG_HAVE_KPROBES_ON_FTRACE=y
|
||||||
|
CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y
|
||||||
CONFIG_HAVE_NMI=y
|
CONFIG_HAVE_NMI=y
|
||||||
CONFIG_HAVE_ARCH_TRACEHOOK=y
|
CONFIG_HAVE_ARCH_TRACEHOOK=y
|
||||||
CONFIG_HAVE_DMA_CONTIGUOUS=y
|
CONFIG_HAVE_DMA_CONTIGUOUS=y
|
||||||
CONFIG_GENERIC_SMP_IDLE_THREAD=y
|
CONFIG_GENERIC_SMP_IDLE_THREAD=y
|
||||||
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
|
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
|
||||||
CONFIG_ARCH_HAS_SET_MEMORY=y
|
CONFIG_ARCH_HAS_SET_MEMORY=y
|
||||||
|
CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
|
||||||
CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
|
CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
|
||||||
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
|
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
|
||||||
CONFIG_HAVE_CLK=y
|
CONFIG_HAVE_CLK=y
|
||||||
|
@ -304,10 +305,10 @@ CONFIG_GCC_PLUGINS=y
|
||||||
# CONFIG_GCC_PLUGIN_STRUCTLEAK is not set
|
# CONFIG_GCC_PLUGIN_STRUCTLEAK is not set
|
||||||
# CONFIG_GCC_PLUGIN_RANDSTRUCT is not set
|
# CONFIG_GCC_PLUGIN_RANDSTRUCT is not set
|
||||||
CONFIG_HAVE_CC_STACKPROTECTOR=y
|
CONFIG_HAVE_CC_STACKPROTECTOR=y
|
||||||
CONFIG_CC_STACKPROTECTOR=y
|
|
||||||
# CONFIG_CC_STACKPROTECTOR_NONE is not set
|
# CONFIG_CC_STACKPROTECTOR_NONE is not set
|
||||||
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
|
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
|
||||||
CONFIG_CC_STACKPROTECTOR_STRONG=y
|
CONFIG_CC_STACKPROTECTOR_STRONG=y
|
||||||
|
# CONFIG_CC_STACKPROTECTOR_AUTO is not set
|
||||||
CONFIG_THIN_ARCHIVES=y
|
CONFIG_THIN_ARCHIVES=y
|
||||||
CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
|
CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
|
||||||
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
|
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
|
||||||
|
@ -333,6 +334,7 @@ CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
|
||||||
CONFIG_STRICT_KERNEL_RWX=y
|
CONFIG_STRICT_KERNEL_RWX=y
|
||||||
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
|
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
|
||||||
CONFIG_STRICT_MODULE_RWX=y
|
CONFIG_STRICT_MODULE_RWX=y
|
||||||
|
CONFIG_ARCH_HAS_PHYS_TO_DMA=y
|
||||||
CONFIG_ARCH_HAS_REFCOUNT=y
|
CONFIG_ARCH_HAS_REFCOUNT=y
|
||||||
CONFIG_REFCOUNT_FULL=y
|
CONFIG_REFCOUNT_FULL=y
|
||||||
|
|
||||||
|
@ -428,6 +430,7 @@ CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
|
||||||
CONFIG_QUEUED_SPINLOCKS=y
|
CONFIG_QUEUED_SPINLOCKS=y
|
||||||
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
|
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
|
||||||
CONFIG_QUEUED_RWLOCKS=y
|
CONFIG_QUEUED_RWLOCKS=y
|
||||||
|
CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y
|
||||||
CONFIG_FREEZER=y
|
CONFIG_FREEZER=y
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -438,10 +441,10 @@ CONFIG_SMP=y
|
||||||
CONFIG_X86_FEATURE_NAMES=y
|
CONFIG_X86_FEATURE_NAMES=y
|
||||||
CONFIG_X86_FAST_FEATURE_TESTS=y
|
CONFIG_X86_FAST_FEATURE_TESTS=y
|
||||||
CONFIG_X86_MPPARSE=y
|
CONFIG_X86_MPPARSE=y
|
||||||
# CONFIG_X86_BIGSMP is not set
|
|
||||||
# CONFIG_GOLDFISH is not set
|
# CONFIG_GOLDFISH is not set
|
||||||
CONFIG_RETPOLINE=y
|
CONFIG_RETPOLINE=y
|
||||||
# CONFIG_INTEL_RDT is not set
|
# CONFIG_INTEL_RDT is not set
|
||||||
|
# CONFIG_X86_BIGSMP is not set
|
||||||
CONFIG_X86_EXTENDED_PLATFORM=y
|
CONFIG_X86_EXTENDED_PLATFORM=y
|
||||||
# CONFIG_X86_GOLDFISH is not set
|
# CONFIG_X86_GOLDFISH is not set
|
||||||
CONFIG_X86_INTEL_MID=y
|
CONFIG_X86_INTEL_MID=y
|
||||||
|
@ -500,13 +503,12 @@ CONFIG_M686=y
|
||||||
CONFIG_X86_GENERIC=y
|
CONFIG_X86_GENERIC=y
|
||||||
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
|
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
|
||||||
CONFIG_X86_L1_CACHE_SHIFT=6
|
CONFIG_X86_L1_CACHE_SHIFT=6
|
||||||
CONFIG_X86_PPRO_FENCE=y
|
|
||||||
CONFIG_X86_INTEL_USERCOPY=y
|
CONFIG_X86_INTEL_USERCOPY=y
|
||||||
CONFIG_X86_USE_PPRO_CHECKSUM=y
|
CONFIG_X86_USE_PPRO_CHECKSUM=y
|
||||||
CONFIG_X86_TSC=y
|
CONFIG_X86_TSC=y
|
||||||
CONFIG_X86_CMPXCHG64=y
|
CONFIG_X86_CMPXCHG64=y
|
||||||
CONFIG_X86_CMOV=y
|
CONFIG_X86_CMOV=y
|
||||||
CONFIG_X86_MINIMUM_CPU_FAMILY=5
|
CONFIG_X86_MINIMUM_CPU_FAMILY=6
|
||||||
CONFIG_X86_DEBUGCTLMSR=y
|
CONFIG_X86_DEBUGCTLMSR=y
|
||||||
CONFIG_PROCESSOR_SELECT=y
|
CONFIG_PROCESSOR_SELECT=y
|
||||||
CONFIG_CPU_SUP_INTEL=y
|
CONFIG_CPU_SUP_INTEL=y
|
||||||
|
@ -521,6 +523,9 @@ CONFIG_APB_TIMER=y
|
||||||
CONFIG_DMI=y
|
CONFIG_DMI=y
|
||||||
CONFIG_SWIOTLB=y
|
CONFIG_SWIOTLB=y
|
||||||
CONFIG_IOMMU_HELPER=y
|
CONFIG_IOMMU_HELPER=y
|
||||||
|
CONFIG_NR_CPUS_RANGE_BEGIN=2
|
||||||
|
CONFIG_NR_CPUS_RANGE_END=8
|
||||||
|
CONFIG_NR_CPUS_DEFAULT=8
|
||||||
CONFIG_NR_CPUS=8
|
CONFIG_NR_CPUS=8
|
||||||
CONFIG_SCHED_SMT=y
|
CONFIG_SCHED_SMT=y
|
||||||
CONFIG_SCHED_MC=y
|
CONFIG_SCHED_MC=y
|
||||||
|
@ -624,7 +629,6 @@ CONFIG_ZSMALLOC=y
|
||||||
CONFIG_PGTABLE_MAPPING=y
|
CONFIG_PGTABLE_MAPPING=y
|
||||||
# CONFIG_ZSMALLOC_STAT is not set
|
# CONFIG_ZSMALLOC_STAT is not set
|
||||||
CONFIG_GENERIC_EARLY_IOREMAP=y
|
CONFIG_GENERIC_EARLY_IOREMAP=y
|
||||||
CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y
|
|
||||||
# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
|
# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
|
||||||
CONFIG_IDLE_PAGE_TRACKING=y
|
CONFIG_IDLE_PAGE_TRACKING=y
|
||||||
CONFIG_FRAME_VECTOR=y
|
CONFIG_FRAME_VECTOR=y
|
||||||
|
@ -702,6 +706,7 @@ CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
|
||||||
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
|
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
|
||||||
CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y
|
CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y
|
||||||
# CONFIG_ACPI_DEBUGGER is not set
|
# CONFIG_ACPI_DEBUGGER is not set
|
||||||
|
CONFIG_ACPI_SPCR_TABLE=y
|
||||||
CONFIG_ACPI_SLEEP=y
|
CONFIG_ACPI_SLEEP=y
|
||||||
# CONFIG_ACPI_PROCFS_POWER is not set
|
# CONFIG_ACPI_PROCFS_POWER is not set
|
||||||
CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
|
CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
|
||||||
|
@ -726,7 +731,6 @@ CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y
|
||||||
CONFIG_ACPI_TABLE_UPGRADE=y
|
CONFIG_ACPI_TABLE_UPGRADE=y
|
||||||
# CONFIG_ACPI_DEBUG is not set
|
# CONFIG_ACPI_DEBUG is not set
|
||||||
CONFIG_ACPI_PCI_SLOT=y
|
CONFIG_ACPI_PCI_SLOT=y
|
||||||
CONFIG_X86_PM_TIMER=y
|
|
||||||
CONFIG_ACPI_CONTAINER=y
|
CONFIG_ACPI_CONTAINER=y
|
||||||
CONFIG_ACPI_HOTPLUG_MEMORY=y
|
CONFIG_ACPI_HOTPLUG_MEMORY=y
|
||||||
CONFIG_ACPI_HOTPLUG_IOAPIC=y
|
CONFIG_ACPI_HOTPLUG_IOAPIC=y
|
||||||
|
@ -747,6 +751,7 @@ CONFIG_ACPI_WATCHDOG=y
|
||||||
CONFIG_ACPI_EXTLOG=m
|
CONFIG_ACPI_EXTLOG=m
|
||||||
# CONFIG_PMIC_OPREGION is not set
|
# CONFIG_PMIC_OPREGION is not set
|
||||||
CONFIG_ACPI_CONFIGFS=m
|
CONFIG_ACPI_CONFIGFS=m
|
||||||
|
CONFIG_X86_PM_TIMER=y
|
||||||
CONFIG_SFI=y
|
CONFIG_SFI=y
|
||||||
CONFIG_X86_APM_BOOT=y
|
CONFIG_X86_APM_BOOT=y
|
||||||
CONFIG_APM=m
|
CONFIG_APM=m
|
||||||
|
@ -868,6 +873,10 @@ CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m
|
||||||
CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m
|
CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m
|
||||||
CONFIG_HOTPLUG_PCI_SHPC=m
|
CONFIG_HOTPLUG_PCI_SHPC=m
|
||||||
|
|
||||||
|
#
|
||||||
|
# Cadence PCIe controllers support
|
||||||
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# DesignWare PCI Core Support
|
# DesignWare PCI Core Support
|
||||||
#
|
#
|
||||||
|
@ -1081,12 +1090,15 @@ CONFIG_BRIDGE_NETFILTER=m
|
||||||
#
|
#
|
||||||
CONFIG_NETFILTER_INGRESS=y
|
CONFIG_NETFILTER_INGRESS=y
|
||||||
CONFIG_NETFILTER_NETLINK=m
|
CONFIG_NETFILTER_NETLINK=m
|
||||||
|
CONFIG_NETFILTER_FAMILY_BRIDGE=y
|
||||||
|
CONFIG_NETFILTER_FAMILY_ARP=y
|
||||||
CONFIG_NETFILTER_NETLINK_ACCT=m
|
CONFIG_NETFILTER_NETLINK_ACCT=m
|
||||||
CONFIG_NETFILTER_NETLINK_QUEUE=m
|
CONFIG_NETFILTER_NETLINK_QUEUE=m
|
||||||
CONFIG_NETFILTER_NETLINK_LOG=m
|
CONFIG_NETFILTER_NETLINK_LOG=m
|
||||||
CONFIG_NF_CONNTRACK=m
|
CONFIG_NF_CONNTRACK=m
|
||||||
CONFIG_NF_LOG_COMMON=m
|
CONFIG_NF_LOG_COMMON=m
|
||||||
CONFIG_NF_LOG_NETDEV=m
|
CONFIG_NF_LOG_NETDEV=m
|
||||||
|
CONFIG_NETFILTER_CONNCOUNT=m
|
||||||
CONFIG_NF_CONNTRACK_MARK=y
|
CONFIG_NF_CONNTRACK_MARK=y
|
||||||
CONFIG_NF_CONNTRACK_SECMARK=y
|
CONFIG_NF_CONNTRACK_SECMARK=y
|
||||||
CONFIG_NF_CONNTRACK_ZONES=y
|
CONFIG_NF_CONNTRACK_ZONES=y
|
||||||
|
@ -1134,6 +1146,7 @@ CONFIG_NFT_META=m
|
||||||
CONFIG_NFT_RT=m
|
CONFIG_NFT_RT=m
|
||||||
CONFIG_NFT_NUMGEN=m
|
CONFIG_NFT_NUMGEN=m
|
||||||
CONFIG_NFT_CT=m
|
CONFIG_NFT_CT=m
|
||||||
|
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||||
CONFIG_NFT_SET_RBTREE=m
|
CONFIG_NFT_SET_RBTREE=m
|
||||||
CONFIG_NFT_SET_HASH=m
|
CONFIG_NFT_SET_HASH=m
|
||||||
CONFIG_NFT_SET_BITMAP=m
|
CONFIG_NFT_SET_BITMAP=m
|
||||||
|
@ -1156,6 +1169,8 @@ CONFIG_NF_DUP_NETDEV=m
|
||||||
CONFIG_NFT_DUP_NETDEV=m
|
CONFIG_NFT_DUP_NETDEV=m
|
||||||
CONFIG_NFT_FWD_NETDEV=m
|
CONFIG_NFT_FWD_NETDEV=m
|
||||||
CONFIG_NFT_FIB_NETDEV=m
|
CONFIG_NFT_FIB_NETDEV=m
|
||||||
|
CONFIG_NF_FLOW_TABLE_INET=m
|
||||||
|
CONFIG_NF_FLOW_TABLE=m
|
||||||
CONFIG_NETFILTER_XTABLES=m
|
CONFIG_NETFILTER_XTABLES=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1317,6 +1332,7 @@ CONFIG_NFT_REJECT_IPV4=m
|
||||||
CONFIG_NFT_DUP_IPV4=m
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NFT_FIB_IPV4=m
|
CONFIG_NFT_FIB_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
|
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||||
CONFIG_NF_DUP_IPV4=m
|
CONFIG_NF_DUP_IPV4=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NF_LOG_IPV4=m
|
CONFIG_NF_LOG_IPV4=m
|
||||||
|
@ -1363,6 +1379,7 @@ CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
CONFIG_NFT_REJECT_IPV6=m
|
CONFIG_NFT_REJECT_IPV6=m
|
||||||
CONFIG_NFT_DUP_IPV6=m
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_FIB_IPV6=m
|
CONFIG_NFT_FIB_IPV6=m
|
||||||
|
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||||
CONFIG_NF_DUP_IPV6=m
|
CONFIG_NF_DUP_IPV6=m
|
||||||
CONFIG_NF_REJECT_IPV6=m
|
CONFIG_NF_REJECT_IPV6=m
|
||||||
CONFIG_NF_LOG_IPV6=m
|
CONFIG_NF_LOG_IPV6=m
|
||||||
|
@ -1381,6 +1398,7 @@ CONFIG_IP6_NF_MATCH_IPV6HEADER=m
|
||||||
CONFIG_IP6_NF_MATCH_MH=m
|
CONFIG_IP6_NF_MATCH_MH=m
|
||||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||||
CONFIG_IP6_NF_MATCH_RT=m
|
CONFIG_IP6_NF_MATCH_RT=m
|
||||||
|
CONFIG_IP6_NF_MATCH_SRH=m
|
||||||
CONFIG_IP6_NF_TARGET_HL=m
|
CONFIG_IP6_NF_TARGET_HL=m
|
||||||
CONFIG_IP6_NF_FILTER=m
|
CONFIG_IP6_NF_FILTER=m
|
||||||
CONFIG_IP6_NF_TARGET_REJECT=m
|
CONFIG_IP6_NF_TARGET_REJECT=m
|
||||||
|
@ -1434,9 +1452,7 @@ CONFIG_INET_DCCP_DIAG=m
|
||||||
# DCCP Kernel Hacking
|
# DCCP Kernel Hacking
|
||||||
#
|
#
|
||||||
# CONFIG_IP_DCCP_DEBUG is not set
|
# CONFIG_IP_DCCP_DEBUG is not set
|
||||||
CONFIG_NET_DCCPPROBE=m
|
|
||||||
CONFIG_IP_SCTP=m
|
CONFIG_IP_SCTP=m
|
||||||
CONFIG_NET_SCTPPROBE=m
|
|
||||||
# CONFIG_SCTP_DBG_OBJCNT is not set
|
# CONFIG_SCTP_DBG_OBJCNT is not set
|
||||||
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
|
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
|
||||||
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
|
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
|
||||||
|
@ -1471,6 +1487,7 @@ CONFIG_BRIDGE_IGMP_SNOOPING=y
|
||||||
CONFIG_BRIDGE_VLAN_FILTERING=y
|
CONFIG_BRIDGE_VLAN_FILTERING=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
CONFIG_NET_DSA=m
|
CONFIG_NET_DSA=m
|
||||||
|
CONFIG_NET_DSA_LEGACY=y
|
||||||
CONFIG_NET_DSA_TAG_BRCM=y
|
CONFIG_NET_DSA_TAG_BRCM=y
|
||||||
CONFIG_NET_DSA_TAG_BRCM_PREPEND=y
|
CONFIG_NET_DSA_TAG_BRCM_PREPEND=y
|
||||||
CONFIG_NET_DSA_TAG_DSA=y
|
CONFIG_NET_DSA_TAG_DSA=y
|
||||||
|
@ -1487,8 +1504,6 @@ CONFIG_DECNET=m
|
||||||
# CONFIG_DECNET_ROUTER is not set
|
# CONFIG_DECNET_ROUTER is not set
|
||||||
CONFIG_LLC=m
|
CONFIG_LLC=m
|
||||||
CONFIG_LLC2=m
|
CONFIG_LLC2=m
|
||||||
CONFIG_IPX=m
|
|
||||||
# CONFIG_IPX_INTERN is not set
|
|
||||||
CONFIG_ATALK=m
|
CONFIG_ATALK=m
|
||||||
CONFIG_DEV_APPLETALK=m
|
CONFIG_DEV_APPLETALK=m
|
||||||
CONFIG_LTPC=m
|
CONFIG_LTPC=m
|
||||||
|
@ -1648,7 +1663,6 @@ CONFIG_NET_FLOW_LIMIT=y
|
||||||
# Network testing
|
# Network testing
|
||||||
#
|
#
|
||||||
CONFIG_NET_PKTGEN=m
|
CONFIG_NET_PKTGEN=m
|
||||||
CONFIG_NET_TCPPROBE=m
|
|
||||||
# CONFIG_NET_DROP_MONITOR is not set
|
# CONFIG_NET_DROP_MONITOR is not set
|
||||||
CONFIG_HAMRADIO=y
|
CONFIG_HAMRADIO=y
|
||||||
|
|
||||||
|
@ -1754,6 +1768,7 @@ CONFIG_BT_BCM=m
|
||||||
CONFIG_BT_RTL=m
|
CONFIG_BT_RTL=m
|
||||||
CONFIG_BT_QCA=m
|
CONFIG_BT_QCA=m
|
||||||
CONFIG_BT_HCIBTUSB=m
|
CONFIG_BT_HCIBTUSB=m
|
||||||
|
# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set
|
||||||
CONFIG_BT_HCIBTUSB_BCM=y
|
CONFIG_BT_HCIBTUSB_BCM=y
|
||||||
CONFIG_BT_HCIBTUSB_RTL=y
|
CONFIG_BT_HCIBTUSB_RTL=y
|
||||||
CONFIG_BT_HCIBTSDIO=m
|
CONFIG_BT_HCIBTSDIO=m
|
||||||
|
@ -1907,7 +1922,6 @@ CONFIG_DEVTMPFS_MOUNT=y
|
||||||
# CONFIG_STANDALONE is not set
|
# CONFIG_STANDALONE is not set
|
||||||
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
CONFIG_FW_LOADER=y
|
CONFIG_FW_LOADER=y
|
||||||
CONFIG_FIRMWARE_IN_KERNEL=y
|
|
||||||
CONFIG_EXTRA_FIRMWARE=""
|
CONFIG_EXTRA_FIRMWARE=""
|
||||||
CONFIG_FW_LOADER_USER_HELPER=y
|
CONFIG_FW_LOADER_USER_HELPER=y
|
||||||
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
||||||
|
@ -2214,6 +2228,7 @@ CONFIG_USB_SWITCH_FSA9480=m
|
||||||
CONFIG_LATTICE_ECP3_CONFIG=m
|
CONFIG_LATTICE_ECP3_CONFIG=m
|
||||||
CONFIG_SRAM=y
|
CONFIG_SRAM=y
|
||||||
# CONFIG_PCI_ENDPOINT_TEST is not set
|
# CONFIG_PCI_ENDPOINT_TEST is not set
|
||||||
|
CONFIG_MISC_RTSX=m
|
||||||
CONFIG_C2PORT=m
|
CONFIG_C2PORT=m
|
||||||
CONFIG_C2PORT_DURAMAR_2150=m
|
CONFIG_C2PORT_DURAMAR_2150=m
|
||||||
|
|
||||||
|
@ -2282,6 +2297,9 @@ CONFIG_ECHO=m
|
||||||
# CONFIG_CXL_BASE is not set
|
# CONFIG_CXL_BASE is not set
|
||||||
# CONFIG_CXL_AFU_DRIVER_OPS is not set
|
# CONFIG_CXL_AFU_DRIVER_OPS is not set
|
||||||
# CONFIG_CXL_LIB is not set
|
# CONFIG_CXL_LIB is not set
|
||||||
|
# CONFIG_OCXL_BASE is not set
|
||||||
|
CONFIG_MISC_RTSX_PCI=m
|
||||||
|
CONFIG_MISC_RTSX_USB=m
|
||||||
CONFIG_HAVE_IDE=y
|
CONFIG_HAVE_IDE=y
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
|
@ -2462,6 +2480,7 @@ CONFIG_SATA_PMP=y
|
||||||
# Controllers with non-SFF native interface
|
# Controllers with non-SFF native interface
|
||||||
#
|
#
|
||||||
CONFIG_SATA_AHCI=m
|
CONFIG_SATA_AHCI=m
|
||||||
|
CONFIG_SATA_MOBILE_LPM_POLICY=0
|
||||||
CONFIG_SATA_AHCI_PLATFORM=m
|
CONFIG_SATA_AHCI_PLATFORM=m
|
||||||
CONFIG_SATA_INIC162X=m
|
CONFIG_SATA_INIC162X=m
|
||||||
CONFIG_SATA_ACARD_AHCI=m
|
CONFIG_SATA_ACARD_AHCI=m
|
||||||
|
@ -2578,6 +2597,7 @@ CONFIG_DM_BUFIO=m
|
||||||
# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
|
# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
|
||||||
CONFIG_DM_BIO_PRISON=m
|
CONFIG_DM_BIO_PRISON=m
|
||||||
CONFIG_DM_PERSISTENT_DATA=m
|
CONFIG_DM_PERSISTENT_DATA=m
|
||||||
|
CONFIG_DM_UNSTRIPED=m
|
||||||
CONFIG_DM_CRYPT=m
|
CONFIG_DM_CRYPT=m
|
||||||
CONFIG_DM_SNAPSHOT=m
|
CONFIG_DM_SNAPSHOT=m
|
||||||
CONFIG_DM_THIN_PROVISIONING=m
|
CONFIG_DM_THIN_PROVISIONING=m
|
||||||
|
@ -2785,6 +2805,9 @@ CONFIG_MACB_USE_HWSTAMP=y
|
||||||
CONFIG_MACB_PCI=m
|
CONFIG_MACB_PCI=m
|
||||||
CONFIG_NET_VENDOR_BROADCOM=y
|
CONFIG_NET_VENDOR_BROADCOM=y
|
||||||
CONFIG_B44=m
|
CONFIG_B44=m
|
||||||
|
CONFIG_B44_PCI_AUTOSELECT=y
|
||||||
|
CONFIG_B44_PCICORE_AUTOSELECT=y
|
||||||
|
CONFIG_B44_PCI=y
|
||||||
CONFIG_BNX2=m
|
CONFIG_BNX2=m
|
||||||
CONFIG_CNIC=m
|
CONFIG_CNIC=m
|
||||||
CONFIG_TIGON3=m
|
CONFIG_TIGON3=m
|
||||||
|
@ -2812,6 +2835,7 @@ CONFIG_CS89x0=m
|
||||||
CONFIG_CS89x0_PLATFORM=y
|
CONFIG_CS89x0_PLATFORM=y
|
||||||
CONFIG_NET_VENDOR_CISCO=y
|
CONFIG_NET_VENDOR_CISCO=y
|
||||||
CONFIG_ENIC=m
|
CONFIG_ENIC=m
|
||||||
|
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||||
CONFIG_CX_ECAT=m
|
CONFIG_CX_ECAT=m
|
||||||
CONFIG_DNET=m
|
CONFIG_DNET=m
|
||||||
CONFIG_NET_VENDOR_DEC=y
|
CONFIG_NET_VENDOR_DEC=y
|
||||||
|
@ -2985,6 +3009,7 @@ CONFIG_EPIC100=m
|
||||||
CONFIG_SMSC911X=m
|
CONFIG_SMSC911X=m
|
||||||
# CONFIG_SMSC911X_ARCH_HOOKS is not set
|
# CONFIG_SMSC911X_ARCH_HOOKS is not set
|
||||||
CONFIG_SMSC9420=m
|
CONFIG_SMSC9420=m
|
||||||
|
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||||
CONFIG_NET_VENDOR_STMICRO=y
|
CONFIG_NET_VENDOR_STMICRO=y
|
||||||
CONFIG_STMMAC_ETH=m
|
CONFIG_STMMAC_ETH=m
|
||||||
CONFIG_STMMAC_PLATFORM=m
|
CONFIG_STMMAC_PLATFORM=m
|
||||||
|
@ -3157,6 +3182,7 @@ CONFIG_ATH9K_PCOEM=y
|
||||||
CONFIG_ATH9K_HTC=m
|
CONFIG_ATH9K_HTC=m
|
||||||
CONFIG_ATH9K_HTC_DEBUGFS=y
|
CONFIG_ATH9K_HTC_DEBUGFS=y
|
||||||
CONFIG_ATH9K_HWRNG=y
|
CONFIG_ATH9K_HWRNG=y
|
||||||
|
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||||
CONFIG_CARL9170=m
|
CONFIG_CARL9170=m
|
||||||
CONFIG_CARL9170_LEDS=y
|
CONFIG_CARL9170_LEDS=y
|
||||||
# CONFIG_CARL9170_DEBUGFS is not set
|
# CONFIG_CARL9170_DEBUGFS is not set
|
||||||
|
@ -3178,6 +3204,7 @@ CONFIG_ATH10K_SDIO=m
|
||||||
CONFIG_ATH10K_USB=m
|
CONFIG_ATH10K_USB=m
|
||||||
# CONFIG_ATH10K_DEBUG is not set
|
# CONFIG_ATH10K_DEBUG is not set
|
||||||
CONFIG_ATH10K_DEBUGFS=y
|
CONFIG_ATH10K_DEBUGFS=y
|
||||||
|
# CONFIG_ATH10K_SPECTRAL is not set
|
||||||
CONFIG_ATH10K_TRACING=y
|
CONFIG_ATH10K_TRACING=y
|
||||||
CONFIG_WCN36XX=m
|
CONFIG_WCN36XX=m
|
||||||
# CONFIG_WCN36XX_DEBUGFS is not set
|
# CONFIG_WCN36XX_DEBUGFS is not set
|
||||||
|
@ -3193,6 +3220,8 @@ CONFIG_B43_SSB=y
|
||||||
CONFIG_B43_BUSES_BCMA_AND_SSB=y
|
CONFIG_B43_BUSES_BCMA_AND_SSB=y
|
||||||
# CONFIG_B43_BUSES_BCMA is not set
|
# CONFIG_B43_BUSES_BCMA is not set
|
||||||
# CONFIG_B43_BUSES_SSB is not set
|
# CONFIG_B43_BUSES_SSB is not set
|
||||||
|
CONFIG_B43_PCI_AUTOSELECT=y
|
||||||
|
CONFIG_B43_PCICORE_AUTOSELECT=y
|
||||||
# CONFIG_B43_SDIO is not set
|
# CONFIG_B43_SDIO is not set
|
||||||
CONFIG_B43_BCMA_PIO=y
|
CONFIG_B43_BCMA_PIO=y
|
||||||
CONFIG_B43_PIO=y
|
CONFIG_B43_PIO=y
|
||||||
|
@ -3204,6 +3233,8 @@ CONFIG_B43_LEDS=y
|
||||||
CONFIG_B43_HWRNG=y
|
CONFIG_B43_HWRNG=y
|
||||||
# CONFIG_B43_DEBUG is not set
|
# CONFIG_B43_DEBUG is not set
|
||||||
CONFIG_B43LEGACY=m
|
CONFIG_B43LEGACY=m
|
||||||
|
CONFIG_B43LEGACY_PCI_AUTOSELECT=y
|
||||||
|
CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y
|
||||||
CONFIG_B43LEGACY_LEDS=y
|
CONFIG_B43LEGACY_LEDS=y
|
||||||
CONFIG_B43LEGACY_HWRNG=y
|
CONFIG_B43LEGACY_HWRNG=y
|
||||||
# CONFIG_B43LEGACY_DEBUG is not set
|
# CONFIG_B43LEGACY_DEBUG is not set
|
||||||
|
@ -3301,6 +3332,8 @@ CONFIG_MWIFIEX_USB=m
|
||||||
CONFIG_MWL8K=m
|
CONFIG_MWL8K=m
|
||||||
CONFIG_WLAN_VENDOR_MEDIATEK=y
|
CONFIG_WLAN_VENDOR_MEDIATEK=y
|
||||||
CONFIG_MT7601U=m
|
CONFIG_MT7601U=m
|
||||||
|
CONFIG_MT76_CORE=m
|
||||||
|
CONFIG_MT76x2E=m
|
||||||
CONFIG_WLAN_VENDOR_RALINK=y
|
CONFIG_WLAN_VENDOR_RALINK=y
|
||||||
CONFIG_RT2X00=m
|
CONFIG_RT2X00=m
|
||||||
CONFIG_RT2400PCI=m
|
CONFIG_RT2400PCI=m
|
||||||
|
@ -3434,6 +3467,7 @@ CONFIG_VMXNET3=m
|
||||||
CONFIG_FUJITSU_ES=m
|
CONFIG_FUJITSU_ES=m
|
||||||
CONFIG_THUNDERBOLT_NET=m
|
CONFIG_THUNDERBOLT_NET=m
|
||||||
CONFIG_HYPERV_NET=m
|
CONFIG_HYPERV_NET=m
|
||||||
|
CONFIG_NETDEVSIM=m
|
||||||
CONFIG_ISDN=y
|
CONFIG_ISDN=y
|
||||||
CONFIG_ISDN_I4L=m
|
CONFIG_ISDN_I4L=m
|
||||||
CONFIG_ISDN_PPP=y
|
CONFIG_ISDN_PPP=y
|
||||||
|
@ -3575,7 +3609,6 @@ CONFIG_MISDN_ISAR=m
|
||||||
CONFIG_ISDN_HDLC=m
|
CONFIG_ISDN_HDLC=m
|
||||||
CONFIG_NVM=y
|
CONFIG_NVM=y
|
||||||
# CONFIG_NVM_DEBUG is not set
|
# CONFIG_NVM_DEBUG is not set
|
||||||
CONFIG_NVM_RRPC=m
|
|
||||||
CONFIG_NVM_PBLK=m
|
CONFIG_NVM_PBLK=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -3818,7 +3851,6 @@ CONFIG_INPUT_MMA8450=m
|
||||||
CONFIG_INPUT_APANEL=m
|
CONFIG_INPUT_APANEL=m
|
||||||
CONFIG_INPUT_GP2A=m
|
CONFIG_INPUT_GP2A=m
|
||||||
CONFIG_INPUT_GPIO_BEEPER=m
|
CONFIG_INPUT_GPIO_BEEPER=m
|
||||||
CONFIG_INPUT_GPIO_TILT_POLLED=m
|
|
||||||
CONFIG_INPUT_GPIO_DECODER=m
|
CONFIG_INPUT_GPIO_DECODER=m
|
||||||
CONFIG_INPUT_WISTRON_BTNS=m
|
CONFIG_INPUT_WISTRON_BTNS=m
|
||||||
CONFIG_INPUT_ATLAS_BTNS=m
|
CONFIG_INPUT_ATLAS_BTNS=m
|
||||||
|
@ -4019,7 +4051,6 @@ CONFIG_HW_RANDOM_AMD=m
|
||||||
CONFIG_HW_RANDOM_GEODE=m
|
CONFIG_HW_RANDOM_GEODE=m
|
||||||
CONFIG_HW_RANDOM_VIA=m
|
CONFIG_HW_RANDOM_VIA=m
|
||||||
CONFIG_HW_RANDOM_VIRTIO=m
|
CONFIG_HW_RANDOM_VIRTIO=m
|
||||||
CONFIG_HW_RANDOM_TPM=m
|
|
||||||
CONFIG_NVRAM=m
|
CONFIG_NVRAM=m
|
||||||
CONFIG_DTLK=m
|
CONFIG_DTLK=m
|
||||||
CONFIG_R3964=m
|
CONFIG_R3964=m
|
||||||
|
@ -4045,6 +4076,7 @@ CONFIG_HPET_MMAP=y
|
||||||
CONFIG_HPET_MMAP_DEFAULT=y
|
CONFIG_HPET_MMAP_DEFAULT=y
|
||||||
CONFIG_HANGCHECK_TIMER=m
|
CONFIG_HANGCHECK_TIMER=m
|
||||||
CONFIG_TCG_TPM=y
|
CONFIG_TCG_TPM=y
|
||||||
|
CONFIG_HW_RANDOM_TPM=y
|
||||||
CONFIG_TCG_TIS_CORE=y
|
CONFIG_TCG_TIS_CORE=y
|
||||||
CONFIG_TCG_TIS=y
|
CONFIG_TCG_TIS=y
|
||||||
CONFIG_TCG_TIS_SPI=m
|
CONFIG_TCG_TIS_SPI=m
|
||||||
|
@ -4132,6 +4164,7 @@ CONFIG_I2C_DESIGNWARE_BAYTRAIL=y
|
||||||
CONFIG_I2C_EG20T=m
|
CONFIG_I2C_EG20T=m
|
||||||
CONFIG_I2C_EMEV2=m
|
CONFIG_I2C_EMEV2=m
|
||||||
CONFIG_I2C_GPIO=m
|
CONFIG_I2C_GPIO=m
|
||||||
|
# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set
|
||||||
CONFIG_I2C_KEMPLD=m
|
CONFIG_I2C_KEMPLD=m
|
||||||
CONFIG_I2C_OCORES=m
|
CONFIG_I2C_OCORES=m
|
||||||
CONFIG_I2C_PCA_PLATFORM=m
|
CONFIG_I2C_PCA_PLATFORM=m
|
||||||
|
@ -4267,7 +4300,6 @@ CONFIG_GPIO_MAX730X=m
|
||||||
# Memory mapped GPIO drivers
|
# Memory mapped GPIO drivers
|
||||||
#
|
#
|
||||||
CONFIG_GPIO_AMDPT=m
|
CONFIG_GPIO_AMDPT=m
|
||||||
CONFIG_GPIO_AXP209=m
|
|
||||||
CONFIG_GPIO_DWAPB=m
|
CONFIG_GPIO_DWAPB=m
|
||||||
CONFIG_GPIO_EXAR=m
|
CONFIG_GPIO_EXAR=m
|
||||||
CONFIG_GPIO_GENERIC_PLATFORM=m
|
CONFIG_GPIO_GENERIC_PLATFORM=m
|
||||||
|
@ -4285,6 +4317,7 @@ CONFIG_GPIO_F7188X=m
|
||||||
CONFIG_GPIO_IT87=m
|
CONFIG_GPIO_IT87=m
|
||||||
CONFIG_GPIO_SCH=m
|
CONFIG_GPIO_SCH=m
|
||||||
CONFIG_GPIO_SCH311X=m
|
CONFIG_GPIO_SCH311X=m
|
||||||
|
CONFIG_GPIO_WINBOND=m
|
||||||
CONFIG_GPIO_WS16C48=m
|
CONFIG_GPIO_WS16C48=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -4337,6 +4370,7 @@ CONFIG_GPIO_MERRIFIELD=m
|
||||||
CONFIG_GPIO_ML_IOH=m
|
CONFIG_GPIO_ML_IOH=m
|
||||||
CONFIG_GPIO_PCH=m
|
CONFIG_GPIO_PCH=m
|
||||||
CONFIG_GPIO_PCI_IDIO_16=m
|
CONFIG_GPIO_PCI_IDIO_16=m
|
||||||
|
CONFIG_GPIO_PCIE_IDIO_24=m
|
||||||
CONFIG_GPIO_RDC321X=m
|
CONFIG_GPIO_RDC321X=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -4609,6 +4643,7 @@ CONFIG_SENSORS_VIA_CPUTEMP=m
|
||||||
CONFIG_SENSORS_VIA686A=m
|
CONFIG_SENSORS_VIA686A=m
|
||||||
CONFIG_SENSORS_VT1211=m
|
CONFIG_SENSORS_VT1211=m
|
||||||
CONFIG_SENSORS_VT8231=m
|
CONFIG_SENSORS_VT8231=m
|
||||||
|
CONFIG_SENSORS_W83773G=m
|
||||||
CONFIG_SENSORS_W83781D=m
|
CONFIG_SENSORS_W83781D=m
|
||||||
CONFIG_SENSORS_W83791D=m
|
CONFIG_SENSORS_W83791D=m
|
||||||
CONFIG_SENSORS_W83792D=m
|
CONFIG_SENSORS_W83792D=m
|
||||||
|
@ -4678,6 +4713,7 @@ CONFIG_WM831X_WATCHDOG=m
|
||||||
CONFIG_WM8350_WATCHDOG=m
|
CONFIG_WM8350_WATCHDOG=m
|
||||||
CONFIG_XILINX_WATCHDOG=m
|
CONFIG_XILINX_WATCHDOG=m
|
||||||
CONFIG_ZIIRAVE_WATCHDOG=m
|
CONFIG_ZIIRAVE_WATCHDOG=m
|
||||||
|
CONFIG_RAVE_SP_WATCHDOG=m
|
||||||
CONFIG_CADENCE_WATCHDOG=m
|
CONFIG_CADENCE_WATCHDOG=m
|
||||||
CONFIG_DW_WATCHDOG=m
|
CONFIG_DW_WATCHDOG=m
|
||||||
CONFIG_TWL4030_WATCHDOG=m
|
CONFIG_TWL4030_WATCHDOG=m
|
||||||
|
@ -4751,18 +4787,20 @@ CONFIG_USBPCWATCHDOG=m
|
||||||
#
|
#
|
||||||
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
|
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
|
||||||
CONFIG_SSB_POSSIBLE=y
|
CONFIG_SSB_POSSIBLE=y
|
||||||
|
|
||||||
#
|
|
||||||
# Sonics Silicon Backplane
|
|
||||||
#
|
|
||||||
CONFIG_SSB=m
|
CONFIG_SSB=m
|
||||||
|
CONFIG_SSB_SPROM=y
|
||||||
CONFIG_SSB_BLOCKIO=y
|
CONFIG_SSB_BLOCKIO=y
|
||||||
|
CONFIG_SSB_PCIHOST_POSSIBLE=y
|
||||||
|
CONFIG_SSB_PCIHOST=y
|
||||||
|
CONFIG_SSB_B43_PCI_BRIDGE=y
|
||||||
CONFIG_SSB_PCMCIAHOST_POSSIBLE=y
|
CONFIG_SSB_PCMCIAHOST_POSSIBLE=y
|
||||||
# CONFIG_SSB_PCMCIAHOST is not set
|
# CONFIG_SSB_PCMCIAHOST is not set
|
||||||
CONFIG_SSB_SDIOHOST_POSSIBLE=y
|
CONFIG_SSB_SDIOHOST_POSSIBLE=y
|
||||||
CONFIG_SSB_SDIOHOST=y
|
CONFIG_SSB_SDIOHOST=y
|
||||||
# CONFIG_SSB_SILENT is not set
|
# CONFIG_SSB_SILENT is not set
|
||||||
# CONFIG_SSB_DEBUG is not set
|
# CONFIG_SSB_DEBUG is not set
|
||||||
|
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
|
||||||
|
CONFIG_SSB_DRIVER_PCICORE=y
|
||||||
CONFIG_SSB_DRIVER_GPIO=y
|
CONFIG_SSB_DRIVER_GPIO=y
|
||||||
CONFIG_BCMA_POSSIBLE=y
|
CONFIG_BCMA_POSSIBLE=y
|
||||||
CONFIG_BCMA=m
|
CONFIG_BCMA=m
|
||||||
|
@ -4791,6 +4829,7 @@ CONFIG_MFD_AXP20X_I2C=m
|
||||||
CONFIG_MFD_CROS_EC=m
|
CONFIG_MFD_CROS_EC=m
|
||||||
CONFIG_MFD_CROS_EC_I2C=m
|
CONFIG_MFD_CROS_EC_I2C=m
|
||||||
CONFIG_MFD_CROS_EC_SPI=m
|
CONFIG_MFD_CROS_EC_SPI=m
|
||||||
|
CONFIG_MFD_CROS_EC_CHARDEV=m
|
||||||
CONFIG_PMIC_DA903X=y
|
CONFIG_PMIC_DA903X=y
|
||||||
CONFIG_PMIC_DA9052=y
|
CONFIG_PMIC_DA9052=y
|
||||||
CONFIG_MFD_DA9052_SPI=y
|
CONFIG_MFD_DA9052_SPI=y
|
||||||
|
@ -4838,9 +4877,7 @@ CONFIG_PCF50633_ADC=m
|
||||||
CONFIG_PCF50633_GPIO=m
|
CONFIG_PCF50633_GPIO=m
|
||||||
CONFIG_UCB1400_CORE=m
|
CONFIG_UCB1400_CORE=m
|
||||||
CONFIG_MFD_RDC321X=m
|
CONFIG_MFD_RDC321X=m
|
||||||
CONFIG_MFD_RTSX_PCI=m
|
|
||||||
CONFIG_MFD_RT5033=m
|
CONFIG_MFD_RT5033=m
|
||||||
CONFIG_MFD_RTSX_USB=m
|
|
||||||
CONFIG_MFD_RC5T583=y
|
CONFIG_MFD_RC5T583=y
|
||||||
CONFIG_MFD_SEC_CORE=y
|
CONFIG_MFD_SEC_CORE=y
|
||||||
CONFIG_MFD_SI476X_CORE=m
|
CONFIG_MFD_SI476X_CORE=m
|
||||||
|
@ -4893,6 +4930,7 @@ CONFIG_MFD_WM831X_SPI=y
|
||||||
CONFIG_MFD_WM8350=y
|
CONFIG_MFD_WM8350=y
|
||||||
CONFIG_MFD_WM8350_I2C=y
|
CONFIG_MFD_WM8350_I2C=y
|
||||||
CONFIG_MFD_WM8994=m
|
CONFIG_MFD_WM8994=m
|
||||||
|
CONFIG_RAVE_SP_CORE=m
|
||||||
CONFIG_REGULATOR=y
|
CONFIG_REGULATOR=y
|
||||||
# CONFIG_REGULATOR_DEBUG is not set
|
# CONFIG_REGULATOR_DEBUG is not set
|
||||||
CONFIG_REGULATOR_FIXED_VOLTAGE=m
|
CONFIG_REGULATOR_FIXED_VOLTAGE=m
|
||||||
|
@ -4982,9 +5020,8 @@ CONFIG_REGULATOR_WM8994=m
|
||||||
CONFIG_CEC_CORE=m
|
CONFIG_CEC_CORE=m
|
||||||
CONFIG_RC_CORE=m
|
CONFIG_RC_CORE=m
|
||||||
CONFIG_RC_MAP=m
|
CONFIG_RC_MAP=m
|
||||||
|
CONFIG_LIRC=y
|
||||||
CONFIG_RC_DECODERS=y
|
CONFIG_RC_DECODERS=y
|
||||||
CONFIG_LIRC=m
|
|
||||||
CONFIG_IR_LIRC_CODEC=m
|
|
||||||
CONFIG_IR_NEC_DECODER=m
|
CONFIG_IR_NEC_DECODER=m
|
||||||
CONFIG_IR_RC5_DECODER=m
|
CONFIG_IR_RC5_DECODER=m
|
||||||
CONFIG_IR_RC6_DECODER=m
|
CONFIG_IR_RC6_DECODER=m
|
||||||
|
@ -5040,18 +5077,14 @@ CONFIG_VIDEOBUF_GEN=m
|
||||||
CONFIG_VIDEOBUF_DMA_SG=m
|
CONFIG_VIDEOBUF_DMA_SG=m
|
||||||
CONFIG_VIDEOBUF_VMALLOC=m
|
CONFIG_VIDEOBUF_VMALLOC=m
|
||||||
CONFIG_VIDEOBUF_DVB=m
|
CONFIG_VIDEOBUF_DVB=m
|
||||||
CONFIG_VIDEOBUF2_CORE=m
|
|
||||||
CONFIG_VIDEOBUF2_MEMOPS=m
|
|
||||||
CONFIG_VIDEOBUF2_DMA_CONTIG=m
|
|
||||||
CONFIG_VIDEOBUF2_VMALLOC=m
|
|
||||||
CONFIG_VIDEOBUF2_DMA_SG=m
|
|
||||||
CONFIG_VIDEOBUF2_DVB=m
|
|
||||||
CONFIG_DVB_CORE=m
|
CONFIG_DVB_CORE=m
|
||||||
|
# CONFIG_DVB_MMAP is not set
|
||||||
CONFIG_DVB_NET=y
|
CONFIG_DVB_NET=y
|
||||||
CONFIG_TTPCI_EEPROM=m
|
CONFIG_TTPCI_EEPROM=m
|
||||||
CONFIG_DVB_MAX_ADAPTERS=8
|
CONFIG_DVB_MAX_ADAPTERS=8
|
||||||
CONFIG_DVB_DYNAMIC_MINORS=y
|
CONFIG_DVB_DYNAMIC_MINORS=y
|
||||||
# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
|
# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
|
||||||
|
# CONFIG_DVB_ULE_DEBUG is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Media drivers
|
# Media drivers
|
||||||
|
@ -5307,6 +5340,7 @@ CONFIG_DVB_DDBRIDGE=m
|
||||||
# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
|
# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
|
||||||
CONFIG_DVB_SMIPCIE=m
|
CONFIG_DVB_SMIPCIE=m
|
||||||
CONFIG_DVB_NETUP_UNIDVB=m
|
CONFIG_DVB_NETUP_UNIDVB=m
|
||||||
|
CONFIG_VIDEO_IPU3_CIO2=m
|
||||||
CONFIG_V4L_PLATFORM_DRIVERS=y
|
CONFIG_V4L_PLATFORM_DRIVERS=y
|
||||||
CONFIG_VIDEO_CAFE_CCIC=m
|
CONFIG_VIDEO_CAFE_CCIC=m
|
||||||
CONFIG_VIDEO_VIA_CAMERA=m
|
CONFIG_VIDEO_VIA_CAMERA=m
|
||||||
|
@ -5385,6 +5419,13 @@ CONFIG_MEDIA_COMMON_OPTIONS=y
|
||||||
CONFIG_VIDEO_CX2341X=m
|
CONFIG_VIDEO_CX2341X=m
|
||||||
CONFIG_VIDEO_TVEEPROM=m
|
CONFIG_VIDEO_TVEEPROM=m
|
||||||
CONFIG_CYPRESS_FIRMWARE=m
|
CONFIG_CYPRESS_FIRMWARE=m
|
||||||
|
CONFIG_VIDEOBUF2_CORE=m
|
||||||
|
CONFIG_VIDEOBUF2_V4L2=m
|
||||||
|
CONFIG_VIDEOBUF2_MEMOPS=m
|
||||||
|
CONFIG_VIDEOBUF2_DMA_CONTIG=m
|
||||||
|
CONFIG_VIDEOBUF2_VMALLOC=m
|
||||||
|
CONFIG_VIDEOBUF2_DMA_SG=m
|
||||||
|
CONFIG_VIDEOBUF2_DVB=m
|
||||||
CONFIG_DVB_B2C2_FLEXCOP=m
|
CONFIG_DVB_B2C2_FLEXCOP=m
|
||||||
CONFIG_VIDEO_SAA7146=m
|
CONFIG_VIDEO_SAA7146=m
|
||||||
CONFIG_VIDEO_SAA7146_VV=m
|
CONFIG_VIDEO_SAA7146_VV=m
|
||||||
|
@ -5509,6 +5550,7 @@ CONFIG_SOC_CAMERA_RJ54N1=m
|
||||||
CONFIG_SOC_CAMERA_TW9910=m
|
CONFIG_SOC_CAMERA_TW9910=m
|
||||||
CONFIG_MEDIA_TUNER=m
|
CONFIG_MEDIA_TUNER=m
|
||||||
CONFIG_MEDIA_TUNER_SIMPLE=m
|
CONFIG_MEDIA_TUNER_SIMPLE=m
|
||||||
|
CONFIG_MEDIA_TUNER_TDA18250=m
|
||||||
CONFIG_MEDIA_TUNER_TDA8290=m
|
CONFIG_MEDIA_TUNER_TDA8290=m
|
||||||
CONFIG_MEDIA_TUNER_TDA827X=m
|
CONFIG_MEDIA_TUNER_TDA827X=m
|
||||||
CONFIG_MEDIA_TUNER_TDA18271=m
|
CONFIG_MEDIA_TUNER_TDA18271=m
|
||||||
|
@ -5727,6 +5769,7 @@ CONFIG_DRM_FBDEV_OVERALLOC=100
|
||||||
CONFIG_DRM_LOAD_EDID_FIRMWARE=y
|
CONFIG_DRM_LOAD_EDID_FIRMWARE=y
|
||||||
CONFIG_DRM_TTM=m
|
CONFIG_DRM_TTM=m
|
||||||
CONFIG_DRM_VM=y
|
CONFIG_DRM_VM=y
|
||||||
|
CONFIG_DRM_SCHED=m
|
||||||
|
|
||||||
#
|
#
|
||||||
# I2C encoder or helper chips
|
# I2C encoder or helper chips
|
||||||
|
@ -5813,6 +5856,7 @@ CONFIG_DRM_ANALOGIX_ANX78XX=m
|
||||||
CONFIG_DRM_HISI_HIBMC=m
|
CONFIG_DRM_HISI_HIBMC=m
|
||||||
# CONFIG_DRM_TINYDRM is not set
|
# CONFIG_DRM_TINYDRM is not set
|
||||||
# CONFIG_DRM_LEGACY is not set
|
# CONFIG_DRM_LEGACY is not set
|
||||||
|
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y
|
||||||
# CONFIG_DRM_LIB_RANDOM is not set
|
# CONFIG_DRM_LIB_RANDOM is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -6258,24 +6302,26 @@ CONFIG_SND_SOC_FSL_ESAI=m
|
||||||
CONFIG_SND_SOC_IMX_AUDMUX=m
|
CONFIG_SND_SOC_IMX_AUDMUX=m
|
||||||
CONFIG_SND_I2S_HI6210_I2S=m
|
CONFIG_SND_I2S_HI6210_I2S=m
|
||||||
# CONFIG_SND_SOC_IMG is not set
|
# CONFIG_SND_SOC_IMG is not set
|
||||||
|
CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y
|
||||||
CONFIG_SND_SST_IPC=m
|
CONFIG_SND_SST_IPC=m
|
||||||
CONFIG_SND_SST_IPC_PCI=m
|
CONFIG_SND_SST_IPC_PCI=m
|
||||||
CONFIG_SND_SST_IPC_ACPI=m
|
CONFIG_SND_SST_IPC_ACPI=m
|
||||||
CONFIG_SND_SOC_INTEL_COMMON=m
|
CONFIG_SND_SOC_INTEL_SST_ACPI=m
|
||||||
CONFIG_SND_SOC_INTEL_SST=m
|
CONFIG_SND_SOC_INTEL_SST=m
|
||||||
CONFIG_SND_SOC_INTEL_SST_FIRMWARE=m
|
CONFIG_SND_SOC_INTEL_SST_FIRMWARE=m
|
||||||
CONFIG_SND_SOC_INTEL_SST_ACPI=m
|
|
||||||
CONFIG_SND_SOC_ACPI_INTEL_MATCH=m
|
|
||||||
CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=m
|
|
||||||
CONFIG_SND_SOC_INTEL_HASWELL=m
|
CONFIG_SND_SOC_INTEL_HASWELL=m
|
||||||
CONFIG_SND_SOC_INTEL_BAYTRAIL=m
|
CONFIG_SND_SOC_INTEL_BAYTRAIL=m
|
||||||
|
CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI=m
|
||||||
CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
|
CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
|
||||||
|
CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK=m
|
||||||
CONFIG_SND_SOC_INTEL_SKYLAKE=m
|
CONFIG_SND_SOC_INTEL_SKYLAKE=m
|
||||||
CONFIG_SND_SOC_INTEL_MACH=m
|
CONFIG_SND_SOC_ACPI_INTEL_MATCH=m
|
||||||
CONFIG_SND_MFLD_MACHINE=m
|
CONFIG_SND_SOC_INTEL_MACH=y
|
||||||
CONFIG_SND_SOC_INTEL_HASWELL_MACH=m
|
CONFIG_SND_SOC_INTEL_HASWELL_MACH=m
|
||||||
CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m
|
CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m
|
||||||
CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m
|
CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m
|
||||||
|
CONFIG_SND_SOC_INTEL_BYT_MAX98090_MACH=m
|
||||||
|
CONFIG_SND_SOC_INTEL_BYT_RT5640_MACH=m
|
||||||
CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
|
CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
|
||||||
CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m
|
CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m
|
||||||
CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m
|
CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m
|
||||||
|
@ -6354,6 +6400,7 @@ CONFIG_SND_SOC_MAX98090=m
|
||||||
CONFIG_SND_SOC_MAX98357A=m
|
CONFIG_SND_SOC_MAX98357A=m
|
||||||
CONFIG_SND_SOC_MAX98504=m
|
CONFIG_SND_SOC_MAX98504=m
|
||||||
CONFIG_SND_SOC_MAX98927=m
|
CONFIG_SND_SOC_MAX98927=m
|
||||||
|
CONFIG_SND_SOC_MAX98373=m
|
||||||
CONFIG_SND_SOC_MAX9860=m
|
CONFIG_SND_SOC_MAX9860=m
|
||||||
CONFIG_SND_SOC_MSM8916_WCD_ANALOG=m
|
CONFIG_SND_SOC_MSM8916_WCD_ANALOG=m
|
||||||
CONFIG_SND_SOC_MSM8916_WCD_DIGITAL=m
|
CONFIG_SND_SOC_MSM8916_WCD_DIGITAL=m
|
||||||
|
@ -6361,6 +6408,9 @@ CONFIG_SND_SOC_PCM1681=m
|
||||||
CONFIG_SND_SOC_PCM179X=m
|
CONFIG_SND_SOC_PCM179X=m
|
||||||
CONFIG_SND_SOC_PCM179X_I2C=m
|
CONFIG_SND_SOC_PCM179X_I2C=m
|
||||||
CONFIG_SND_SOC_PCM179X_SPI=m
|
CONFIG_SND_SOC_PCM179X_SPI=m
|
||||||
|
CONFIG_SND_SOC_PCM186X=m
|
||||||
|
CONFIG_SND_SOC_PCM186X_I2C=m
|
||||||
|
CONFIG_SND_SOC_PCM186X_SPI=m
|
||||||
CONFIG_SND_SOC_PCM3168A=m
|
CONFIG_SND_SOC_PCM3168A=m
|
||||||
CONFIG_SND_SOC_PCM3168A_I2C=m
|
CONFIG_SND_SOC_PCM3168A_I2C=m
|
||||||
CONFIG_SND_SOC_PCM3168A_SPI=m
|
CONFIG_SND_SOC_PCM3168A_SPI=m
|
||||||
|
@ -6389,7 +6439,6 @@ CONFIG_SND_SOC_SIGMADSP=m
|
||||||
CONFIG_SND_SOC_SIGMADSP_I2C=m
|
CONFIG_SND_SOC_SIGMADSP_I2C=m
|
||||||
CONFIG_SND_SOC_SIGMADSP_REGMAP=m
|
CONFIG_SND_SOC_SIGMADSP_REGMAP=m
|
||||||
CONFIG_SND_SOC_SIRF_AUDIO_CODEC=m
|
CONFIG_SND_SOC_SIRF_AUDIO_CODEC=m
|
||||||
CONFIG_SND_SOC_SN95031=m
|
|
||||||
CONFIG_SND_SOC_SPDIF=m
|
CONFIG_SND_SOC_SPDIF=m
|
||||||
CONFIG_SND_SOC_SSM2602=m
|
CONFIG_SND_SOC_SSM2602=m
|
||||||
CONFIG_SND_SOC_SSM2602_SPI=m
|
CONFIG_SND_SOC_SSM2602_SPI=m
|
||||||
|
@ -6402,13 +6451,18 @@ CONFIG_SND_SOC_TAS2552=m
|
||||||
CONFIG_SND_SOC_TAS5086=m
|
CONFIG_SND_SOC_TAS5086=m
|
||||||
CONFIG_SND_SOC_TAS571X=m
|
CONFIG_SND_SOC_TAS571X=m
|
||||||
CONFIG_SND_SOC_TAS5720=m
|
CONFIG_SND_SOC_TAS5720=m
|
||||||
|
CONFIG_SND_SOC_TAS6424=m
|
||||||
CONFIG_SND_SOC_TFA9879=m
|
CONFIG_SND_SOC_TFA9879=m
|
||||||
CONFIG_SND_SOC_TLV320AIC23=m
|
CONFIG_SND_SOC_TLV320AIC23=m
|
||||||
CONFIG_SND_SOC_TLV320AIC23_I2C=m
|
CONFIG_SND_SOC_TLV320AIC23_I2C=m
|
||||||
CONFIG_SND_SOC_TLV320AIC23_SPI=m
|
CONFIG_SND_SOC_TLV320AIC23_SPI=m
|
||||||
CONFIG_SND_SOC_TLV320AIC31XX=m
|
CONFIG_SND_SOC_TLV320AIC31XX=m
|
||||||
|
CONFIG_SND_SOC_TLV320AIC32X4=m
|
||||||
|
CONFIG_SND_SOC_TLV320AIC32X4_I2C=m
|
||||||
|
CONFIG_SND_SOC_TLV320AIC32X4_SPI=m
|
||||||
CONFIG_SND_SOC_TLV320AIC3X=m
|
CONFIG_SND_SOC_TLV320AIC3X=m
|
||||||
CONFIG_SND_SOC_TS3A227E=m
|
CONFIG_SND_SOC_TS3A227E=m
|
||||||
|
CONFIG_SND_SOC_TSCS42XX=m
|
||||||
CONFIG_SND_SOC_WM8510=m
|
CONFIG_SND_SOC_WM8510=m
|
||||||
CONFIG_SND_SOC_WM8523=m
|
CONFIG_SND_SOC_WM8523=m
|
||||||
CONFIG_SND_SOC_WM8524=m
|
CONFIG_SND_SOC_WM8524=m
|
||||||
|
@ -6491,6 +6545,7 @@ CONFIG_HID_WALTOP=m
|
||||||
CONFIG_HID_GYRATION=m
|
CONFIG_HID_GYRATION=m
|
||||||
CONFIG_HID_ICADE=m
|
CONFIG_HID_ICADE=m
|
||||||
CONFIG_HID_ITE=m
|
CONFIG_HID_ITE=m
|
||||||
|
CONFIG_HID_JABRA=m
|
||||||
CONFIG_HID_TWINHAN=m
|
CONFIG_HID_TWINHAN=m
|
||||||
CONFIG_HID_KENSINGTON=m
|
CONFIG_HID_KENSINGTON=m
|
||||||
CONFIG_HID_LCPOWER=m
|
CONFIG_HID_LCPOWER=m
|
||||||
|
@ -6598,6 +6653,7 @@ CONFIG_USB_WUSB_CBAF=m
|
||||||
#
|
#
|
||||||
CONFIG_USB_C67X00_HCD=m
|
CONFIG_USB_C67X00_HCD=m
|
||||||
CONFIG_USB_XHCI_HCD=y
|
CONFIG_USB_XHCI_HCD=y
|
||||||
|
# CONFIG_USB_XHCI_DBGCAP is not set
|
||||||
CONFIG_USB_XHCI_PCI=y
|
CONFIG_USB_XHCI_PCI=y
|
||||||
CONFIG_USB_XHCI_PLATFORM=m
|
CONFIG_USB_XHCI_PLATFORM=m
|
||||||
CONFIG_USB_EHCI_HCD=y
|
CONFIG_USB_EHCI_HCD=y
|
||||||
|
@ -6743,18 +6799,6 @@ CONFIG_USB_SERIAL_IPW=m
|
||||||
CONFIG_USB_SERIAL_IUU=m
|
CONFIG_USB_SERIAL_IUU=m
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_PDA=m
|
CONFIG_USB_SERIAL_KEYSPAN_PDA=m
|
||||||
CONFIG_USB_SERIAL_KEYSPAN=m
|
CONFIG_USB_SERIAL_KEYSPAN=m
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_MPR=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA28=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA28X=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA19=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA18X=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA19W=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA49W=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y
|
|
||||||
CONFIG_USB_SERIAL_KLSI=m
|
CONFIG_USB_SERIAL_KLSI=m
|
||||||
CONFIG_USB_SERIAL_KOBIL_SCT=m
|
CONFIG_USB_SERIAL_KOBIL_SCT=m
|
||||||
CONFIG_USB_SERIAL_MCT_U232=m
|
CONFIG_USB_SERIAL_MCT_U232=m
|
||||||
|
@ -6962,6 +7006,7 @@ CONFIG_MMC_SDHCI_PCI=m
|
||||||
CONFIG_MMC_RICOH_MMC=y
|
CONFIG_MMC_RICOH_MMC=y
|
||||||
CONFIG_MMC_SDHCI_ACPI=m
|
CONFIG_MMC_SDHCI_ACPI=m
|
||||||
CONFIG_MMC_SDHCI_PLTFM=m
|
CONFIG_MMC_SDHCI_PLTFM=m
|
||||||
|
CONFIG_MMC_SDHCI_F_SDH30=m
|
||||||
CONFIG_MMC_WBSD=m
|
CONFIG_MMC_WBSD=m
|
||||||
CONFIG_MMC_TIFM_SD=m
|
CONFIG_MMC_TIFM_SD=m
|
||||||
CONFIG_MMC_SPI=m
|
CONFIG_MMC_SPI=m
|
||||||
|
@ -6973,6 +7018,7 @@ CONFIG_MMC_USHC=m
|
||||||
CONFIG_MMC_USDHI6ROL0=m
|
CONFIG_MMC_USDHI6ROL0=m
|
||||||
CONFIG_MMC_REALTEK_PCI=m
|
CONFIG_MMC_REALTEK_PCI=m
|
||||||
CONFIG_MMC_REALTEK_USB=m
|
CONFIG_MMC_REALTEK_USB=m
|
||||||
|
CONFIG_MMC_CQHCI=m
|
||||||
CONFIG_MMC_TOSHIBA_PCI=m
|
CONFIG_MMC_TOSHIBA_PCI=m
|
||||||
CONFIG_MMC_MTK=m
|
CONFIG_MMC_MTK=m
|
||||||
CONFIG_MMC_SDHCI_XENON=m
|
CONFIG_MMC_SDHCI_XENON=m
|
||||||
|
@ -7022,7 +7068,6 @@ CONFIG_LEDS_LP5523=m
|
||||||
CONFIG_LEDS_LP5562=m
|
CONFIG_LEDS_LP5562=m
|
||||||
CONFIG_LEDS_LP8501=m
|
CONFIG_LEDS_LP8501=m
|
||||||
CONFIG_LEDS_LP8788=m
|
CONFIG_LEDS_LP8788=m
|
||||||
CONFIG_LEDS_LP8860=m
|
|
||||||
CONFIG_LEDS_CLEVO_MAIL=m
|
CONFIG_LEDS_CLEVO_MAIL=m
|
||||||
CONFIG_LEDS_PCA955X=m
|
CONFIG_LEDS_PCA955X=m
|
||||||
# CONFIG_LEDS_PCA955X_GPIO is not set
|
# CONFIG_LEDS_PCA955X_GPIO is not set
|
||||||
|
@ -7074,6 +7119,7 @@ CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
|
||||||
CONFIG_LEDS_TRIGGER_TRANSIENT=m
|
CONFIG_LEDS_TRIGGER_TRANSIENT=m
|
||||||
CONFIG_LEDS_TRIGGER_CAMERA=m
|
CONFIG_LEDS_TRIGGER_CAMERA=m
|
||||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||||
|
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||||
# CONFIG_ACCESSIBILITY is not set
|
# CONFIG_ACCESSIBILITY is not set
|
||||||
CONFIG_INFINIBAND=m
|
CONFIG_INFINIBAND=m
|
||||||
CONFIG_INFINIBAND_USER_MAD=m
|
CONFIG_INFINIBAND_USER_MAD=m
|
||||||
|
@ -7256,6 +7302,7 @@ CONFIG_RTC_DRV_WM831X=m
|
||||||
CONFIG_RTC_DRV_WM8350=m
|
CONFIG_RTC_DRV_WM8350=m
|
||||||
CONFIG_RTC_DRV_PCF50633=m
|
CONFIG_RTC_DRV_PCF50633=m
|
||||||
CONFIG_RTC_DRV_AB3100=m
|
CONFIG_RTC_DRV_AB3100=m
|
||||||
|
CONFIG_RTC_DRV_CROS_EC=m
|
||||||
|
|
||||||
#
|
#
|
||||||
# on-CPU RTC drivers
|
# on-CPU RTC drivers
|
||||||
|
@ -7338,11 +7385,9 @@ CONFIG_VFIO_MDEV=m
|
||||||
CONFIG_VFIO_MDEV_DEVICE=m
|
CONFIG_VFIO_MDEV_DEVICE=m
|
||||||
CONFIG_IRQ_BYPASS_MANAGER=m
|
CONFIG_IRQ_BYPASS_MANAGER=m
|
||||||
CONFIG_VIRT_DRIVERS=y
|
CONFIG_VIRT_DRIVERS=y
|
||||||
|
CONFIG_VBOXGUEST=m
|
||||||
CONFIG_VIRTIO=y
|
CONFIG_VIRTIO=y
|
||||||
|
CONFIG_VIRTIO_MENU=y
|
||||||
#
|
|
||||||
# Virtio drivers
|
|
||||||
#
|
|
||||||
CONFIG_VIRTIO_PCI=y
|
CONFIG_VIRTIO_PCI=y
|
||||||
CONFIG_VIRTIO_PCI_LEGACY=y
|
CONFIG_VIRTIO_PCI_LEGACY=y
|
||||||
CONFIG_VIRTIO_BALLOON=y
|
CONFIG_VIRTIO_BALLOON=y
|
||||||
|
@ -7445,6 +7490,17 @@ CONFIG_ALI_FIR=m
|
||||||
CONFIG_VLSI_FIR=m
|
CONFIG_VLSI_FIR=m
|
||||||
CONFIG_VIA_FIR=m
|
CONFIG_VIA_FIR=m
|
||||||
CONFIG_MCS_FIR=m
|
CONFIG_MCS_FIR=m
|
||||||
|
CONFIG_IPX=m
|
||||||
|
# CONFIG_IPX_INTERN is not set
|
||||||
|
CONFIG_NCP_FS=m
|
||||||
|
CONFIG_NCPFS_PACKET_SIGNING=y
|
||||||
|
CONFIG_NCPFS_IOCTL_LOCKING=y
|
||||||
|
CONFIG_NCPFS_STRONG=y
|
||||||
|
CONFIG_NCPFS_NFS_NS=y
|
||||||
|
CONFIG_NCPFS_OS2_NS=y
|
||||||
|
# CONFIG_NCPFS_SMALLDOS is not set
|
||||||
|
CONFIG_NCPFS_NLS=y
|
||||||
|
CONFIG_NCPFS_EXTRAS=y
|
||||||
CONFIG_PRISM2_USB=m
|
CONFIG_PRISM2_USB=m
|
||||||
CONFIG_COMEDI=m
|
CONFIG_COMEDI=m
|
||||||
# CONFIG_COMEDI_DEBUG is not set
|
# CONFIG_COMEDI_DEBUG is not set
|
||||||
|
@ -7596,8 +7652,6 @@ CONFIG_R8712U=m
|
||||||
CONFIG_R8188EU=m
|
CONFIG_R8188EU=m
|
||||||
CONFIG_88EU_AP_MODE=y
|
CONFIG_88EU_AP_MODE=y
|
||||||
CONFIG_R8822BE=m
|
CONFIG_R8822BE=m
|
||||||
CONFIG_RTLHALMAC_ST=m
|
|
||||||
CONFIG_RTLPHYDM_ST=m
|
|
||||||
CONFIG_RTLWIFI_DEBUG_ST=y
|
CONFIG_RTLWIFI_DEBUG_ST=y
|
||||||
CONFIG_RTS5208=m
|
CONFIG_RTS5208=m
|
||||||
CONFIG_VT6655=m
|
CONFIG_VT6655=m
|
||||||
|
@ -7708,8 +7762,6 @@ CONFIG_STAGING_MEDIA=y
|
||||||
# CONFIG_INTEL_ATOMISP is not set
|
# CONFIG_INTEL_ATOMISP is not set
|
||||||
CONFIG_I2C_BCM2048=m
|
CONFIG_I2C_BCM2048=m
|
||||||
CONFIG_DVB_CXD2099=m
|
CONFIG_DVB_CXD2099=m
|
||||||
CONFIG_LIRC_STAGING=y
|
|
||||||
CONFIG_LIRC_ZILOG=m
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Android
|
# Android
|
||||||
|
@ -7727,6 +7779,7 @@ CONFIG_LNET_XPRT_IB=m
|
||||||
# CONFIG_LUSTRE_FS is not set
|
# CONFIG_LUSTRE_FS is not set
|
||||||
CONFIG_DGNC=m
|
CONFIG_DGNC=m
|
||||||
CONFIG_GS_FPGABOOT=m
|
CONFIG_GS_FPGABOOT=m
|
||||||
|
# CONFIG_UNISYSSPAR is not set
|
||||||
CONFIG_FB_TFT=m
|
CONFIG_FB_TFT=m
|
||||||
CONFIG_FB_TFT_AGM1264K_FL=m
|
CONFIG_FB_TFT_AGM1264K_FL=m
|
||||||
CONFIG_FB_TFT_BD663474=m
|
CONFIG_FB_TFT_BD663474=m
|
||||||
|
@ -7749,7 +7802,6 @@ CONFIG_FB_TFT_SH1106=m
|
||||||
CONFIG_FB_TFT_SSD1289=m
|
CONFIG_FB_TFT_SSD1289=m
|
||||||
CONFIG_FB_TFT_SSD1305=m
|
CONFIG_FB_TFT_SSD1305=m
|
||||||
CONFIG_FB_TFT_SSD1306=m
|
CONFIG_FB_TFT_SSD1306=m
|
||||||
CONFIG_FB_TFT_SSD1325=m
|
|
||||||
CONFIG_FB_TFT_SSD1331=m
|
CONFIG_FB_TFT_SSD1331=m
|
||||||
CONFIG_FB_TFT_SSD1351=m
|
CONFIG_FB_TFT_SSD1351=m
|
||||||
CONFIG_FB_TFT_ST7735R=m
|
CONFIG_FB_TFT_ST7735R=m
|
||||||
|
@ -7767,14 +7819,13 @@ CONFIG_WILC1000_SDIO=m
|
||||||
CONFIG_WILC1000_SPI=m
|
CONFIG_WILC1000_SPI=m
|
||||||
# CONFIG_WILC1000_HW_OOB_INTR is not set
|
# CONFIG_WILC1000_HW_OOB_INTR is not set
|
||||||
CONFIG_MOST=m
|
CONFIG_MOST=m
|
||||||
CONFIG_MOSTCORE=m
|
CONFIG_MOST_CDEV=m
|
||||||
CONFIG_AIM_CDEV=m
|
CONFIG_MOST_NET=m
|
||||||
CONFIG_AIM_NETWORK=m
|
CONFIG_MOST_SOUND=m
|
||||||
CONFIG_AIM_SOUND=m
|
CONFIG_MOST_VIDEO=m
|
||||||
CONFIG_AIM_V4L2=m
|
CONFIG_MOST_DIM2=m
|
||||||
CONFIG_HDM_DIM2=m
|
CONFIG_MOST_I2C=m
|
||||||
CONFIG_HDM_I2C=m
|
CONFIG_MOST_USB=m
|
||||||
CONFIG_HDM_USB=m
|
|
||||||
CONFIG_KS7010=m
|
CONFIG_KS7010=m
|
||||||
# CONFIG_GREYBUS is not set
|
# CONFIG_GREYBUS is not set
|
||||||
|
|
||||||
|
@ -7786,12 +7837,13 @@ CONFIG_DRM_VBOXVIDEO=m
|
||||||
# CONFIG_PI433 is not set
|
# CONFIG_PI433 is not set
|
||||||
CONFIG_X86_PLATFORM_DEVICES=y
|
CONFIG_X86_PLATFORM_DEVICES=y
|
||||||
CONFIG_ACER_WMI=m
|
CONFIG_ACER_WMI=m
|
||||||
|
CONFIG_ACER_WIRELESS=m
|
||||||
CONFIG_ACERHDF=m
|
CONFIG_ACERHDF=m
|
||||||
CONFIG_ALIENWARE_WMI=m
|
CONFIG_ALIENWARE_WMI=m
|
||||||
CONFIG_ASUS_LAPTOP=m
|
CONFIG_ASUS_LAPTOP=m
|
||||||
CONFIG_DELL_SMBIOS=m
|
CONFIG_DELL_SMBIOS=m
|
||||||
CONFIG_DELL_SMBIOS_WMI=m
|
CONFIG_DELL_SMBIOS_WMI=y
|
||||||
CONFIG_DELL_SMBIOS_SMM=m
|
CONFIG_DELL_SMBIOS_SMM=y
|
||||||
CONFIG_DELL_LAPTOP=m
|
CONFIG_DELL_LAPTOP=m
|
||||||
CONFIG_DELL_WMI=m
|
CONFIG_DELL_WMI=m
|
||||||
CONFIG_DELL_WMI_DESCRIPTOR=m
|
CONFIG_DELL_WMI_DESCRIPTOR=m
|
||||||
|
@ -7802,6 +7854,7 @@ CONFIG_DELL_RBTN=m
|
||||||
CONFIG_FUJITSU_LAPTOP=m
|
CONFIG_FUJITSU_LAPTOP=m
|
||||||
CONFIG_FUJITSU_TABLET=m
|
CONFIG_FUJITSU_TABLET=m
|
||||||
CONFIG_AMILO_RFKILL=m
|
CONFIG_AMILO_RFKILL=m
|
||||||
|
# CONFIG_GPD_POCKET_FAN is not set
|
||||||
CONFIG_TC1100_WMI=m
|
CONFIG_TC1100_WMI=m
|
||||||
CONFIG_HP_ACCEL=m
|
CONFIG_HP_ACCEL=m
|
||||||
CONFIG_HP_WIRELESS=m
|
CONFIG_HP_WIRELESS=m
|
||||||
|
@ -7862,17 +7915,19 @@ CONFIG_INTEL_BXTWC_PMIC_TMU=m
|
||||||
CONFIG_SURFACE_PRO3_BUTTON=m
|
CONFIG_SURFACE_PRO3_BUTTON=m
|
||||||
CONFIG_SURFACE_3_BUTTON=m
|
CONFIG_SURFACE_3_BUTTON=m
|
||||||
CONFIG_INTEL_PUNIT_IPC=m
|
CONFIG_INTEL_PUNIT_IPC=m
|
||||||
CONFIG_MLX_CPLD_PLATFORM=m
|
# CONFIG_MLX_PLATFORM is not set
|
||||||
# CONFIG_SILEAD_DMI is not set
|
# CONFIG_SILEAD_DMI is not set
|
||||||
|
CONFIG_INTEL_CHTDC_TI_PWRBTN=m
|
||||||
CONFIG_PMC_ATOM=y
|
CONFIG_PMC_ATOM=y
|
||||||
CONFIG_CHROME_PLATFORMS=y
|
CONFIG_CHROME_PLATFORMS=y
|
||||||
CONFIG_CHROMEOS_LAPTOP=m
|
CONFIG_CHROMEOS_LAPTOP=m
|
||||||
CONFIG_CHROMEOS_PSTORE=m
|
CONFIG_CHROMEOS_PSTORE=m
|
||||||
CONFIG_CROS_EC_CHARDEV=m
|
CONFIG_CROS_EC_CTL=m
|
||||||
CONFIG_CROS_EC_LPC=m
|
CONFIG_CROS_EC_LPC=m
|
||||||
# CONFIG_CROS_EC_LPC_MEC is not set
|
# CONFIG_CROS_EC_LPC_MEC is not set
|
||||||
CONFIG_CROS_EC_PROTO=y
|
CONFIG_CROS_EC_PROTO=y
|
||||||
CONFIG_CROS_KBD_LED_BACKLIGHT=m
|
CONFIG_CROS_KBD_LED_BACKLIGHT=m
|
||||||
|
# CONFIG_MELLANOX_PLATFORM is not set
|
||||||
CONFIG_CLKDEV_LOOKUP=y
|
CONFIG_CLKDEV_LOOKUP=y
|
||||||
CONFIG_HAVE_CLK_PREPARE=y
|
CONFIG_HAVE_CLK_PREPARE=y
|
||||||
CONFIG_COMMON_CLK=y
|
CONFIG_COMMON_CLK=y
|
||||||
|
@ -7935,6 +7990,7 @@ CONFIG_RPMSG=m
|
||||||
CONFIG_RPMSG_QCOM_GLINK_NATIVE=m
|
CONFIG_RPMSG_QCOM_GLINK_NATIVE=m
|
||||||
CONFIG_RPMSG_QCOM_GLINK_RPM=m
|
CONFIG_RPMSG_QCOM_GLINK_RPM=m
|
||||||
CONFIG_RPMSG_VIRTIO=m
|
CONFIG_RPMSG_VIRTIO=m
|
||||||
|
# CONFIG_SOUNDWIRE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SOC (System On Chip) specific Drivers
|
# SOC (System On Chip) specific Drivers
|
||||||
|
@ -7957,6 +8013,11 @@ CONFIG_RPMSG_VIRTIO=m
|
||||||
#
|
#
|
||||||
# CONFIG_SUNXI_SRAM is not set
|
# CONFIG_SUNXI_SRAM is not set
|
||||||
CONFIG_SOC_TI=y
|
CONFIG_SOC_TI=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# Xilinx SoC drivers
|
||||||
|
#
|
||||||
|
# CONFIG_XILINX_VCU is not set
|
||||||
CONFIG_PM_DEVFREQ=y
|
CONFIG_PM_DEVFREQ=y
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -7997,6 +8058,7 @@ CONFIG_MEMORY=y
|
||||||
CONFIG_IIO=m
|
CONFIG_IIO=m
|
||||||
CONFIG_IIO_BUFFER=y
|
CONFIG_IIO_BUFFER=y
|
||||||
CONFIG_IIO_BUFFER_CB=m
|
CONFIG_IIO_BUFFER_CB=m
|
||||||
|
CONFIG_IIO_BUFFER_HW_CONSUMER=m
|
||||||
CONFIG_IIO_KFIFO_BUF=m
|
CONFIG_IIO_KFIFO_BUF=m
|
||||||
CONFIG_IIO_TRIGGERED_BUFFER=m
|
CONFIG_IIO_TRIGGERED_BUFFER=m
|
||||||
CONFIG_IIO_CONFIGFS=m
|
CONFIG_IIO_CONFIGFS=m
|
||||||
|
@ -8275,6 +8337,9 @@ CONFIG_OPT3001=m
|
||||||
CONFIG_PA12203001=m
|
CONFIG_PA12203001=m
|
||||||
CONFIG_SI1145=m
|
CONFIG_SI1145=m
|
||||||
CONFIG_STK3310=m
|
CONFIG_STK3310=m
|
||||||
|
CONFIG_ST_UVIS25=m
|
||||||
|
CONFIG_ST_UVIS25_I2C=m
|
||||||
|
CONFIG_ST_UVIS25_SPI=m
|
||||||
CONFIG_TCS3414=m
|
CONFIG_TCS3414=m
|
||||||
CONFIG_TCS3472=m
|
CONFIG_TCS3472=m
|
||||||
CONFIG_SENSORS_TSL2563=m
|
CONFIG_SENSORS_TSL2563=m
|
||||||
|
@ -8284,6 +8349,7 @@ CONFIG_US5182D=m
|
||||||
CONFIG_VCNL4000=m
|
CONFIG_VCNL4000=m
|
||||||
CONFIG_VEML6070=m
|
CONFIG_VEML6070=m
|
||||||
CONFIG_VL6180=m
|
CONFIG_VL6180=m
|
||||||
|
CONFIG_ZOPT2201=m
|
||||||
|
|
||||||
#
|
#
|
||||||
# Magnetometer sensors
|
# Magnetometer sensors
|
||||||
|
@ -8505,16 +8571,17 @@ CONFIG_INTEL_TH_MSU=m
|
||||||
CONFIG_INTEL_TH_PTI=m
|
CONFIG_INTEL_TH_PTI=m
|
||||||
# CONFIG_INTEL_TH_DEBUG is not set
|
# CONFIG_INTEL_TH_DEBUG is not set
|
||||||
CONFIG_FPGA=m
|
CONFIG_FPGA=m
|
||||||
CONFIG_FPGA_MGR_ALTERA_CVP=m
|
|
||||||
CONFIG_FPGA_MGR_ALTERA_PS_SPI=m
|
|
||||||
CONFIG_FPGA_MGR_XILINX_SPI=m
|
|
||||||
CONFIG_ALTERA_PR_IP_CORE=m
|
CONFIG_ALTERA_PR_IP_CORE=m
|
||||||
|
CONFIG_FPGA_MGR_ALTERA_PS_SPI=m
|
||||||
#
|
CONFIG_FPGA_MGR_ALTERA_CVP=m
|
||||||
# FSI support
|
CONFIG_FPGA_MGR_XILINX_SPI=m
|
||||||
#
|
CONFIG_FPGA_BRIDGE=m
|
||||||
|
CONFIG_XILINX_PR_DECOUPLER=m
|
||||||
|
CONFIG_FPGA_REGION=m
|
||||||
# CONFIG_FSI is not set
|
# CONFIG_FSI is not set
|
||||||
CONFIG_PM_OPP=y
|
CONFIG_PM_OPP=y
|
||||||
|
# CONFIG_SIOX is not set
|
||||||
|
# CONFIG_SLIMBUS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Firmware Drivers
|
# Firmware Drivers
|
||||||
|
@ -8835,16 +8902,8 @@ CONFIG_CIFS_DEBUG=y
|
||||||
# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
|
# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
|
||||||
CONFIG_CIFS_DFS_UPCALL=y
|
CONFIG_CIFS_DFS_UPCALL=y
|
||||||
CONFIG_CIFS_SMB311=y
|
CONFIG_CIFS_SMB311=y
|
||||||
|
# CONFIG_CIFS_SMB_DIRECT is not set
|
||||||
CONFIG_CIFS_FSCACHE=y
|
CONFIG_CIFS_FSCACHE=y
|
||||||
CONFIG_NCP_FS=m
|
|
||||||
CONFIG_NCPFS_PACKET_SIGNING=y
|
|
||||||
CONFIG_NCPFS_IOCTL_LOCKING=y
|
|
||||||
CONFIG_NCPFS_STRONG=y
|
|
||||||
CONFIG_NCPFS_NFS_NS=y
|
|
||||||
CONFIG_NCPFS_OS2_NS=y
|
|
||||||
# CONFIG_NCPFS_SMALLDOS is not set
|
|
||||||
CONFIG_NCPFS_NLS=y
|
|
||||||
CONFIG_NCPFS_EXTRAS=y
|
|
||||||
CONFIG_CODA_FS=m
|
CONFIG_CODA_FS=m
|
||||||
CONFIG_AFS_FS=m
|
CONFIG_AFS_FS=m
|
||||||
# CONFIG_AFS_DEBUG is not set
|
# CONFIG_AFS_DEBUG is not set
|
||||||
|
@ -9034,6 +9093,7 @@ CONFIG_NOTIFIER_ERROR_INJECTION=m
|
||||||
CONFIG_PM_NOTIFIER_ERROR_INJECT=m
|
CONFIG_PM_NOTIFIER_ERROR_INJECT=m
|
||||||
CONFIG_NETDEV_NOTIFIER_ERROR_INJECT=m
|
CONFIG_NETDEV_NOTIFIER_ERROR_INJECT=m
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
|
CONFIG_FUNCTION_ERROR_INJECTION=y
|
||||||
# CONFIG_LATENCYTOP is not set
|
# CONFIG_LATENCYTOP is not set
|
||||||
CONFIG_USER_STACKTRACE_SUPPORT=y
|
CONFIG_USER_STACKTRACE_SUPPORT=y
|
||||||
CONFIG_NOP_TRACER=y
|
CONFIG_NOP_TRACER=y
|
||||||
|
@ -9075,6 +9135,7 @@ CONFIG_PROBE_EVENTS=y
|
||||||
CONFIG_DYNAMIC_FTRACE=y
|
CONFIG_DYNAMIC_FTRACE=y
|
||||||
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
|
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
|
||||||
CONFIG_FUNCTION_PROFILER=y
|
CONFIG_FUNCTION_PROFILER=y
|
||||||
|
# CONFIG_BPF_KPROBE_OVERRIDE is not set
|
||||||
CONFIG_FTRACE_MCOUNT_RECORD=y
|
CONFIG_FTRACE_MCOUNT_RECORD=y
|
||||||
# CONFIG_FTRACE_STARTUP_TEST is not set
|
# CONFIG_FTRACE_STARTUP_TEST is not set
|
||||||
CONFIG_MMIOTRACE=y
|
CONFIG_MMIOTRACE=y
|
||||||
|
@ -9087,10 +9148,7 @@ CONFIG_MMIOTRACE=y
|
||||||
CONFIG_TRACING_EVENTS_GPIO=y
|
CONFIG_TRACING_EVENTS_GPIO=y
|
||||||
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
|
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
|
||||||
# CONFIG_DMA_API_DEBUG is not set
|
# CONFIG_DMA_API_DEBUG is not set
|
||||||
|
CONFIG_RUNTIME_TESTING_MENU=y
|
||||||
#
|
|
||||||
# Runtime Testing
|
|
||||||
#
|
|
||||||
# CONFIG_LKDTM is not set
|
# CONFIG_LKDTM is not set
|
||||||
# CONFIG_TEST_LIST_SORT is not set
|
# CONFIG_TEST_LIST_SORT is not set
|
||||||
# CONFIG_TEST_SORT is not set
|
# CONFIG_TEST_SORT is not set
|
||||||
|
@ -9113,7 +9171,7 @@ CONFIG_TEST_PARMAN=m
|
||||||
CONFIG_TEST_LKM=m
|
CONFIG_TEST_LKM=m
|
||||||
CONFIG_TEST_USER_COPY=m
|
CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIND_BIT=m
|
CONFIG_FIND_BIT_BENCHMARK=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
# CONFIG_TEST_SYSCTL is not set
|
# CONFIG_TEST_SYSCTL is not set
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
@ -9149,7 +9207,6 @@ CONFIG_EARLY_PRINTK_EFI=y
|
||||||
# CONFIG_DEBUG_WX is not set
|
# CONFIG_DEBUG_WX is not set
|
||||||
CONFIG_DOUBLEFAULT=y
|
CONFIG_DOUBLEFAULT=y
|
||||||
# CONFIG_DEBUG_TLBFLUSH is not set
|
# CONFIG_DEBUG_TLBFLUSH is not set
|
||||||
# CONFIG_IOMMU_STRESS is not set
|
|
||||||
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
|
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
|
||||||
# CONFIG_X86_DECODER_SELFTEST is not set
|
# CONFIG_X86_DECODER_SELFTEST is not set
|
||||||
CONFIG_IO_DELAY_TYPE_0X80=0
|
CONFIG_IO_DELAY_TYPE_0X80=0
|
||||||
|
@ -9192,6 +9249,7 @@ CONFIG_INTEL_TXT=y
|
||||||
CONFIG_LSM_MMAP_MIN_ADDR=0
|
CONFIG_LSM_MMAP_MIN_ADDR=0
|
||||||
CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
|
CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
|
||||||
CONFIG_HARDENED_USERCOPY=y
|
CONFIG_HARDENED_USERCOPY=y
|
||||||
|
CONFIG_HARDENED_USERCOPY_FALLBACK=y
|
||||||
# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
|
# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
|
||||||
CONFIG_FORTIFY_SOURCE=y
|
CONFIG_FORTIFY_SOURCE=y
|
||||||
# CONFIG_STATIC_USERMODEHELPER is not set
|
# CONFIG_STATIC_USERMODEHELPER is not set
|
||||||
|
@ -9425,6 +9483,7 @@ CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m
|
||||||
CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m
|
CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m
|
||||||
CONFIG_CRYPTO_DEV_QAT_C62XVF=m
|
CONFIG_CRYPTO_DEV_QAT_C62XVF=m
|
||||||
CONFIG_CRYPTO_DEV_CHELSIO=m
|
CONFIG_CRYPTO_DEV_CHELSIO=m
|
||||||
|
# CONFIG_CHELSIO_IPSEC_INLINE is not set
|
||||||
CONFIG_CRYPTO_DEV_VIRTIO=m
|
CONFIG_CRYPTO_DEV_VIRTIO=m
|
||||||
CONFIG_ASYMMETRIC_KEY_TYPE=y
|
CONFIG_ASYMMETRIC_KEY_TYPE=y
|
||||||
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
|
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
|
||||||
|
@ -9541,7 +9600,8 @@ CONFIG_ASSOCIATIVE_ARRAY=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT_MAP=y
|
CONFIG_HAS_IOPORT_MAP=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
# CONFIG_DMA_NOOP_OPS is not set
|
CONFIG_SGL_ALLOC=y
|
||||||
|
# CONFIG_DMA_DIRECT_OPS is not set
|
||||||
CONFIG_DMA_VIRT_OPS=y
|
CONFIG_DMA_VIRT_OPS=y
|
||||||
CONFIG_CHECK_SIGNATURE=y
|
CONFIG_CHECK_SIGNATURE=y
|
||||||
CONFIG_CPU_RMAP=y
|
CONFIG_CPU_RMAP=y
|
|
@ -1,6 +1,6 @@
|
||||||
#
|
#
|
||||||
# Automatically generated file; DO NOT EDIT.
|
# Automatically generated file; DO NOT EDIT.
|
||||||
# Linux/x86 4.15.0-gnu Kernel Configuration
|
# Linux/x86 4.16.0-gnu Kernel Configuration
|
||||||
#
|
#
|
||||||
CONFIG_64BIT=y
|
CONFIG_64BIT=y
|
||||||
CONFIG_X86_64=y
|
CONFIG_X86_64=y
|
||||||
|
@ -42,7 +42,6 @@ CONFIG_X86_64_SMP=y
|
||||||
CONFIG_ARCH_SUPPORTS_UPROBES=y
|
CONFIG_ARCH_SUPPORTS_UPROBES=y
|
||||||
CONFIG_FIX_EARLYCON_MEM=y
|
CONFIG_FIX_EARLYCON_MEM=y
|
||||||
CONFIG_PGTABLE_LEVELS=4
|
CONFIG_PGTABLE_LEVELS=4
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
|
||||||
CONFIG_IRQ_WORK=y
|
CONFIG_IRQ_WORK=y
|
||||||
CONFIG_BUILDTIME_EXTABLE_SORT=y
|
CONFIG_BUILDTIME_EXTABLE_SORT=y
|
||||||
CONFIG_THREAD_INFO_IN_TASK=y
|
CONFIG_THREAD_INFO_IN_TASK=y
|
||||||
|
@ -96,7 +95,6 @@ CONFIG_GENERIC_MSI_IRQ=y
|
||||||
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
|
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
|
||||||
CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
|
CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
|
||||||
CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
|
CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
|
||||||
# CONFIG_IRQ_DOMAIN_DEBUG is not set
|
|
||||||
CONFIG_IRQ_FORCED_THREADING=y
|
CONFIG_IRQ_FORCED_THREADING=y
|
||||||
CONFIG_SPARSE_IRQ=y
|
CONFIG_SPARSE_IRQ=y
|
||||||
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
||||||
|
@ -236,6 +234,7 @@ CONFIG_KALLSYMS_BASE_RELATIVE=y
|
||||||
CONFIG_BPF_SYSCALL=y
|
CONFIG_BPF_SYSCALL=y
|
||||||
# CONFIG_BPF_JIT_ALWAYS_ON is not set
|
# CONFIG_BPF_JIT_ALWAYS_ON is not set
|
||||||
CONFIG_USERFAULTFD=y
|
CONFIG_USERFAULTFD=y
|
||||||
|
CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
|
||||||
# CONFIG_EMBEDDED is not set
|
# CONFIG_EMBEDDED is not set
|
||||||
CONFIG_HAVE_PERF_EVENTS=y
|
CONFIG_HAVE_PERF_EVENTS=y
|
||||||
# CONFIG_PC104 is not set
|
# CONFIG_PC104 is not set
|
||||||
|
@ -281,12 +280,14 @@ CONFIG_HAVE_KPROBES=y
|
||||||
CONFIG_HAVE_KRETPROBES=y
|
CONFIG_HAVE_KRETPROBES=y
|
||||||
CONFIG_HAVE_OPTPROBES=y
|
CONFIG_HAVE_OPTPROBES=y
|
||||||
CONFIG_HAVE_KPROBES_ON_FTRACE=y
|
CONFIG_HAVE_KPROBES_ON_FTRACE=y
|
||||||
|
CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y
|
||||||
CONFIG_HAVE_NMI=y
|
CONFIG_HAVE_NMI=y
|
||||||
CONFIG_HAVE_ARCH_TRACEHOOK=y
|
CONFIG_HAVE_ARCH_TRACEHOOK=y
|
||||||
CONFIG_HAVE_DMA_CONTIGUOUS=y
|
CONFIG_HAVE_DMA_CONTIGUOUS=y
|
||||||
CONFIG_GENERIC_SMP_IDLE_THREAD=y
|
CONFIG_GENERIC_SMP_IDLE_THREAD=y
|
||||||
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
|
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
|
||||||
CONFIG_ARCH_HAS_SET_MEMORY=y
|
CONFIG_ARCH_HAS_SET_MEMORY=y
|
||||||
|
CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
|
||||||
CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
|
CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
|
||||||
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
|
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
|
||||||
CONFIG_HAVE_CLK=y
|
CONFIG_HAVE_CLK=y
|
||||||
|
@ -315,10 +316,10 @@ CONFIG_GCC_PLUGINS=y
|
||||||
# CONFIG_GCC_PLUGIN_STRUCTLEAK is not set
|
# CONFIG_GCC_PLUGIN_STRUCTLEAK is not set
|
||||||
# CONFIG_GCC_PLUGIN_RANDSTRUCT is not set
|
# CONFIG_GCC_PLUGIN_RANDSTRUCT is not set
|
||||||
CONFIG_HAVE_CC_STACKPROTECTOR=y
|
CONFIG_HAVE_CC_STACKPROTECTOR=y
|
||||||
CONFIG_CC_STACKPROTECTOR=y
|
|
||||||
# CONFIG_CC_STACKPROTECTOR_NONE is not set
|
# CONFIG_CC_STACKPROTECTOR_NONE is not set
|
||||||
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
|
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
|
||||||
CONFIG_CC_STACKPROTECTOR_STRONG=y
|
CONFIG_CC_STACKPROTECTOR_STRONG=y
|
||||||
|
# CONFIG_CC_STACKPROTECTOR_AUTO is not set
|
||||||
CONFIG_THIN_ARCHIVES=y
|
CONFIG_THIN_ARCHIVES=y
|
||||||
CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
|
CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
|
||||||
CONFIG_HAVE_CONTEXT_TRACKING=y
|
CONFIG_HAVE_CONTEXT_TRACKING=y
|
||||||
|
@ -354,6 +355,7 @@ CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
|
||||||
CONFIG_STRICT_KERNEL_RWX=y
|
CONFIG_STRICT_KERNEL_RWX=y
|
||||||
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
|
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
|
||||||
CONFIG_STRICT_MODULE_RWX=y
|
CONFIG_STRICT_MODULE_RWX=y
|
||||||
|
CONFIG_ARCH_HAS_PHYS_TO_DMA=y
|
||||||
CONFIG_ARCH_HAS_REFCOUNT=y
|
CONFIG_ARCH_HAS_REFCOUNT=y
|
||||||
CONFIG_REFCOUNT_FULL=y
|
CONFIG_REFCOUNT_FULL=y
|
||||||
|
|
||||||
|
@ -449,6 +451,7 @@ CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
|
||||||
CONFIG_QUEUED_SPINLOCKS=y
|
CONFIG_QUEUED_SPINLOCKS=y
|
||||||
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
|
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
|
||||||
CONFIG_QUEUED_RWLOCKS=y
|
CONFIG_QUEUED_RWLOCKS=y
|
||||||
|
CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y
|
||||||
CONFIG_FREEZER=y
|
CONFIG_FREEZER=y
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -494,6 +497,7 @@ CONFIG_KVM_GUEST=y
|
||||||
CONFIG_KVM_DEBUG_FS=y
|
CONFIG_KVM_DEBUG_FS=y
|
||||||
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
|
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
|
||||||
CONFIG_PARAVIRT_CLOCK=y
|
CONFIG_PARAVIRT_CLOCK=y
|
||||||
|
CONFIG_JAILHOUSE_GUEST=y
|
||||||
CONFIG_NO_BOOTMEM=y
|
CONFIG_NO_BOOTMEM=y
|
||||||
# CONFIG_MK8 is not set
|
# CONFIG_MK8 is not set
|
||||||
# CONFIG_MPSC is not set
|
# CONFIG_MPSC is not set
|
||||||
|
@ -520,6 +524,9 @@ CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
|
||||||
CONFIG_SWIOTLB=y
|
CONFIG_SWIOTLB=y
|
||||||
CONFIG_IOMMU_HELPER=y
|
CONFIG_IOMMU_HELPER=y
|
||||||
# CONFIG_MAXSMP is not set
|
# CONFIG_MAXSMP is not set
|
||||||
|
CONFIG_NR_CPUS_RANGE_BEGIN=2
|
||||||
|
CONFIG_NR_CPUS_RANGE_END=512
|
||||||
|
CONFIG_NR_CPUS_DEFAULT=64
|
||||||
CONFIG_NR_CPUS=256
|
CONFIG_NR_CPUS=256
|
||||||
CONFIG_SCHED_SMT=y
|
CONFIG_SCHED_SMT=y
|
||||||
CONFIG_SCHED_MC=y
|
CONFIG_SCHED_MC=y
|
||||||
|
@ -630,7 +637,6 @@ CONFIG_ZSMALLOC=y
|
||||||
CONFIG_PGTABLE_MAPPING=y
|
CONFIG_PGTABLE_MAPPING=y
|
||||||
# CONFIG_ZSMALLOC_STAT is not set
|
# CONFIG_ZSMALLOC_STAT is not set
|
||||||
CONFIG_GENERIC_EARLY_IOREMAP=y
|
CONFIG_GENERIC_EARLY_IOREMAP=y
|
||||||
CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y
|
|
||||||
# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
|
# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
|
||||||
CONFIG_IDLE_PAGE_TRACKING=y
|
CONFIG_IDLE_PAGE_TRACKING=y
|
||||||
CONFIG_ARCH_HAS_ZONE_DEVICE=y
|
CONFIG_ARCH_HAS_ZONE_DEVICE=y
|
||||||
|
@ -686,7 +692,6 @@ CONFIG_HOTPLUG_CPU=y
|
||||||
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
|
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
|
||||||
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
|
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
|
||||||
# CONFIG_COMPAT_VDSO is not set
|
# CONFIG_COMPAT_VDSO is not set
|
||||||
# CONFIG_LEGACY_VSYSCALL_NATIVE is not set
|
|
||||||
CONFIG_LEGACY_VSYSCALL_EMULATE=y
|
CONFIG_LEGACY_VSYSCALL_EMULATE=y
|
||||||
# CONFIG_LEGACY_VSYSCALL_NONE is not set
|
# CONFIG_LEGACY_VSYSCALL_NONE is not set
|
||||||
# CONFIG_CMDLINE_BOOL is not set
|
# CONFIG_CMDLINE_BOOL is not set
|
||||||
|
@ -729,6 +734,7 @@ CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
|
||||||
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
|
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
|
||||||
CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y
|
CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y
|
||||||
# CONFIG_ACPI_DEBUGGER is not set
|
# CONFIG_ACPI_DEBUGGER is not set
|
||||||
|
CONFIG_ACPI_SPCR_TABLE=y
|
||||||
CONFIG_ACPI_LPIT=y
|
CONFIG_ACPI_LPIT=y
|
||||||
CONFIG_ACPI_SLEEP=y
|
CONFIG_ACPI_SLEEP=y
|
||||||
# CONFIG_ACPI_PROCFS_POWER is not set
|
# CONFIG_ACPI_PROCFS_POWER is not set
|
||||||
|
@ -756,7 +762,6 @@ CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y
|
||||||
CONFIG_ACPI_TABLE_UPGRADE=y
|
CONFIG_ACPI_TABLE_UPGRADE=y
|
||||||
# CONFIG_ACPI_DEBUG is not set
|
# CONFIG_ACPI_DEBUG is not set
|
||||||
CONFIG_ACPI_PCI_SLOT=y
|
CONFIG_ACPI_PCI_SLOT=y
|
||||||
CONFIG_X86_PM_TIMER=y
|
|
||||||
CONFIG_ACPI_CONTAINER=y
|
CONFIG_ACPI_CONTAINER=y
|
||||||
CONFIG_ACPI_HOTPLUG_MEMORY=y
|
CONFIG_ACPI_HOTPLUG_MEMORY=y
|
||||||
CONFIG_ACPI_HOTPLUG_IOAPIC=y
|
CONFIG_ACPI_HOTPLUG_IOAPIC=y
|
||||||
|
@ -779,6 +784,7 @@ CONFIG_ACPI_WATCHDOG=y
|
||||||
CONFIG_ACPI_EXTLOG=m
|
CONFIG_ACPI_EXTLOG=m
|
||||||
# CONFIG_PMIC_OPREGION is not set
|
# CONFIG_PMIC_OPREGION is not set
|
||||||
CONFIG_ACPI_CONFIGFS=m
|
CONFIG_ACPI_CONFIGFS=m
|
||||||
|
CONFIG_X86_PM_TIMER=y
|
||||||
CONFIG_SFI=y
|
CONFIG_SFI=y
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -873,6 +879,10 @@ CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m
|
||||||
CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m
|
CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m
|
||||||
CONFIG_HOTPLUG_PCI_SHPC=m
|
CONFIG_HOTPLUG_PCI_SHPC=m
|
||||||
|
|
||||||
|
#
|
||||||
|
# Cadence PCIe controllers support
|
||||||
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# DesignWare PCI Core Support
|
# DesignWare PCI Core Support
|
||||||
#
|
#
|
||||||
|
@ -1080,12 +1090,15 @@ CONFIG_BRIDGE_NETFILTER=m
|
||||||
#
|
#
|
||||||
CONFIG_NETFILTER_INGRESS=y
|
CONFIG_NETFILTER_INGRESS=y
|
||||||
CONFIG_NETFILTER_NETLINK=m
|
CONFIG_NETFILTER_NETLINK=m
|
||||||
|
CONFIG_NETFILTER_FAMILY_BRIDGE=y
|
||||||
|
CONFIG_NETFILTER_FAMILY_ARP=y
|
||||||
CONFIG_NETFILTER_NETLINK_ACCT=m
|
CONFIG_NETFILTER_NETLINK_ACCT=m
|
||||||
CONFIG_NETFILTER_NETLINK_QUEUE=m
|
CONFIG_NETFILTER_NETLINK_QUEUE=m
|
||||||
CONFIG_NETFILTER_NETLINK_LOG=m
|
CONFIG_NETFILTER_NETLINK_LOG=m
|
||||||
CONFIG_NF_CONNTRACK=m
|
CONFIG_NF_CONNTRACK=m
|
||||||
CONFIG_NF_LOG_COMMON=m
|
CONFIG_NF_LOG_COMMON=m
|
||||||
CONFIG_NF_LOG_NETDEV=m
|
CONFIG_NF_LOG_NETDEV=m
|
||||||
|
CONFIG_NETFILTER_CONNCOUNT=m
|
||||||
CONFIG_NF_CONNTRACK_MARK=y
|
CONFIG_NF_CONNTRACK_MARK=y
|
||||||
CONFIG_NF_CONNTRACK_SECMARK=y
|
CONFIG_NF_CONNTRACK_SECMARK=y
|
||||||
CONFIG_NF_CONNTRACK_ZONES=y
|
CONFIG_NF_CONNTRACK_ZONES=y
|
||||||
|
@ -1133,6 +1146,7 @@ CONFIG_NFT_META=m
|
||||||
CONFIG_NFT_RT=m
|
CONFIG_NFT_RT=m
|
||||||
CONFIG_NFT_NUMGEN=m
|
CONFIG_NFT_NUMGEN=m
|
||||||
CONFIG_NFT_CT=m
|
CONFIG_NFT_CT=m
|
||||||
|
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||||
CONFIG_NFT_SET_RBTREE=m
|
CONFIG_NFT_SET_RBTREE=m
|
||||||
CONFIG_NFT_SET_HASH=m
|
CONFIG_NFT_SET_HASH=m
|
||||||
CONFIG_NFT_SET_BITMAP=m
|
CONFIG_NFT_SET_BITMAP=m
|
||||||
|
@ -1155,6 +1169,8 @@ CONFIG_NF_DUP_NETDEV=m
|
||||||
CONFIG_NFT_DUP_NETDEV=m
|
CONFIG_NFT_DUP_NETDEV=m
|
||||||
CONFIG_NFT_FWD_NETDEV=m
|
CONFIG_NFT_FWD_NETDEV=m
|
||||||
CONFIG_NFT_FIB_NETDEV=m
|
CONFIG_NFT_FIB_NETDEV=m
|
||||||
|
CONFIG_NF_FLOW_TABLE_INET=m
|
||||||
|
CONFIG_NF_FLOW_TABLE=m
|
||||||
CONFIG_NETFILTER_XTABLES=m
|
CONFIG_NETFILTER_XTABLES=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1316,6 +1332,7 @@ CONFIG_NFT_REJECT_IPV4=m
|
||||||
CONFIG_NFT_DUP_IPV4=m
|
CONFIG_NFT_DUP_IPV4=m
|
||||||
CONFIG_NFT_FIB_IPV4=m
|
CONFIG_NFT_FIB_IPV4=m
|
||||||
CONFIG_NF_TABLES_ARP=m
|
CONFIG_NF_TABLES_ARP=m
|
||||||
|
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||||
CONFIG_NF_DUP_IPV4=m
|
CONFIG_NF_DUP_IPV4=m
|
||||||
CONFIG_NF_LOG_ARP=m
|
CONFIG_NF_LOG_ARP=m
|
||||||
CONFIG_NF_LOG_IPV4=m
|
CONFIG_NF_LOG_IPV4=m
|
||||||
|
@ -1362,6 +1379,7 @@ CONFIG_NFT_CHAIN_ROUTE_IPV6=m
|
||||||
CONFIG_NFT_REJECT_IPV6=m
|
CONFIG_NFT_REJECT_IPV6=m
|
||||||
CONFIG_NFT_DUP_IPV6=m
|
CONFIG_NFT_DUP_IPV6=m
|
||||||
CONFIG_NFT_FIB_IPV6=m
|
CONFIG_NFT_FIB_IPV6=m
|
||||||
|
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||||
CONFIG_NF_DUP_IPV6=m
|
CONFIG_NF_DUP_IPV6=m
|
||||||
CONFIG_NF_REJECT_IPV6=m
|
CONFIG_NF_REJECT_IPV6=m
|
||||||
CONFIG_NF_LOG_IPV6=m
|
CONFIG_NF_LOG_IPV6=m
|
||||||
|
@ -1380,6 +1398,7 @@ CONFIG_IP6_NF_MATCH_IPV6HEADER=m
|
||||||
CONFIG_IP6_NF_MATCH_MH=m
|
CONFIG_IP6_NF_MATCH_MH=m
|
||||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||||
CONFIG_IP6_NF_MATCH_RT=m
|
CONFIG_IP6_NF_MATCH_RT=m
|
||||||
|
CONFIG_IP6_NF_MATCH_SRH=m
|
||||||
CONFIG_IP6_NF_TARGET_HL=m
|
CONFIG_IP6_NF_TARGET_HL=m
|
||||||
CONFIG_IP6_NF_FILTER=m
|
CONFIG_IP6_NF_FILTER=m
|
||||||
CONFIG_IP6_NF_TARGET_REJECT=m
|
CONFIG_IP6_NF_TARGET_REJECT=m
|
||||||
|
@ -1433,9 +1452,7 @@ CONFIG_INET_DCCP_DIAG=m
|
||||||
# DCCP Kernel Hacking
|
# DCCP Kernel Hacking
|
||||||
#
|
#
|
||||||
# CONFIG_IP_DCCP_DEBUG is not set
|
# CONFIG_IP_DCCP_DEBUG is not set
|
||||||
CONFIG_NET_DCCPPROBE=m
|
|
||||||
CONFIG_IP_SCTP=m
|
CONFIG_IP_SCTP=m
|
||||||
CONFIG_NET_SCTPPROBE=m
|
|
||||||
# CONFIG_SCTP_DBG_OBJCNT is not set
|
# CONFIG_SCTP_DBG_OBJCNT is not set
|
||||||
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
|
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
|
||||||
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
|
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
|
||||||
|
@ -1470,6 +1487,7 @@ CONFIG_BRIDGE_IGMP_SNOOPING=y
|
||||||
CONFIG_BRIDGE_VLAN_FILTERING=y
|
CONFIG_BRIDGE_VLAN_FILTERING=y
|
||||||
CONFIG_HAVE_NET_DSA=y
|
CONFIG_HAVE_NET_DSA=y
|
||||||
CONFIG_NET_DSA=m
|
CONFIG_NET_DSA=m
|
||||||
|
CONFIG_NET_DSA_LEGACY=y
|
||||||
CONFIG_NET_DSA_TAG_BRCM=y
|
CONFIG_NET_DSA_TAG_BRCM=y
|
||||||
CONFIG_NET_DSA_TAG_BRCM_PREPEND=y
|
CONFIG_NET_DSA_TAG_BRCM_PREPEND=y
|
||||||
CONFIG_NET_DSA_TAG_DSA=y
|
CONFIG_NET_DSA_TAG_DSA=y
|
||||||
|
@ -1486,8 +1504,6 @@ CONFIG_DECNET=m
|
||||||
# CONFIG_DECNET_ROUTER is not set
|
# CONFIG_DECNET_ROUTER is not set
|
||||||
CONFIG_LLC=m
|
CONFIG_LLC=m
|
||||||
CONFIG_LLC2=m
|
CONFIG_LLC2=m
|
||||||
CONFIG_IPX=m
|
|
||||||
# CONFIG_IPX_INTERN is not set
|
|
||||||
CONFIG_ATALK=m
|
CONFIG_ATALK=m
|
||||||
CONFIG_DEV_APPLETALK=m
|
CONFIG_DEV_APPLETALK=m
|
||||||
CONFIG_IPDDP=m
|
CONFIG_IPDDP=m
|
||||||
|
@ -1644,7 +1660,6 @@ CONFIG_NET_FLOW_LIMIT=y
|
||||||
# Network testing
|
# Network testing
|
||||||
#
|
#
|
||||||
CONFIG_NET_PKTGEN=m
|
CONFIG_NET_PKTGEN=m
|
||||||
CONFIG_NET_TCPPROBE=m
|
|
||||||
# CONFIG_NET_DROP_MONITOR is not set
|
# CONFIG_NET_DROP_MONITOR is not set
|
||||||
CONFIG_HAMRADIO=y
|
CONFIG_HAMRADIO=y
|
||||||
|
|
||||||
|
@ -1744,6 +1759,7 @@ CONFIG_BT_BCM=m
|
||||||
CONFIG_BT_RTL=m
|
CONFIG_BT_RTL=m
|
||||||
CONFIG_BT_QCA=m
|
CONFIG_BT_QCA=m
|
||||||
CONFIG_BT_HCIBTUSB=m
|
CONFIG_BT_HCIBTUSB=m
|
||||||
|
# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set
|
||||||
CONFIG_BT_HCIBTUSB_BCM=y
|
CONFIG_BT_HCIBTUSB_BCM=y
|
||||||
CONFIG_BT_HCIBTUSB_RTL=y
|
CONFIG_BT_HCIBTUSB_RTL=y
|
||||||
CONFIG_BT_HCIBTSDIO=m
|
CONFIG_BT_HCIBTSDIO=m
|
||||||
|
@ -1898,7 +1914,6 @@ CONFIG_DEVTMPFS_MOUNT=y
|
||||||
# CONFIG_STANDALONE is not set
|
# CONFIG_STANDALONE is not set
|
||||||
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
CONFIG_FW_LOADER=y
|
CONFIG_FW_LOADER=y
|
||||||
CONFIG_FIRMWARE_IN_KERNEL=y
|
|
||||||
CONFIG_EXTRA_FIRMWARE=""
|
CONFIG_EXTRA_FIRMWARE=""
|
||||||
CONFIG_FW_LOADER_USER_HELPER=y
|
CONFIG_FW_LOADER_USER_HELPER=y
|
||||||
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
|
||||||
|
@ -2197,6 +2212,7 @@ CONFIG_USB_SWITCH_FSA9480=m
|
||||||
CONFIG_LATTICE_ECP3_CONFIG=m
|
CONFIG_LATTICE_ECP3_CONFIG=m
|
||||||
CONFIG_SRAM=y
|
CONFIG_SRAM=y
|
||||||
# CONFIG_PCI_ENDPOINT_TEST is not set
|
# CONFIG_PCI_ENDPOINT_TEST is not set
|
||||||
|
CONFIG_MISC_RTSX=m
|
||||||
CONFIG_C2PORT=m
|
CONFIG_C2PORT=m
|
||||||
CONFIG_C2PORT_DURAMAR_2150=m
|
CONFIG_C2PORT_DURAMAR_2150=m
|
||||||
|
|
||||||
|
@ -2275,6 +2291,9 @@ CONFIG_ECHO=m
|
||||||
# CONFIG_CXL_BASE is not set
|
# CONFIG_CXL_BASE is not set
|
||||||
# CONFIG_CXL_AFU_DRIVER_OPS is not set
|
# CONFIG_CXL_AFU_DRIVER_OPS is not set
|
||||||
# CONFIG_CXL_LIB is not set
|
# CONFIG_CXL_LIB is not set
|
||||||
|
# CONFIG_OCXL_BASE is not set
|
||||||
|
CONFIG_MISC_RTSX_PCI=m
|
||||||
|
CONFIG_MISC_RTSX_USB=m
|
||||||
CONFIG_HAVE_IDE=y
|
CONFIG_HAVE_IDE=y
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
|
@ -2445,6 +2464,7 @@ CONFIG_SATA_PMP=y
|
||||||
# Controllers with non-SFF native interface
|
# Controllers with non-SFF native interface
|
||||||
#
|
#
|
||||||
CONFIG_SATA_AHCI=m
|
CONFIG_SATA_AHCI=m
|
||||||
|
CONFIG_SATA_MOBILE_LPM_POLICY=0
|
||||||
CONFIG_SATA_AHCI_PLATFORM=m
|
CONFIG_SATA_AHCI_PLATFORM=m
|
||||||
CONFIG_SATA_INIC162X=m
|
CONFIG_SATA_INIC162X=m
|
||||||
CONFIG_SATA_ACARD_AHCI=m
|
CONFIG_SATA_ACARD_AHCI=m
|
||||||
|
@ -2553,6 +2573,7 @@ CONFIG_DM_BUFIO=m
|
||||||
# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
|
# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
|
||||||
CONFIG_DM_BIO_PRISON=m
|
CONFIG_DM_BIO_PRISON=m
|
||||||
CONFIG_DM_PERSISTENT_DATA=m
|
CONFIG_DM_PERSISTENT_DATA=m
|
||||||
|
CONFIG_DM_UNSTRIPED=m
|
||||||
CONFIG_DM_CRYPT=m
|
CONFIG_DM_CRYPT=m
|
||||||
CONFIG_DM_SNAPSHOT=m
|
CONFIG_DM_SNAPSHOT=m
|
||||||
CONFIG_DM_THIN_PROVISIONING=m
|
CONFIG_DM_THIN_PROVISIONING=m
|
||||||
|
@ -2756,6 +2777,9 @@ CONFIG_MACB_USE_HWSTAMP=y
|
||||||
CONFIG_MACB_PCI=m
|
CONFIG_MACB_PCI=m
|
||||||
CONFIG_NET_VENDOR_BROADCOM=y
|
CONFIG_NET_VENDOR_BROADCOM=y
|
||||||
CONFIG_B44=m
|
CONFIG_B44=m
|
||||||
|
CONFIG_B44_PCI_AUTOSELECT=y
|
||||||
|
CONFIG_B44_PCICORE_AUTOSELECT=y
|
||||||
|
CONFIG_B44_PCI=y
|
||||||
CONFIG_BNX2=m
|
CONFIG_BNX2=m
|
||||||
CONFIG_CNIC=m
|
CONFIG_CNIC=m
|
||||||
CONFIG_TIGON3=m
|
CONFIG_TIGON3=m
|
||||||
|
@ -2773,6 +2797,7 @@ CONFIG_THUNDER_NIC_PF=m
|
||||||
CONFIG_THUNDER_NIC_VF=m
|
CONFIG_THUNDER_NIC_VF=m
|
||||||
CONFIG_THUNDER_NIC_BGX=m
|
CONFIG_THUNDER_NIC_BGX=m
|
||||||
CONFIG_THUNDER_NIC_RGX=m
|
CONFIG_THUNDER_NIC_RGX=m
|
||||||
|
CONFIG_CAVIUM_PTP=m
|
||||||
CONFIG_LIQUIDIO=m
|
CONFIG_LIQUIDIO=m
|
||||||
CONFIG_LIQUIDIO_VF=m
|
CONFIG_LIQUIDIO_VF=m
|
||||||
CONFIG_NET_VENDOR_CHELSIO=y
|
CONFIG_NET_VENDOR_CHELSIO=y
|
||||||
|
@ -2786,6 +2811,7 @@ CONFIG_CHELSIO_T4VF=m
|
||||||
CONFIG_CHELSIO_LIB=m
|
CONFIG_CHELSIO_LIB=m
|
||||||
CONFIG_NET_VENDOR_CISCO=y
|
CONFIG_NET_VENDOR_CISCO=y
|
||||||
CONFIG_ENIC=m
|
CONFIG_ENIC=m
|
||||||
|
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||||
CONFIG_CX_ECAT=m
|
CONFIG_CX_ECAT=m
|
||||||
CONFIG_DNET=m
|
CONFIG_DNET=m
|
||||||
CONFIG_NET_VENDOR_DEC=y
|
CONFIG_NET_VENDOR_DEC=y
|
||||||
|
@ -2957,6 +2983,7 @@ CONFIG_EPIC100=m
|
||||||
CONFIG_SMSC911X=m
|
CONFIG_SMSC911X=m
|
||||||
# CONFIG_SMSC911X_ARCH_HOOKS is not set
|
# CONFIG_SMSC911X_ARCH_HOOKS is not set
|
||||||
CONFIG_SMSC9420=m
|
CONFIG_SMSC9420=m
|
||||||
|
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||||
CONFIG_NET_VENDOR_STMICRO=y
|
CONFIG_NET_VENDOR_STMICRO=y
|
||||||
CONFIG_STMMAC_ETH=m
|
CONFIG_STMMAC_ETH=m
|
||||||
CONFIG_STMMAC_PLATFORM=m
|
CONFIG_STMMAC_PLATFORM=m
|
||||||
|
@ -3131,6 +3158,7 @@ CONFIG_ATH9K_PCOEM=y
|
||||||
CONFIG_ATH9K_HTC=m
|
CONFIG_ATH9K_HTC=m
|
||||||
CONFIG_ATH9K_HTC_DEBUGFS=y
|
CONFIG_ATH9K_HTC_DEBUGFS=y
|
||||||
CONFIG_ATH9K_HWRNG=y
|
CONFIG_ATH9K_HWRNG=y
|
||||||
|
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||||
CONFIG_CARL9170=m
|
CONFIG_CARL9170=m
|
||||||
CONFIG_CARL9170_LEDS=y
|
CONFIG_CARL9170_LEDS=y
|
||||||
# CONFIG_CARL9170_DEBUGFS is not set
|
# CONFIG_CARL9170_DEBUGFS is not set
|
||||||
|
@ -3152,6 +3180,7 @@ CONFIG_ATH10K_SDIO=m
|
||||||
CONFIG_ATH10K_USB=m
|
CONFIG_ATH10K_USB=m
|
||||||
# CONFIG_ATH10K_DEBUG is not set
|
# CONFIG_ATH10K_DEBUG is not set
|
||||||
CONFIG_ATH10K_DEBUGFS=y
|
CONFIG_ATH10K_DEBUGFS=y
|
||||||
|
# CONFIG_ATH10K_SPECTRAL is not set
|
||||||
CONFIG_ATH10K_TRACING=y
|
CONFIG_ATH10K_TRACING=y
|
||||||
CONFIG_WCN36XX=m
|
CONFIG_WCN36XX=m
|
||||||
# CONFIG_WCN36XX_DEBUGFS is not set
|
# CONFIG_WCN36XX_DEBUGFS is not set
|
||||||
|
@ -3167,6 +3196,8 @@ CONFIG_B43_SSB=y
|
||||||
CONFIG_B43_BUSES_BCMA_AND_SSB=y
|
CONFIG_B43_BUSES_BCMA_AND_SSB=y
|
||||||
# CONFIG_B43_BUSES_BCMA is not set
|
# CONFIG_B43_BUSES_BCMA is not set
|
||||||
# CONFIG_B43_BUSES_SSB is not set
|
# CONFIG_B43_BUSES_SSB is not set
|
||||||
|
CONFIG_B43_PCI_AUTOSELECT=y
|
||||||
|
CONFIG_B43_PCICORE_AUTOSELECT=y
|
||||||
# CONFIG_B43_SDIO is not set
|
# CONFIG_B43_SDIO is not set
|
||||||
CONFIG_B43_BCMA_PIO=y
|
CONFIG_B43_BCMA_PIO=y
|
||||||
CONFIG_B43_PIO=y
|
CONFIG_B43_PIO=y
|
||||||
|
@ -3178,6 +3209,8 @@ CONFIG_B43_LEDS=y
|
||||||
CONFIG_B43_HWRNG=y
|
CONFIG_B43_HWRNG=y
|
||||||
# CONFIG_B43_DEBUG is not set
|
# CONFIG_B43_DEBUG is not set
|
||||||
CONFIG_B43LEGACY=m
|
CONFIG_B43LEGACY=m
|
||||||
|
CONFIG_B43LEGACY_PCI_AUTOSELECT=y
|
||||||
|
CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y
|
||||||
CONFIG_B43LEGACY_LEDS=y
|
CONFIG_B43LEGACY_LEDS=y
|
||||||
CONFIG_B43LEGACY_HWRNG=y
|
CONFIG_B43LEGACY_HWRNG=y
|
||||||
# CONFIG_B43LEGACY_DEBUG is not set
|
# CONFIG_B43LEGACY_DEBUG is not set
|
||||||
|
@ -3275,6 +3308,8 @@ CONFIG_MWIFIEX_USB=m
|
||||||
CONFIG_MWL8K=m
|
CONFIG_MWL8K=m
|
||||||
CONFIG_WLAN_VENDOR_MEDIATEK=y
|
CONFIG_WLAN_VENDOR_MEDIATEK=y
|
||||||
CONFIG_MT7601U=m
|
CONFIG_MT7601U=m
|
||||||
|
CONFIG_MT76_CORE=m
|
||||||
|
CONFIG_MT76x2E=m
|
||||||
CONFIG_WLAN_VENDOR_RALINK=y
|
CONFIG_WLAN_VENDOR_RALINK=y
|
||||||
CONFIG_RT2X00=m
|
CONFIG_RT2X00=m
|
||||||
CONFIG_RT2400PCI=m
|
CONFIG_RT2400PCI=m
|
||||||
|
@ -3402,6 +3437,7 @@ CONFIG_VMXNET3=m
|
||||||
CONFIG_FUJITSU_ES=m
|
CONFIG_FUJITSU_ES=m
|
||||||
CONFIG_THUNDERBOLT_NET=m
|
CONFIG_THUNDERBOLT_NET=m
|
||||||
CONFIG_HYPERV_NET=m
|
CONFIG_HYPERV_NET=m
|
||||||
|
CONFIG_NETDEVSIM=m
|
||||||
CONFIG_ISDN=y
|
CONFIG_ISDN=y
|
||||||
CONFIG_ISDN_I4L=m
|
CONFIG_ISDN_I4L=m
|
||||||
CONFIG_ISDN_PPP=y
|
CONFIG_ISDN_PPP=y
|
||||||
|
@ -3531,7 +3567,6 @@ CONFIG_MISDN_ISAR=m
|
||||||
CONFIG_ISDN_HDLC=m
|
CONFIG_ISDN_HDLC=m
|
||||||
CONFIG_NVM=y
|
CONFIG_NVM=y
|
||||||
# CONFIG_NVM_DEBUG is not set
|
# CONFIG_NVM_DEBUG is not set
|
||||||
CONFIG_NVM_RRPC=m
|
|
||||||
CONFIG_NVM_PBLK=m
|
CONFIG_NVM_PBLK=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -3770,7 +3805,6 @@ CONFIG_INPUT_MMA8450=m
|
||||||
CONFIG_INPUT_APANEL=m
|
CONFIG_INPUT_APANEL=m
|
||||||
CONFIG_INPUT_GP2A=m
|
CONFIG_INPUT_GP2A=m
|
||||||
CONFIG_INPUT_GPIO_BEEPER=m
|
CONFIG_INPUT_GPIO_BEEPER=m
|
||||||
CONFIG_INPUT_GPIO_TILT_POLLED=m
|
|
||||||
CONFIG_INPUT_GPIO_DECODER=m
|
CONFIG_INPUT_GPIO_DECODER=m
|
||||||
CONFIG_INPUT_ATLAS_BTNS=m
|
CONFIG_INPUT_ATLAS_BTNS=m
|
||||||
CONFIG_INPUT_ATI_REMOTE2=m
|
CONFIG_INPUT_ATI_REMOTE2=m
|
||||||
|
@ -3962,7 +3996,6 @@ CONFIG_HW_RANDOM_INTEL=m
|
||||||
CONFIG_HW_RANDOM_AMD=m
|
CONFIG_HW_RANDOM_AMD=m
|
||||||
CONFIG_HW_RANDOM_VIA=m
|
CONFIG_HW_RANDOM_VIA=m
|
||||||
CONFIG_HW_RANDOM_VIRTIO=m
|
CONFIG_HW_RANDOM_VIRTIO=m
|
||||||
CONFIG_HW_RANDOM_TPM=m
|
|
||||||
CONFIG_NVRAM=m
|
CONFIG_NVRAM=m
|
||||||
CONFIG_R3964=m
|
CONFIG_R3964=m
|
||||||
CONFIG_APPLICOM=m
|
CONFIG_APPLICOM=m
|
||||||
|
@ -3983,6 +4016,7 @@ CONFIG_HPET_MMAP=y
|
||||||
CONFIG_HPET_MMAP_DEFAULT=y
|
CONFIG_HPET_MMAP_DEFAULT=y
|
||||||
CONFIG_HANGCHECK_TIMER=m
|
CONFIG_HANGCHECK_TIMER=m
|
||||||
CONFIG_TCG_TPM=y
|
CONFIG_TCG_TPM=y
|
||||||
|
CONFIG_HW_RANDOM_TPM=y
|
||||||
CONFIG_TCG_TIS_CORE=y
|
CONFIG_TCG_TIS_CORE=y
|
||||||
CONFIG_TCG_TIS=y
|
CONFIG_TCG_TIS=y
|
||||||
CONFIG_TCG_TIS_SPI=m
|
CONFIG_TCG_TIS_SPI=m
|
||||||
|
@ -4069,6 +4103,7 @@ CONFIG_I2C_DESIGNWARE_PCI=m
|
||||||
CONFIG_I2C_DESIGNWARE_BAYTRAIL=y
|
CONFIG_I2C_DESIGNWARE_BAYTRAIL=y
|
||||||
CONFIG_I2C_EMEV2=m
|
CONFIG_I2C_EMEV2=m
|
||||||
CONFIG_I2C_GPIO=m
|
CONFIG_I2C_GPIO=m
|
||||||
|
# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set
|
||||||
CONFIG_I2C_KEMPLD=m
|
CONFIG_I2C_KEMPLD=m
|
||||||
CONFIG_I2C_OCORES=m
|
CONFIG_I2C_OCORES=m
|
||||||
CONFIG_I2C_PCA_PLATFORM=m
|
CONFIG_I2C_PCA_PLATFORM=m
|
||||||
|
@ -4200,7 +4235,6 @@ CONFIG_GPIO_MAX730X=m
|
||||||
# Memory mapped GPIO drivers
|
# Memory mapped GPIO drivers
|
||||||
#
|
#
|
||||||
CONFIG_GPIO_AMDPT=m
|
CONFIG_GPIO_AMDPT=m
|
||||||
CONFIG_GPIO_AXP209=m
|
|
||||||
CONFIG_GPIO_DWAPB=m
|
CONFIG_GPIO_DWAPB=m
|
||||||
CONFIG_GPIO_EXAR=m
|
CONFIG_GPIO_EXAR=m
|
||||||
CONFIG_GPIO_GENERIC_PLATFORM=m
|
CONFIG_GPIO_GENERIC_PLATFORM=m
|
||||||
|
@ -4263,6 +4297,7 @@ CONFIG_GPIO_WM8994=m
|
||||||
CONFIG_GPIO_AMD8111=m
|
CONFIG_GPIO_AMD8111=m
|
||||||
CONFIG_GPIO_ML_IOH=m
|
CONFIG_GPIO_ML_IOH=m
|
||||||
CONFIG_GPIO_PCI_IDIO_16=m
|
CONFIG_GPIO_PCI_IDIO_16=m
|
||||||
|
CONFIG_GPIO_PCIE_IDIO_24=m
|
||||||
CONFIG_GPIO_RDC321X=m
|
CONFIG_GPIO_RDC321X=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -4535,6 +4570,7 @@ CONFIG_SENSORS_VIA_CPUTEMP=m
|
||||||
CONFIG_SENSORS_VIA686A=m
|
CONFIG_SENSORS_VIA686A=m
|
||||||
CONFIG_SENSORS_VT1211=m
|
CONFIG_SENSORS_VT1211=m
|
||||||
CONFIG_SENSORS_VT8231=m
|
CONFIG_SENSORS_VT8231=m
|
||||||
|
CONFIG_SENSORS_W83773G=m
|
||||||
CONFIG_SENSORS_W83781D=m
|
CONFIG_SENSORS_W83781D=m
|
||||||
CONFIG_SENSORS_W83791D=m
|
CONFIG_SENSORS_W83791D=m
|
||||||
CONFIG_SENSORS_W83792D=m
|
CONFIG_SENSORS_W83792D=m
|
||||||
|
@ -4604,6 +4640,7 @@ CONFIG_WM831X_WATCHDOG=m
|
||||||
CONFIG_WM8350_WATCHDOG=m
|
CONFIG_WM8350_WATCHDOG=m
|
||||||
CONFIG_XILINX_WATCHDOG=m
|
CONFIG_XILINX_WATCHDOG=m
|
||||||
CONFIG_ZIIRAVE_WATCHDOG=m
|
CONFIG_ZIIRAVE_WATCHDOG=m
|
||||||
|
CONFIG_RAVE_SP_WATCHDOG=m
|
||||||
CONFIG_CADENCE_WATCHDOG=m
|
CONFIG_CADENCE_WATCHDOG=m
|
||||||
CONFIG_DW_WATCHDOG=m
|
CONFIG_DW_WATCHDOG=m
|
||||||
CONFIG_TWL4030_WATCHDOG=m
|
CONFIG_TWL4030_WATCHDOG=m
|
||||||
|
@ -4664,18 +4701,20 @@ CONFIG_USBPCWATCHDOG=m
|
||||||
#
|
#
|
||||||
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
|
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
|
||||||
CONFIG_SSB_POSSIBLE=y
|
CONFIG_SSB_POSSIBLE=y
|
||||||
|
|
||||||
#
|
|
||||||
# Sonics Silicon Backplane
|
|
||||||
#
|
|
||||||
CONFIG_SSB=m
|
CONFIG_SSB=m
|
||||||
|
CONFIG_SSB_SPROM=y
|
||||||
CONFIG_SSB_BLOCKIO=y
|
CONFIG_SSB_BLOCKIO=y
|
||||||
|
CONFIG_SSB_PCIHOST_POSSIBLE=y
|
||||||
|
CONFIG_SSB_PCIHOST=y
|
||||||
|
CONFIG_SSB_B43_PCI_BRIDGE=y
|
||||||
CONFIG_SSB_PCMCIAHOST_POSSIBLE=y
|
CONFIG_SSB_PCMCIAHOST_POSSIBLE=y
|
||||||
# CONFIG_SSB_PCMCIAHOST is not set
|
# CONFIG_SSB_PCMCIAHOST is not set
|
||||||
CONFIG_SSB_SDIOHOST_POSSIBLE=y
|
CONFIG_SSB_SDIOHOST_POSSIBLE=y
|
||||||
CONFIG_SSB_SDIOHOST=y
|
CONFIG_SSB_SDIOHOST=y
|
||||||
# CONFIG_SSB_SILENT is not set
|
# CONFIG_SSB_SILENT is not set
|
||||||
# CONFIG_SSB_DEBUG is not set
|
# CONFIG_SSB_DEBUG is not set
|
||||||
|
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
|
||||||
|
CONFIG_SSB_DRIVER_PCICORE=y
|
||||||
CONFIG_SSB_DRIVER_GPIO=y
|
CONFIG_SSB_DRIVER_GPIO=y
|
||||||
CONFIG_BCMA_POSSIBLE=y
|
CONFIG_BCMA_POSSIBLE=y
|
||||||
CONFIG_BCMA=m
|
CONFIG_BCMA=m
|
||||||
|
@ -4703,6 +4742,7 @@ CONFIG_MFD_AXP20X_I2C=m
|
||||||
CONFIG_MFD_CROS_EC=m
|
CONFIG_MFD_CROS_EC=m
|
||||||
CONFIG_MFD_CROS_EC_I2C=m
|
CONFIG_MFD_CROS_EC_I2C=m
|
||||||
CONFIG_MFD_CROS_EC_SPI=m
|
CONFIG_MFD_CROS_EC_SPI=m
|
||||||
|
CONFIG_MFD_CROS_EC_CHARDEV=m
|
||||||
CONFIG_PMIC_DA903X=y
|
CONFIG_PMIC_DA903X=y
|
||||||
CONFIG_PMIC_DA9052=y
|
CONFIG_PMIC_DA9052=y
|
||||||
CONFIG_MFD_DA9052_SPI=y
|
CONFIG_MFD_DA9052_SPI=y
|
||||||
|
@ -4749,9 +4789,7 @@ CONFIG_PCF50633_ADC=m
|
||||||
CONFIG_PCF50633_GPIO=m
|
CONFIG_PCF50633_GPIO=m
|
||||||
CONFIG_UCB1400_CORE=m
|
CONFIG_UCB1400_CORE=m
|
||||||
CONFIG_MFD_RDC321X=m
|
CONFIG_MFD_RDC321X=m
|
||||||
CONFIG_MFD_RTSX_PCI=m
|
|
||||||
CONFIG_MFD_RT5033=m
|
CONFIG_MFD_RT5033=m
|
||||||
CONFIG_MFD_RTSX_USB=m
|
|
||||||
CONFIG_MFD_RC5T583=y
|
CONFIG_MFD_RC5T583=y
|
||||||
CONFIG_MFD_SEC_CORE=y
|
CONFIG_MFD_SEC_CORE=y
|
||||||
CONFIG_MFD_SI476X_CORE=m
|
CONFIG_MFD_SI476X_CORE=m
|
||||||
|
@ -4803,6 +4841,7 @@ CONFIG_MFD_WM831X_SPI=y
|
||||||
CONFIG_MFD_WM8350=y
|
CONFIG_MFD_WM8350=y
|
||||||
CONFIG_MFD_WM8350_I2C=y
|
CONFIG_MFD_WM8350_I2C=y
|
||||||
CONFIG_MFD_WM8994=m
|
CONFIG_MFD_WM8994=m
|
||||||
|
CONFIG_RAVE_SP_CORE=m
|
||||||
CONFIG_REGULATOR=y
|
CONFIG_REGULATOR=y
|
||||||
# CONFIG_REGULATOR_DEBUG is not set
|
# CONFIG_REGULATOR_DEBUG is not set
|
||||||
CONFIG_REGULATOR_FIXED_VOLTAGE=m
|
CONFIG_REGULATOR_FIXED_VOLTAGE=m
|
||||||
|
@ -4892,9 +4931,8 @@ CONFIG_REGULATOR_WM8994=m
|
||||||
CONFIG_CEC_CORE=m
|
CONFIG_CEC_CORE=m
|
||||||
CONFIG_RC_CORE=m
|
CONFIG_RC_CORE=m
|
||||||
CONFIG_RC_MAP=m
|
CONFIG_RC_MAP=m
|
||||||
|
CONFIG_LIRC=y
|
||||||
CONFIG_RC_DECODERS=y
|
CONFIG_RC_DECODERS=y
|
||||||
CONFIG_LIRC=m
|
|
||||||
CONFIG_IR_LIRC_CODEC=m
|
|
||||||
CONFIG_IR_NEC_DECODER=m
|
CONFIG_IR_NEC_DECODER=m
|
||||||
CONFIG_IR_RC5_DECODER=m
|
CONFIG_IR_RC5_DECODER=m
|
||||||
CONFIG_IR_RC6_DECODER=m
|
CONFIG_IR_RC6_DECODER=m
|
||||||
|
@ -4950,18 +4988,14 @@ CONFIG_VIDEOBUF_GEN=m
|
||||||
CONFIG_VIDEOBUF_DMA_SG=m
|
CONFIG_VIDEOBUF_DMA_SG=m
|
||||||
CONFIG_VIDEOBUF_VMALLOC=m
|
CONFIG_VIDEOBUF_VMALLOC=m
|
||||||
CONFIG_VIDEOBUF_DVB=m
|
CONFIG_VIDEOBUF_DVB=m
|
||||||
CONFIG_VIDEOBUF2_CORE=m
|
|
||||||
CONFIG_VIDEOBUF2_MEMOPS=m
|
|
||||||
CONFIG_VIDEOBUF2_DMA_CONTIG=m
|
|
||||||
CONFIG_VIDEOBUF2_VMALLOC=m
|
|
||||||
CONFIG_VIDEOBUF2_DMA_SG=m
|
|
||||||
CONFIG_VIDEOBUF2_DVB=m
|
|
||||||
CONFIG_DVB_CORE=m
|
CONFIG_DVB_CORE=m
|
||||||
|
# CONFIG_DVB_MMAP is not set
|
||||||
CONFIG_DVB_NET=y
|
CONFIG_DVB_NET=y
|
||||||
CONFIG_TTPCI_EEPROM=m
|
CONFIG_TTPCI_EEPROM=m
|
||||||
CONFIG_DVB_MAX_ADAPTERS=8
|
CONFIG_DVB_MAX_ADAPTERS=8
|
||||||
CONFIG_DVB_DYNAMIC_MINORS=y
|
CONFIG_DVB_DYNAMIC_MINORS=y
|
||||||
# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
|
# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
|
||||||
|
# CONFIG_DVB_ULE_DEBUG is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Media drivers
|
# Media drivers
|
||||||
|
@ -5217,6 +5251,7 @@ CONFIG_DVB_DDBRIDGE=m
|
||||||
# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
|
# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
|
||||||
CONFIG_DVB_SMIPCIE=m
|
CONFIG_DVB_SMIPCIE=m
|
||||||
CONFIG_DVB_NETUP_UNIDVB=m
|
CONFIG_DVB_NETUP_UNIDVB=m
|
||||||
|
CONFIG_VIDEO_IPU3_CIO2=m
|
||||||
CONFIG_V4L_PLATFORM_DRIVERS=y
|
CONFIG_V4L_PLATFORM_DRIVERS=y
|
||||||
CONFIG_VIDEO_CAFE_CCIC=m
|
CONFIG_VIDEO_CAFE_CCIC=m
|
||||||
CONFIG_VIDEO_VIA_CAMERA=m
|
CONFIG_VIDEO_VIA_CAMERA=m
|
||||||
|
@ -5280,6 +5315,13 @@ CONFIG_MEDIA_COMMON_OPTIONS=y
|
||||||
CONFIG_VIDEO_CX2341X=m
|
CONFIG_VIDEO_CX2341X=m
|
||||||
CONFIG_VIDEO_TVEEPROM=m
|
CONFIG_VIDEO_TVEEPROM=m
|
||||||
CONFIG_CYPRESS_FIRMWARE=m
|
CONFIG_CYPRESS_FIRMWARE=m
|
||||||
|
CONFIG_VIDEOBUF2_CORE=m
|
||||||
|
CONFIG_VIDEOBUF2_V4L2=m
|
||||||
|
CONFIG_VIDEOBUF2_MEMOPS=m
|
||||||
|
CONFIG_VIDEOBUF2_DMA_CONTIG=m
|
||||||
|
CONFIG_VIDEOBUF2_VMALLOC=m
|
||||||
|
CONFIG_VIDEOBUF2_DMA_SG=m
|
||||||
|
CONFIG_VIDEOBUF2_DVB=m
|
||||||
CONFIG_DVB_B2C2_FLEXCOP=m
|
CONFIG_DVB_B2C2_FLEXCOP=m
|
||||||
CONFIG_VIDEO_SAA7146=m
|
CONFIG_VIDEO_SAA7146=m
|
||||||
CONFIG_VIDEO_SAA7146_VV=m
|
CONFIG_VIDEO_SAA7146_VV=m
|
||||||
|
@ -5404,6 +5446,7 @@ CONFIG_SOC_CAMERA_RJ54N1=m
|
||||||
CONFIG_SOC_CAMERA_TW9910=m
|
CONFIG_SOC_CAMERA_TW9910=m
|
||||||
CONFIG_MEDIA_TUNER=m
|
CONFIG_MEDIA_TUNER=m
|
||||||
CONFIG_MEDIA_TUNER_SIMPLE=m
|
CONFIG_MEDIA_TUNER_SIMPLE=m
|
||||||
|
CONFIG_MEDIA_TUNER_TDA18250=m
|
||||||
CONFIG_MEDIA_TUNER_TDA8290=m
|
CONFIG_MEDIA_TUNER_TDA8290=m
|
||||||
CONFIG_MEDIA_TUNER_TDA827X=m
|
CONFIG_MEDIA_TUNER_TDA827X=m
|
||||||
CONFIG_MEDIA_TUNER_TDA18271=m
|
CONFIG_MEDIA_TUNER_TDA18271=m
|
||||||
|
@ -5616,6 +5659,7 @@ CONFIG_DRM_FBDEV_OVERALLOC=100
|
||||||
CONFIG_DRM_LOAD_EDID_FIRMWARE=y
|
CONFIG_DRM_LOAD_EDID_FIRMWARE=y
|
||||||
CONFIG_DRM_TTM=m
|
CONFIG_DRM_TTM=m
|
||||||
CONFIG_DRM_VM=y
|
CONFIG_DRM_VM=y
|
||||||
|
CONFIG_DRM_SCHED=m
|
||||||
|
|
||||||
#
|
#
|
||||||
# I2C encoder or helper chips
|
# I2C encoder or helper chips
|
||||||
|
@ -5703,6 +5747,7 @@ CONFIG_HSA_AMD=m
|
||||||
CONFIG_DRM_HISI_HIBMC=m
|
CONFIG_DRM_HISI_HIBMC=m
|
||||||
# CONFIG_DRM_TINYDRM is not set
|
# CONFIG_DRM_TINYDRM is not set
|
||||||
# CONFIG_DRM_LEGACY is not set
|
# CONFIG_DRM_LEGACY is not set
|
||||||
|
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y
|
||||||
# CONFIG_DRM_LIB_RANDOM is not set
|
# CONFIG_DRM_LIB_RANDOM is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -6085,22 +6130,26 @@ CONFIG_SND_SOC_FSL_ESAI=m
|
||||||
CONFIG_SND_SOC_IMX_AUDMUX=m
|
CONFIG_SND_SOC_IMX_AUDMUX=m
|
||||||
CONFIG_SND_I2S_HI6210_I2S=m
|
CONFIG_SND_I2S_HI6210_I2S=m
|
||||||
# CONFIG_SND_SOC_IMG is not set
|
# CONFIG_SND_SOC_IMG is not set
|
||||||
|
CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y
|
||||||
CONFIG_SND_SST_IPC=m
|
CONFIG_SND_SST_IPC=m
|
||||||
|
CONFIG_SND_SST_IPC_PCI=m
|
||||||
CONFIG_SND_SST_IPC_ACPI=m
|
CONFIG_SND_SST_IPC_ACPI=m
|
||||||
CONFIG_SND_SOC_INTEL_COMMON=m
|
CONFIG_SND_SOC_INTEL_SST_ACPI=m
|
||||||
CONFIG_SND_SOC_INTEL_SST=m
|
CONFIG_SND_SOC_INTEL_SST=m
|
||||||
CONFIG_SND_SOC_INTEL_SST_FIRMWARE=m
|
CONFIG_SND_SOC_INTEL_SST_FIRMWARE=m
|
||||||
CONFIG_SND_SOC_INTEL_SST_ACPI=m
|
|
||||||
CONFIG_SND_SOC_ACPI_INTEL_MATCH=m
|
|
||||||
CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=m
|
|
||||||
CONFIG_SND_SOC_INTEL_HASWELL=m
|
CONFIG_SND_SOC_INTEL_HASWELL=m
|
||||||
CONFIG_SND_SOC_INTEL_BAYTRAIL=m
|
CONFIG_SND_SOC_INTEL_BAYTRAIL=m
|
||||||
|
CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI=m
|
||||||
CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
|
CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
|
||||||
|
CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK=m
|
||||||
CONFIG_SND_SOC_INTEL_SKYLAKE=m
|
CONFIG_SND_SOC_INTEL_SKYLAKE=m
|
||||||
CONFIG_SND_SOC_INTEL_MACH=m
|
CONFIG_SND_SOC_ACPI_INTEL_MATCH=m
|
||||||
|
CONFIG_SND_SOC_INTEL_MACH=y
|
||||||
CONFIG_SND_SOC_INTEL_HASWELL_MACH=m
|
CONFIG_SND_SOC_INTEL_HASWELL_MACH=m
|
||||||
CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m
|
CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m
|
||||||
CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m
|
CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m
|
||||||
|
CONFIG_SND_SOC_INTEL_BYT_MAX98090_MACH=m
|
||||||
|
CONFIG_SND_SOC_INTEL_BYT_RT5640_MACH=m
|
||||||
CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
|
CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m
|
||||||
CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m
|
CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m
|
||||||
CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m
|
CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m
|
||||||
|
@ -6179,6 +6228,7 @@ CONFIG_SND_SOC_MAX98090=m
|
||||||
CONFIG_SND_SOC_MAX98357A=m
|
CONFIG_SND_SOC_MAX98357A=m
|
||||||
CONFIG_SND_SOC_MAX98504=m
|
CONFIG_SND_SOC_MAX98504=m
|
||||||
CONFIG_SND_SOC_MAX98927=m
|
CONFIG_SND_SOC_MAX98927=m
|
||||||
|
CONFIG_SND_SOC_MAX98373=m
|
||||||
CONFIG_SND_SOC_MAX9860=m
|
CONFIG_SND_SOC_MAX9860=m
|
||||||
CONFIG_SND_SOC_MSM8916_WCD_ANALOG=m
|
CONFIG_SND_SOC_MSM8916_WCD_ANALOG=m
|
||||||
CONFIG_SND_SOC_MSM8916_WCD_DIGITAL=m
|
CONFIG_SND_SOC_MSM8916_WCD_DIGITAL=m
|
||||||
|
@ -6186,6 +6236,9 @@ CONFIG_SND_SOC_PCM1681=m
|
||||||
CONFIG_SND_SOC_PCM179X=m
|
CONFIG_SND_SOC_PCM179X=m
|
||||||
CONFIG_SND_SOC_PCM179X_I2C=m
|
CONFIG_SND_SOC_PCM179X_I2C=m
|
||||||
CONFIG_SND_SOC_PCM179X_SPI=m
|
CONFIG_SND_SOC_PCM179X_SPI=m
|
||||||
|
CONFIG_SND_SOC_PCM186X=m
|
||||||
|
CONFIG_SND_SOC_PCM186X_I2C=m
|
||||||
|
CONFIG_SND_SOC_PCM186X_SPI=m
|
||||||
CONFIG_SND_SOC_PCM3168A=m
|
CONFIG_SND_SOC_PCM3168A=m
|
||||||
CONFIG_SND_SOC_PCM3168A_I2C=m
|
CONFIG_SND_SOC_PCM3168A_I2C=m
|
||||||
CONFIG_SND_SOC_PCM3168A_SPI=m
|
CONFIG_SND_SOC_PCM3168A_SPI=m
|
||||||
|
@ -6226,13 +6279,18 @@ CONFIG_SND_SOC_TAS2552=m
|
||||||
CONFIG_SND_SOC_TAS5086=m
|
CONFIG_SND_SOC_TAS5086=m
|
||||||
CONFIG_SND_SOC_TAS571X=m
|
CONFIG_SND_SOC_TAS571X=m
|
||||||
CONFIG_SND_SOC_TAS5720=m
|
CONFIG_SND_SOC_TAS5720=m
|
||||||
|
CONFIG_SND_SOC_TAS6424=m
|
||||||
CONFIG_SND_SOC_TFA9879=m
|
CONFIG_SND_SOC_TFA9879=m
|
||||||
CONFIG_SND_SOC_TLV320AIC23=m
|
CONFIG_SND_SOC_TLV320AIC23=m
|
||||||
CONFIG_SND_SOC_TLV320AIC23_I2C=m
|
CONFIG_SND_SOC_TLV320AIC23_I2C=m
|
||||||
CONFIG_SND_SOC_TLV320AIC23_SPI=m
|
CONFIG_SND_SOC_TLV320AIC23_SPI=m
|
||||||
CONFIG_SND_SOC_TLV320AIC31XX=m
|
CONFIG_SND_SOC_TLV320AIC31XX=m
|
||||||
|
CONFIG_SND_SOC_TLV320AIC32X4=m
|
||||||
|
CONFIG_SND_SOC_TLV320AIC32X4_I2C=m
|
||||||
|
CONFIG_SND_SOC_TLV320AIC32X4_SPI=m
|
||||||
CONFIG_SND_SOC_TLV320AIC3X=m
|
CONFIG_SND_SOC_TLV320AIC3X=m
|
||||||
CONFIG_SND_SOC_TS3A227E=m
|
CONFIG_SND_SOC_TS3A227E=m
|
||||||
|
CONFIG_SND_SOC_TSCS42XX=m
|
||||||
CONFIG_SND_SOC_WM8510=m
|
CONFIG_SND_SOC_WM8510=m
|
||||||
CONFIG_SND_SOC_WM8523=m
|
CONFIG_SND_SOC_WM8523=m
|
||||||
CONFIG_SND_SOC_WM8524=m
|
CONFIG_SND_SOC_WM8524=m
|
||||||
|
@ -6314,6 +6372,7 @@ CONFIG_HID_WALTOP=m
|
||||||
CONFIG_HID_GYRATION=m
|
CONFIG_HID_GYRATION=m
|
||||||
CONFIG_HID_ICADE=m
|
CONFIG_HID_ICADE=m
|
||||||
CONFIG_HID_ITE=m
|
CONFIG_HID_ITE=m
|
||||||
|
CONFIG_HID_JABRA=m
|
||||||
CONFIG_HID_TWINHAN=m
|
CONFIG_HID_TWINHAN=m
|
||||||
CONFIG_HID_KENSINGTON=m
|
CONFIG_HID_KENSINGTON=m
|
||||||
CONFIG_HID_LCPOWER=m
|
CONFIG_HID_LCPOWER=m
|
||||||
|
@ -6426,6 +6485,7 @@ CONFIG_USB_WUSB_CBAF=m
|
||||||
#
|
#
|
||||||
CONFIG_USB_C67X00_HCD=m
|
CONFIG_USB_C67X00_HCD=m
|
||||||
CONFIG_USB_XHCI_HCD=y
|
CONFIG_USB_XHCI_HCD=y
|
||||||
|
# CONFIG_USB_XHCI_DBGCAP is not set
|
||||||
CONFIG_USB_XHCI_PCI=y
|
CONFIG_USB_XHCI_PCI=y
|
||||||
CONFIG_USB_XHCI_PLATFORM=m
|
CONFIG_USB_XHCI_PLATFORM=m
|
||||||
CONFIG_USB_EHCI_HCD=y
|
CONFIG_USB_EHCI_HCD=y
|
||||||
|
@ -6571,18 +6631,6 @@ CONFIG_USB_SERIAL_IPW=m
|
||||||
CONFIG_USB_SERIAL_IUU=m
|
CONFIG_USB_SERIAL_IUU=m
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_PDA=m
|
CONFIG_USB_SERIAL_KEYSPAN_PDA=m
|
||||||
CONFIG_USB_SERIAL_KEYSPAN=m
|
CONFIG_USB_SERIAL_KEYSPAN=m
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_MPR=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA28=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA28X=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA19=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA18X=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA19W=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA49W=y
|
|
||||||
CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y
|
|
||||||
CONFIG_USB_SERIAL_KLSI=m
|
CONFIG_USB_SERIAL_KLSI=m
|
||||||
CONFIG_USB_SERIAL_KOBIL_SCT=m
|
CONFIG_USB_SERIAL_KOBIL_SCT=m
|
||||||
CONFIG_USB_SERIAL_MCT_U232=m
|
CONFIG_USB_SERIAL_MCT_U232=m
|
||||||
|
@ -6790,6 +6838,7 @@ CONFIG_MMC_SDHCI_PCI=m
|
||||||
CONFIG_MMC_RICOH_MMC=y
|
CONFIG_MMC_RICOH_MMC=y
|
||||||
CONFIG_MMC_SDHCI_ACPI=m
|
CONFIG_MMC_SDHCI_ACPI=m
|
||||||
CONFIG_MMC_SDHCI_PLTFM=m
|
CONFIG_MMC_SDHCI_PLTFM=m
|
||||||
|
CONFIG_MMC_SDHCI_F_SDH30=m
|
||||||
CONFIG_MMC_WBSD=m
|
CONFIG_MMC_WBSD=m
|
||||||
CONFIG_MMC_TIFM_SD=m
|
CONFIG_MMC_TIFM_SD=m
|
||||||
CONFIG_MMC_SPI=m
|
CONFIG_MMC_SPI=m
|
||||||
|
@ -6801,6 +6850,7 @@ CONFIG_MMC_USHC=m
|
||||||
CONFIG_MMC_USDHI6ROL0=m
|
CONFIG_MMC_USDHI6ROL0=m
|
||||||
CONFIG_MMC_REALTEK_PCI=m
|
CONFIG_MMC_REALTEK_PCI=m
|
||||||
CONFIG_MMC_REALTEK_USB=m
|
CONFIG_MMC_REALTEK_USB=m
|
||||||
|
CONFIG_MMC_CQHCI=m
|
||||||
CONFIG_MMC_TOSHIBA_PCI=m
|
CONFIG_MMC_TOSHIBA_PCI=m
|
||||||
CONFIG_MMC_MTK=m
|
CONFIG_MMC_MTK=m
|
||||||
CONFIG_MMC_SDHCI_XENON=m
|
CONFIG_MMC_SDHCI_XENON=m
|
||||||
|
@ -6848,7 +6898,6 @@ CONFIG_LEDS_LP5523=m
|
||||||
CONFIG_LEDS_LP5562=m
|
CONFIG_LEDS_LP5562=m
|
||||||
CONFIG_LEDS_LP8501=m
|
CONFIG_LEDS_LP8501=m
|
||||||
CONFIG_LEDS_LP8788=m
|
CONFIG_LEDS_LP8788=m
|
||||||
CONFIG_LEDS_LP8860=m
|
|
||||||
CONFIG_LEDS_CLEVO_MAIL=m
|
CONFIG_LEDS_CLEVO_MAIL=m
|
||||||
CONFIG_LEDS_PCA955X=m
|
CONFIG_LEDS_PCA955X=m
|
||||||
# CONFIG_LEDS_PCA955X_GPIO is not set
|
# CONFIG_LEDS_PCA955X_GPIO is not set
|
||||||
|
@ -6900,6 +6949,7 @@ CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
|
||||||
CONFIG_LEDS_TRIGGER_TRANSIENT=m
|
CONFIG_LEDS_TRIGGER_TRANSIENT=m
|
||||||
CONFIG_LEDS_TRIGGER_CAMERA=m
|
CONFIG_LEDS_TRIGGER_CAMERA=m
|
||||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||||
|
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||||
# CONFIG_ACCESSIBILITY is not set
|
# CONFIG_ACCESSIBILITY is not set
|
||||||
CONFIG_INFINIBAND=m
|
CONFIG_INFINIBAND=m
|
||||||
CONFIG_INFINIBAND_USER_MAD=m
|
CONFIG_INFINIBAND_USER_MAD=m
|
||||||
|
@ -7087,6 +7137,7 @@ CONFIG_RTC_DRV_WM831X=m
|
||||||
CONFIG_RTC_DRV_WM8350=m
|
CONFIG_RTC_DRV_WM8350=m
|
||||||
CONFIG_RTC_DRV_PCF50633=m
|
CONFIG_RTC_DRV_PCF50633=m
|
||||||
CONFIG_RTC_DRV_AB3100=m
|
CONFIG_RTC_DRV_AB3100=m
|
||||||
|
CONFIG_RTC_DRV_CROS_EC=m
|
||||||
|
|
||||||
#
|
#
|
||||||
# on-CPU RTC drivers
|
# on-CPU RTC drivers
|
||||||
|
@ -7170,11 +7221,9 @@ CONFIG_VFIO_MDEV=m
|
||||||
CONFIG_VFIO_MDEV_DEVICE=m
|
CONFIG_VFIO_MDEV_DEVICE=m
|
||||||
CONFIG_IRQ_BYPASS_MANAGER=m
|
CONFIG_IRQ_BYPASS_MANAGER=m
|
||||||
CONFIG_VIRT_DRIVERS=y
|
CONFIG_VIRT_DRIVERS=y
|
||||||
|
CONFIG_VBOXGUEST=m
|
||||||
CONFIG_VIRTIO=y
|
CONFIG_VIRTIO=y
|
||||||
|
CONFIG_VIRTIO_MENU=y
|
||||||
#
|
|
||||||
# Virtio drivers
|
|
||||||
#
|
|
||||||
CONFIG_VIRTIO_PCI=y
|
CONFIG_VIRTIO_PCI=y
|
||||||
CONFIG_VIRTIO_PCI_LEGACY=y
|
CONFIG_VIRTIO_PCI_LEGACY=y
|
||||||
CONFIG_VIRTIO_BALLOON=y
|
CONFIG_VIRTIO_BALLOON=y
|
||||||
|
@ -7278,6 +7327,17 @@ CONFIG_ALI_FIR=m
|
||||||
CONFIG_VLSI_FIR=m
|
CONFIG_VLSI_FIR=m
|
||||||
CONFIG_VIA_FIR=m
|
CONFIG_VIA_FIR=m
|
||||||
CONFIG_MCS_FIR=m
|
CONFIG_MCS_FIR=m
|
||||||
|
CONFIG_IPX=m
|
||||||
|
# CONFIG_IPX_INTERN is not set
|
||||||
|
CONFIG_NCP_FS=m
|
||||||
|
CONFIG_NCPFS_PACKET_SIGNING=y
|
||||||
|
CONFIG_NCPFS_IOCTL_LOCKING=y
|
||||||
|
CONFIG_NCPFS_STRONG=y
|
||||||
|
CONFIG_NCPFS_NFS_NS=y
|
||||||
|
CONFIG_NCPFS_OS2_NS=y
|
||||||
|
# CONFIG_NCPFS_SMALLDOS is not set
|
||||||
|
CONFIG_NCPFS_NLS=y
|
||||||
|
CONFIG_NCPFS_EXTRAS=y
|
||||||
CONFIG_PRISM2_USB=m
|
CONFIG_PRISM2_USB=m
|
||||||
CONFIG_COMEDI=m
|
CONFIG_COMEDI=m
|
||||||
# CONFIG_COMEDI_DEBUG is not set
|
# CONFIG_COMEDI_DEBUG is not set
|
||||||
|
@ -7428,8 +7488,6 @@ CONFIG_R8712U=m
|
||||||
CONFIG_R8188EU=m
|
CONFIG_R8188EU=m
|
||||||
CONFIG_88EU_AP_MODE=y
|
CONFIG_88EU_AP_MODE=y
|
||||||
CONFIG_R8822BE=m
|
CONFIG_R8822BE=m
|
||||||
CONFIG_RTLHALMAC_ST=m
|
|
||||||
CONFIG_RTLPHYDM_ST=m
|
|
||||||
CONFIG_RTLWIFI_DEBUG_ST=y
|
CONFIG_RTLWIFI_DEBUG_ST=y
|
||||||
CONFIG_RTS5208=m
|
CONFIG_RTS5208=m
|
||||||
CONFIG_VT6655=m
|
CONFIG_VT6655=m
|
||||||
|
@ -7536,8 +7594,6 @@ CONFIG_STAGING_MEDIA=y
|
||||||
# CONFIG_INTEL_ATOMISP is not set
|
# CONFIG_INTEL_ATOMISP is not set
|
||||||
CONFIG_I2C_BCM2048=m
|
CONFIG_I2C_BCM2048=m
|
||||||
CONFIG_DVB_CXD2099=m
|
CONFIG_DVB_CXD2099=m
|
||||||
CONFIG_LIRC_STAGING=y
|
|
||||||
CONFIG_LIRC_ZILOG=m
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Android
|
# Android
|
||||||
|
@ -7557,7 +7613,6 @@ CONFIG_DGNC=m
|
||||||
CONFIG_GS_FPGABOOT=m
|
CONFIG_GS_FPGABOOT=m
|
||||||
CONFIG_CRYPTO_SKEIN=y
|
CONFIG_CRYPTO_SKEIN=y
|
||||||
CONFIG_UNISYSSPAR=y
|
CONFIG_UNISYSSPAR=y
|
||||||
CONFIG_UNISYS_VISORBUS=m
|
|
||||||
CONFIG_UNISYS_VISORNIC=m
|
CONFIG_UNISYS_VISORNIC=m
|
||||||
CONFIG_UNISYS_VISORINPUT=m
|
CONFIG_UNISYS_VISORINPUT=m
|
||||||
CONFIG_UNISYS_VISORHBA=m
|
CONFIG_UNISYS_VISORHBA=m
|
||||||
|
@ -7583,7 +7638,6 @@ CONFIG_FB_TFT_SH1106=m
|
||||||
CONFIG_FB_TFT_SSD1289=m
|
CONFIG_FB_TFT_SSD1289=m
|
||||||
CONFIG_FB_TFT_SSD1305=m
|
CONFIG_FB_TFT_SSD1305=m
|
||||||
CONFIG_FB_TFT_SSD1306=m
|
CONFIG_FB_TFT_SSD1306=m
|
||||||
CONFIG_FB_TFT_SSD1325=m
|
|
||||||
CONFIG_FB_TFT_SSD1331=m
|
CONFIG_FB_TFT_SSD1331=m
|
||||||
CONFIG_FB_TFT_SSD1351=m
|
CONFIG_FB_TFT_SSD1351=m
|
||||||
CONFIG_FB_TFT_ST7735R=m
|
CONFIG_FB_TFT_ST7735R=m
|
||||||
|
@ -7601,14 +7655,13 @@ CONFIG_WILC1000_SDIO=m
|
||||||
CONFIG_WILC1000_SPI=m
|
CONFIG_WILC1000_SPI=m
|
||||||
# CONFIG_WILC1000_HW_OOB_INTR is not set
|
# CONFIG_WILC1000_HW_OOB_INTR is not set
|
||||||
CONFIG_MOST=m
|
CONFIG_MOST=m
|
||||||
CONFIG_MOSTCORE=m
|
CONFIG_MOST_CDEV=m
|
||||||
CONFIG_AIM_CDEV=m
|
CONFIG_MOST_NET=m
|
||||||
CONFIG_AIM_NETWORK=m
|
CONFIG_MOST_SOUND=m
|
||||||
CONFIG_AIM_SOUND=m
|
CONFIG_MOST_VIDEO=m
|
||||||
CONFIG_AIM_V4L2=m
|
CONFIG_MOST_DIM2=m
|
||||||
CONFIG_HDM_DIM2=m
|
CONFIG_MOST_I2C=m
|
||||||
CONFIG_HDM_I2C=m
|
CONFIG_MOST_USB=m
|
||||||
CONFIG_HDM_USB=m
|
|
||||||
CONFIG_KS7010=m
|
CONFIG_KS7010=m
|
||||||
# CONFIG_GREYBUS is not set
|
# CONFIG_GREYBUS is not set
|
||||||
|
|
||||||
|
@ -7620,12 +7673,13 @@ CONFIG_DRM_VBOXVIDEO=m
|
||||||
# CONFIG_PI433 is not set
|
# CONFIG_PI433 is not set
|
||||||
CONFIG_X86_PLATFORM_DEVICES=y
|
CONFIG_X86_PLATFORM_DEVICES=y
|
||||||
CONFIG_ACER_WMI=m
|
CONFIG_ACER_WMI=m
|
||||||
|
CONFIG_ACER_WIRELESS=m
|
||||||
CONFIG_ACERHDF=m
|
CONFIG_ACERHDF=m
|
||||||
CONFIG_ALIENWARE_WMI=m
|
CONFIG_ALIENWARE_WMI=m
|
||||||
CONFIG_ASUS_LAPTOP=m
|
CONFIG_ASUS_LAPTOP=m
|
||||||
CONFIG_DELL_SMBIOS=m
|
CONFIG_DELL_SMBIOS=m
|
||||||
CONFIG_DELL_SMBIOS_WMI=m
|
CONFIG_DELL_SMBIOS_WMI=y
|
||||||
CONFIG_DELL_SMBIOS_SMM=m
|
CONFIG_DELL_SMBIOS_SMM=y
|
||||||
CONFIG_DELL_LAPTOP=m
|
CONFIG_DELL_LAPTOP=m
|
||||||
CONFIG_DELL_WMI=m
|
CONFIG_DELL_WMI=m
|
||||||
CONFIG_DELL_WMI_DESCRIPTOR=m
|
CONFIG_DELL_WMI_DESCRIPTOR=m
|
||||||
|
@ -7636,6 +7690,7 @@ CONFIG_DELL_RBTN=m
|
||||||
CONFIG_FUJITSU_LAPTOP=m
|
CONFIG_FUJITSU_LAPTOP=m
|
||||||
CONFIG_FUJITSU_TABLET=m
|
CONFIG_FUJITSU_TABLET=m
|
||||||
CONFIG_AMILO_RFKILL=m
|
CONFIG_AMILO_RFKILL=m
|
||||||
|
CONFIG_GPD_POCKET_FAN=m
|
||||||
CONFIG_HP_ACCEL=m
|
CONFIG_HP_ACCEL=m
|
||||||
CONFIG_HP_WIRELESS=m
|
CONFIG_HP_WIRELESS=m
|
||||||
CONFIG_HP_WMI=m
|
CONFIG_HP_WMI=m
|
||||||
|
@ -7693,18 +7748,19 @@ CONFIG_SURFACE_3_BUTTON=m
|
||||||
CONFIG_INTEL_PUNIT_IPC=m
|
CONFIG_INTEL_PUNIT_IPC=m
|
||||||
CONFIG_INTEL_TELEMETRY=m
|
CONFIG_INTEL_TELEMETRY=m
|
||||||
# CONFIG_MLX_PLATFORM is not set
|
# CONFIG_MLX_PLATFORM is not set
|
||||||
CONFIG_MLX_CPLD_PLATFORM=m
|
|
||||||
# CONFIG_INTEL_TURBO_MAX_3 is not set
|
# CONFIG_INTEL_TURBO_MAX_3 is not set
|
||||||
# CONFIG_SILEAD_DMI is not set
|
# CONFIG_SILEAD_DMI is not set
|
||||||
|
CONFIG_INTEL_CHTDC_TI_PWRBTN=m
|
||||||
CONFIG_PMC_ATOM=y
|
CONFIG_PMC_ATOM=y
|
||||||
CONFIG_CHROME_PLATFORMS=y
|
CONFIG_CHROME_PLATFORMS=y
|
||||||
CONFIG_CHROMEOS_LAPTOP=m
|
CONFIG_CHROMEOS_LAPTOP=m
|
||||||
CONFIG_CHROMEOS_PSTORE=m
|
CONFIG_CHROMEOS_PSTORE=m
|
||||||
CONFIG_CROS_EC_CHARDEV=m
|
CONFIG_CROS_EC_CTL=m
|
||||||
CONFIG_CROS_EC_LPC=m
|
CONFIG_CROS_EC_LPC=m
|
||||||
# CONFIG_CROS_EC_LPC_MEC is not set
|
# CONFIG_CROS_EC_LPC_MEC is not set
|
||||||
CONFIG_CROS_EC_PROTO=y
|
CONFIG_CROS_EC_PROTO=y
|
||||||
CONFIG_CROS_KBD_LED_BACKLIGHT=m
|
CONFIG_CROS_KBD_LED_BACKLIGHT=m
|
||||||
|
# CONFIG_MELLANOX_PLATFORM is not set
|
||||||
CONFIG_CLKDEV_LOOKUP=y
|
CONFIG_CLKDEV_LOOKUP=y
|
||||||
CONFIG_HAVE_CLK_PREPARE=y
|
CONFIG_HAVE_CLK_PREPARE=y
|
||||||
CONFIG_COMMON_CLK=y
|
CONFIG_COMMON_CLK=y
|
||||||
|
@ -7768,6 +7824,7 @@ CONFIG_RPMSG=m
|
||||||
CONFIG_RPMSG_QCOM_GLINK_NATIVE=m
|
CONFIG_RPMSG_QCOM_GLINK_NATIVE=m
|
||||||
CONFIG_RPMSG_QCOM_GLINK_RPM=m
|
CONFIG_RPMSG_QCOM_GLINK_RPM=m
|
||||||
CONFIG_RPMSG_VIRTIO=m
|
CONFIG_RPMSG_VIRTIO=m
|
||||||
|
# CONFIG_SOUNDWIRE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SOC (System On Chip) specific Drivers
|
# SOC (System On Chip) specific Drivers
|
||||||
|
@ -7790,6 +7847,11 @@ CONFIG_RPMSG_VIRTIO=m
|
||||||
#
|
#
|
||||||
# CONFIG_SUNXI_SRAM is not set
|
# CONFIG_SUNXI_SRAM is not set
|
||||||
CONFIG_SOC_TI=y
|
CONFIG_SOC_TI=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# Xilinx SoC drivers
|
||||||
|
#
|
||||||
|
CONFIG_XILINX_VCU=m
|
||||||
CONFIG_PM_DEVFREQ=y
|
CONFIG_PM_DEVFREQ=y
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -7830,6 +7892,7 @@ CONFIG_MEMORY=y
|
||||||
CONFIG_IIO=m
|
CONFIG_IIO=m
|
||||||
CONFIG_IIO_BUFFER=y
|
CONFIG_IIO_BUFFER=y
|
||||||
CONFIG_IIO_BUFFER_CB=m
|
CONFIG_IIO_BUFFER_CB=m
|
||||||
|
CONFIG_IIO_BUFFER_HW_CONSUMER=m
|
||||||
CONFIG_IIO_KFIFO_BUF=m
|
CONFIG_IIO_KFIFO_BUF=m
|
||||||
CONFIG_IIO_TRIGGERED_BUFFER=m
|
CONFIG_IIO_TRIGGERED_BUFFER=m
|
||||||
CONFIG_IIO_CONFIGFS=m
|
CONFIG_IIO_CONFIGFS=m
|
||||||
|
@ -8107,6 +8170,9 @@ CONFIG_OPT3001=m
|
||||||
CONFIG_PA12203001=m
|
CONFIG_PA12203001=m
|
||||||
CONFIG_SI1145=m
|
CONFIG_SI1145=m
|
||||||
CONFIG_STK3310=m
|
CONFIG_STK3310=m
|
||||||
|
CONFIG_ST_UVIS25=m
|
||||||
|
CONFIG_ST_UVIS25_I2C=m
|
||||||
|
CONFIG_ST_UVIS25_SPI=m
|
||||||
CONFIG_TCS3414=m
|
CONFIG_TCS3414=m
|
||||||
CONFIG_TCS3472=m
|
CONFIG_TCS3472=m
|
||||||
CONFIG_SENSORS_TSL2563=m
|
CONFIG_SENSORS_TSL2563=m
|
||||||
|
@ -8116,6 +8182,7 @@ CONFIG_US5182D=m
|
||||||
CONFIG_VCNL4000=m
|
CONFIG_VCNL4000=m
|
||||||
CONFIG_VEML6070=m
|
CONFIG_VEML6070=m
|
||||||
CONFIG_VL6180=m
|
CONFIG_VL6180=m
|
||||||
|
CONFIG_ZOPT2201=m
|
||||||
|
|
||||||
#
|
#
|
||||||
# Magnetometer sensors
|
# Magnetometer sensors
|
||||||
|
@ -8344,16 +8411,18 @@ CONFIG_INTEL_TH_MSU=m
|
||||||
CONFIG_INTEL_TH_PTI=m
|
CONFIG_INTEL_TH_PTI=m
|
||||||
# CONFIG_INTEL_TH_DEBUG is not set
|
# CONFIG_INTEL_TH_DEBUG is not set
|
||||||
CONFIG_FPGA=m
|
CONFIG_FPGA=m
|
||||||
CONFIG_FPGA_MGR_ALTERA_CVP=m
|
|
||||||
CONFIG_FPGA_MGR_ALTERA_PS_SPI=m
|
|
||||||
CONFIG_FPGA_MGR_XILINX_SPI=m
|
|
||||||
CONFIG_ALTERA_PR_IP_CORE=m
|
CONFIG_ALTERA_PR_IP_CORE=m
|
||||||
|
CONFIG_FPGA_MGR_ALTERA_PS_SPI=m
|
||||||
#
|
CONFIG_FPGA_MGR_ALTERA_CVP=m
|
||||||
# FSI support
|
CONFIG_FPGA_MGR_XILINX_SPI=m
|
||||||
#
|
CONFIG_FPGA_BRIDGE=m
|
||||||
|
CONFIG_XILINX_PR_DECOUPLER=m
|
||||||
|
CONFIG_FPGA_REGION=m
|
||||||
# CONFIG_FSI is not set
|
# CONFIG_FSI is not set
|
||||||
CONFIG_PM_OPP=y
|
CONFIG_PM_OPP=y
|
||||||
|
CONFIG_UNISYS_VISORBUS=m
|
||||||
|
# CONFIG_SIOX is not set
|
||||||
|
# CONFIG_SLIMBUS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Firmware Drivers
|
# Firmware Drivers
|
||||||
|
@ -8676,16 +8745,8 @@ CONFIG_CIFS_DEBUG=y
|
||||||
# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
|
# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
|
||||||
CONFIG_CIFS_DFS_UPCALL=y
|
CONFIG_CIFS_DFS_UPCALL=y
|
||||||
CONFIG_CIFS_SMB311=y
|
CONFIG_CIFS_SMB311=y
|
||||||
|
# CONFIG_CIFS_SMB_DIRECT is not set
|
||||||
CONFIG_CIFS_FSCACHE=y
|
CONFIG_CIFS_FSCACHE=y
|
||||||
CONFIG_NCP_FS=m
|
|
||||||
CONFIG_NCPFS_PACKET_SIGNING=y
|
|
||||||
CONFIG_NCPFS_IOCTL_LOCKING=y
|
|
||||||
CONFIG_NCPFS_STRONG=y
|
|
||||||
CONFIG_NCPFS_NFS_NS=y
|
|
||||||
CONFIG_NCPFS_OS2_NS=y
|
|
||||||
# CONFIG_NCPFS_SMALLDOS is not set
|
|
||||||
CONFIG_NCPFS_NLS=y
|
|
||||||
CONFIG_NCPFS_EXTRAS=y
|
|
||||||
CONFIG_CODA_FS=m
|
CONFIG_CODA_FS=m
|
||||||
CONFIG_AFS_FS=m
|
CONFIG_AFS_FS=m
|
||||||
# CONFIG_AFS_DEBUG is not set
|
# CONFIG_AFS_DEBUG is not set
|
||||||
|
@ -8880,6 +8941,7 @@ CONFIG_NOTIFIER_ERROR_INJECTION=m
|
||||||
CONFIG_PM_NOTIFIER_ERROR_INJECT=m
|
CONFIG_PM_NOTIFIER_ERROR_INJECT=m
|
||||||
CONFIG_NETDEV_NOTIFIER_ERROR_INJECT=m
|
CONFIG_NETDEV_NOTIFIER_ERROR_INJECT=m
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
|
CONFIG_FUNCTION_ERROR_INJECTION=y
|
||||||
# CONFIG_LATENCYTOP is not set
|
# CONFIG_LATENCYTOP is not set
|
||||||
CONFIG_USER_STACKTRACE_SUPPORT=y
|
CONFIG_USER_STACKTRACE_SUPPORT=y
|
||||||
CONFIG_NOP_TRACER=y
|
CONFIG_NOP_TRACER=y
|
||||||
|
@ -8921,6 +8983,7 @@ CONFIG_PROBE_EVENTS=y
|
||||||
CONFIG_DYNAMIC_FTRACE=y
|
CONFIG_DYNAMIC_FTRACE=y
|
||||||
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
|
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
|
||||||
CONFIG_FUNCTION_PROFILER=y
|
CONFIG_FUNCTION_PROFILER=y
|
||||||
|
# CONFIG_BPF_KPROBE_OVERRIDE is not set
|
||||||
CONFIG_FTRACE_MCOUNT_RECORD=y
|
CONFIG_FTRACE_MCOUNT_RECORD=y
|
||||||
# CONFIG_FTRACE_STARTUP_TEST is not set
|
# CONFIG_FTRACE_STARTUP_TEST is not set
|
||||||
CONFIG_MMIOTRACE=y
|
CONFIG_MMIOTRACE=y
|
||||||
|
@ -8933,10 +8996,7 @@ CONFIG_MMIOTRACE=y
|
||||||
CONFIG_TRACING_EVENTS_GPIO=y
|
CONFIG_TRACING_EVENTS_GPIO=y
|
||||||
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
|
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
|
||||||
# CONFIG_DMA_API_DEBUG is not set
|
# CONFIG_DMA_API_DEBUG is not set
|
||||||
|
CONFIG_RUNTIME_TESTING_MENU=y
|
||||||
#
|
|
||||||
# Runtime Testing
|
|
||||||
#
|
|
||||||
# CONFIG_LKDTM is not set
|
# CONFIG_LKDTM is not set
|
||||||
# CONFIG_TEST_LIST_SORT is not set
|
# CONFIG_TEST_LIST_SORT is not set
|
||||||
# CONFIG_TEST_SORT is not set
|
# CONFIG_TEST_SORT is not set
|
||||||
|
@ -8959,7 +9019,7 @@ CONFIG_TEST_PARMAN=m
|
||||||
CONFIG_TEST_LKM=m
|
CONFIG_TEST_LKM=m
|
||||||
CONFIG_TEST_USER_COPY=m
|
CONFIG_TEST_USER_COPY=m
|
||||||
CONFIG_TEST_BPF=m
|
CONFIG_TEST_BPF=m
|
||||||
CONFIG_TEST_FIND_BIT=m
|
CONFIG_FIND_BIT_BENCHMARK=m
|
||||||
CONFIG_TEST_FIRMWARE=m
|
CONFIG_TEST_FIRMWARE=m
|
||||||
# CONFIG_TEST_SYSCTL is not set
|
# CONFIG_TEST_SYSCTL is not set
|
||||||
CONFIG_TEST_UDELAY=m
|
CONFIG_TEST_UDELAY=m
|
||||||
|
@ -8996,7 +9056,6 @@ CONFIG_EARLY_PRINTK_EFI=y
|
||||||
CONFIG_DOUBLEFAULT=y
|
CONFIG_DOUBLEFAULT=y
|
||||||
# CONFIG_DEBUG_TLBFLUSH is not set
|
# CONFIG_DEBUG_TLBFLUSH is not set
|
||||||
# CONFIG_IOMMU_DEBUG is not set
|
# CONFIG_IOMMU_DEBUG is not set
|
||||||
# CONFIG_IOMMU_STRESS is not set
|
|
||||||
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
|
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
|
||||||
# CONFIG_X86_DECODER_SELFTEST is not set
|
# CONFIG_X86_DECODER_SELFTEST is not set
|
||||||
CONFIG_IO_DELAY_TYPE_0X80=0
|
CONFIG_IO_DELAY_TYPE_0X80=0
|
||||||
|
@ -9042,6 +9101,7 @@ CONFIG_INTEL_TXT=y
|
||||||
CONFIG_LSM_MMAP_MIN_ADDR=0
|
CONFIG_LSM_MMAP_MIN_ADDR=0
|
||||||
CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
|
CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
|
||||||
CONFIG_HARDENED_USERCOPY=y
|
CONFIG_HARDENED_USERCOPY=y
|
||||||
|
CONFIG_HARDENED_USERCOPY_FALLBACK=y
|
||||||
# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
|
# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
|
||||||
CONFIG_FORTIFY_SOURCE=y
|
CONFIG_FORTIFY_SOURCE=y
|
||||||
# CONFIG_STATIC_USERMODEHELPER is not set
|
# CONFIG_STATIC_USERMODEHELPER is not set
|
||||||
|
@ -9288,6 +9348,7 @@ CONFIG_CRYPTO_DEV_CCP=y
|
||||||
CONFIG_CRYPTO_DEV_CCP_DD=m
|
CONFIG_CRYPTO_DEV_CCP_DD=m
|
||||||
CONFIG_CRYPTO_DEV_SP_CCP=y
|
CONFIG_CRYPTO_DEV_SP_CCP=y
|
||||||
CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
|
CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
|
||||||
|
CONFIG_CRYPTO_DEV_SP_PSP=y
|
||||||
CONFIG_CRYPTO_DEV_QAT=m
|
CONFIG_CRYPTO_DEV_QAT=m
|
||||||
CONFIG_CRYPTO_DEV_QAT_DH895xCC=m
|
CONFIG_CRYPTO_DEV_QAT_DH895xCC=m
|
||||||
CONFIG_CRYPTO_DEV_QAT_C3XXX=m
|
CONFIG_CRYPTO_DEV_QAT_C3XXX=m
|
||||||
|
@ -9298,6 +9359,7 @@ CONFIG_CRYPTO_DEV_QAT_C62XVF=m
|
||||||
CONFIG_CRYPTO_DEV_NITROX=m
|
CONFIG_CRYPTO_DEV_NITROX=m
|
||||||
CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m
|
CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m
|
||||||
CONFIG_CRYPTO_DEV_CHELSIO=m
|
CONFIG_CRYPTO_DEV_CHELSIO=m
|
||||||
|
# CONFIG_CHELSIO_IPSEC_INLINE is not set
|
||||||
CONFIG_CRYPTO_DEV_VIRTIO=m
|
CONFIG_CRYPTO_DEV_VIRTIO=m
|
||||||
CONFIG_ASYMMETRIC_KEY_TYPE=y
|
CONFIG_ASYMMETRIC_KEY_TYPE=y
|
||||||
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
|
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
|
||||||
|
@ -9331,6 +9393,7 @@ CONFIG_VIRTUALIZATION=y
|
||||||
CONFIG_KVM=m
|
CONFIG_KVM=m
|
||||||
CONFIG_KVM_INTEL=m
|
CONFIG_KVM_INTEL=m
|
||||||
CONFIG_KVM_AMD=m
|
CONFIG_KVM_AMD=m
|
||||||
|
CONFIG_KVM_AMD_SEV=y
|
||||||
# CONFIG_KVM_MMU_AUDIT is not set
|
# CONFIG_KVM_MMU_AUDIT is not set
|
||||||
CONFIG_VHOST_NET=m
|
CONFIG_VHOST_NET=m
|
||||||
CONFIG_VHOST_SCSI=m
|
CONFIG_VHOST_SCSI=m
|
||||||
|
@ -9415,7 +9478,8 @@ CONFIG_ASSOCIATIVE_ARRAY=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT_MAP=y
|
CONFIG_HAS_IOPORT_MAP=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
# CONFIG_DMA_NOOP_OPS is not set
|
CONFIG_SGL_ALLOC=y
|
||||||
|
# CONFIG_DMA_DIRECT_OPS is not set
|
||||||
CONFIG_DMA_VIRT_OPS=y
|
CONFIG_DMA_VIRT_OPS=y
|
||||||
CONFIG_CHECK_SIGNATURE=y
|
CONFIG_CHECK_SIGNATURE=y
|
||||||
CONFIG_CPU_RMAP=y
|
CONFIG_CPU_RMAP=y
|
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2016 Tomáš Čech <sleep_walker@gnu.org>
|
;;; Copyright © 2016 Tomáš Čech <sleep_walker@gnu.org>
|
||||||
;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2016, 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2017 Jelle Licht <jlicht@fsfe.org>
|
;;; Copyright © 2017 Jelle Licht <jlicht@fsfe.org>
|
||||||
|
;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -53,6 +54,7 @@
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
|
#:use-module (gnu packages qt)
|
||||||
#:use-module (gnu packages ssh)
|
#:use-module (gnu packages ssh)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
#:use-module (gnu packages xml))
|
#:use-module (gnu packages xml))
|
||||||
|
@ -391,7 +393,8 @@ and will take advantage of multiple processor cores where possible.")
|
||||||
(assoc-ref %build-inputs "boost")
|
(assoc-ref %build-inputs "boost")
|
||||||
"/lib")
|
"/lib")
|
||||||
"--enable-python-binding"
|
"--enable-python-binding"
|
||||||
"--enable-tests")
|
"--enable-tests"
|
||||||
|
"CXXFLAGS=-std=c++11") ; Use std::chrono instead of boost
|
||||||
#:make-flags (list
|
#:make-flags (list
|
||||||
(string-append "LDFLAGS=-Wl,-rpath="
|
(string-append "LDFLAGS=-Wl,-rpath="
|
||||||
(assoc-ref %outputs "out") "/lib"))))
|
(assoc-ref %outputs "out") "/lib"))))
|
||||||
|
@ -407,4 +410,45 @@ focusing on efficiency and scalability. It runs on embedded devices as well as
|
||||||
desktops.")
|
desktops.")
|
||||||
(license l:bsd-2)))
|
(license l:bsd-2)))
|
||||||
|
|
||||||
|
(define-public qbittorrent
|
||||||
|
(package
|
||||||
|
(name "qbittorrent")
|
||||||
|
(version "4.0.4")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://github.com/qbittorrent/qBittorrent/archive/release-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-release-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"145r4lv7rqdhrm5znn3ndxsfdf579n46zvj7c53c422am8ir5xhp"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags
|
||||||
|
(list (string-append "--with-boost-libdir="
|
||||||
|
(assoc-ref %build-inputs "boost")
|
||||||
|
"/lib")
|
||||||
|
"--enable-debug"
|
||||||
|
"QMAKE_LRELEASE=lrelease")))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)
|
||||||
|
("qttools" ,qttools)))
|
||||||
|
(inputs
|
||||||
|
`(("boost" ,boost)
|
||||||
|
("libtorrent-rasterbar" ,libtorrent-rasterbar)
|
||||||
|
("openssl" ,openssl)
|
||||||
|
("python" ,python)
|
||||||
|
("qtbase" ,qtbase)
|
||||||
|
("qtsvg" ,qtsvg)
|
||||||
|
("zlib" ,zlib)))
|
||||||
|
(home-page "https://www.qbittorrent.org/")
|
||||||
|
(synopsis "Graphical BitTorrent client")
|
||||||
|
(description
|
||||||
|
"qBittorrent is a BitTorrent client programmed in C++/Qt that uses
|
||||||
|
libtorrent (sometimes called libtorrent-rasterbar) by Arvid Norberg.
|
||||||
|
|
||||||
|
It aims to be a good alternative to all other BitTorrent clients out there.
|
||||||
|
qBittorrent is fast, stable and provides unicode support as well as many
|
||||||
|
features.")
|
||||||
|
(license l:gpl2+)))
|
||||||
|
|
|
@ -184,8 +184,8 @@ their dependencies.")
|
||||||
(license l:gpl3+))))
|
(license l:gpl3+))))
|
||||||
|
|
||||||
(define-public cuirass
|
(define-public cuirass
|
||||||
(let ((commit "f090c0f4786c789070e2eae740914e06ab0ab989")
|
(let ((commit "238f856e48ee333ed3e19fa32ce5e1742c650c67")
|
||||||
(revision "15"))
|
(revision "16"))
|
||||||
(package
|
(package
|
||||||
(name "cuirass")
|
(name "cuirass")
|
||||||
(version (string-append "0.0.1-" revision "." (string-take commit 7)))
|
(version (string-append "0.0.1-" revision "." (string-take commit 7)))
|
||||||
|
@ -197,7 +197,7 @@ their dependencies.")
|
||||||
(file-name (string-append name "-" version))
|
(file-name (string-append name "-" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0aj1z9svsjvjlb6gas6032ygwhv7ld4iw7g3as852x9nfd2zck98"))))
|
"15iwdgy561gnsr224rs5z8qn7nrsh1wdlsxr8gwxyk0v4zp6yvbf"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:modules ((guix build utils)
|
'(#:modules ((guix build utils)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
|
@ -55,7 +55,15 @@
|
||||||
;; know where to find each other.
|
;; know where to find each other.
|
||||||
`(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
|
`(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
|
||||||
(assoc-ref %outputs "out")
|
(assoc-ref %outputs "out")
|
||||||
"/lib"))))
|
"/lib"))
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
;; No reason has been found for this test to reliably fail on aarch64-linux.
|
||||||
|
(add-after 'unpack 'disable-failing-aarch64-tests
|
||||||
|
(lambda _
|
||||||
|
(substitute* "tests/Makefile.in"
|
||||||
|
(("run-backtrace-native.sh") ""))
|
||||||
|
#t)))))
|
||||||
|
|
||||||
(native-inputs `(("m4" ,m4)))
|
(native-inputs `(("m4" ,m4)))
|
||||||
(inputs `(("zlib" ,zlib)))
|
(inputs `(("zlib" ,zlib)))
|
||||||
|
|
|
@ -458,7 +458,21 @@ security standards.")
|
||||||
(mozilla-patch "icecat-bug-1426603.patch" "ca0b92ecedee" "0dc3mdl4a3hrq4j384zjavf3splj6blv4masign710hk7svlgbhq")
|
(mozilla-patch "icecat-bug-1426603.patch" "ca0b92ecedee" "0dc3mdl4a3hrq4j384zjavf3splj6blv4masign710hk7svlgbhq")
|
||||||
(mozilla-patch "icecat-CVE-2018-5146.patch" "494e5d5278ba" "1yb4lxjw499ppwhk31vz0vzl0cfqvj9d4jwqag7ayj53ybwsqgjr")
|
(mozilla-patch "icecat-CVE-2018-5146.patch" "494e5d5278ba" "1yb4lxjw499ppwhk31vz0vzl0cfqvj9d4jwqag7ayj53ybwsqgjr")
|
||||||
(mozilla-patch "icecat-CVE-2018-5147.patch" "5cd5586a2f48" "10s774pwvj6xfk3kk6ivnhp2acc8x9sqq6na8z47nkhgwl2712i5")
|
(mozilla-patch "icecat-CVE-2018-5147.patch" "5cd5586a2f48" "10s774pwvj6xfk3kk6ivnhp2acc8x9sqq6na8z47nkhgwl2712i5")
|
||||||
(mozilla-patch "icecat-CVE-2018-5148.patch" "c3e447e07077" "0gmwy631f8ip4gr1mpbjk8bx1n1748wdls5zq4y8hpmpnq5g1wyx")))
|
(mozilla-patch "icecat-CVE-2018-5148.patch" "c3e447e07077" "0gmwy631f8ip4gr1mpbjk8bx1n1748wdls5zq4y8hpmpnq5g1wyx")
|
||||||
|
(mozilla-patch "icecat-bug-1443891.patch" "17201199b18d" "1d0hcim1fwh0bklwpmnal1mv9d9kmyif1m15aj1nqkf1n3x4xc37")
|
||||||
|
(mozilla-patch "icecat-bug-1361699.patch" "a07d6c3ff262" "1z8mjg2487r8pxi0x951v6fwwr696q84f6hlzimc3r7bn5ds9r83")
|
||||||
|
(mozilla-patch "icecat-bug-1433609.patch" "7127ccf8f88c" "0m4my7aflpp0wlqilr2m4axd7k2fyrs7jqdcz2rrz5pwivz1anvd")
|
||||||
|
(mozilla-patch "icecat-bug-1444231.patch" "57bd35fa8618" "0pl6x5amc5x6nhwl7qnmnff3jjjxmbs8r365bfzj58g7q5ihqwvf")
|
||||||
|
(mozilla-patch "icecat-bug-1409440.patch" "2f3e1ccf1661" "0azl8g81kpc0w2xpjpgm1154ll12g0a8n6i7bl3s9nnrk2i26n74")
|
||||||
|
(mozilla-patch "icecat-bug-1441941.patch" "8ff2c4d68e36" "0kz1rqhnz8ca4z20hnpcafidhsrwhnm0h2gmlgchni33h8pisr1f")
|
||||||
|
(mozilla-patch "icecat-bug-1443092.patch" "b8c430253efd" "1arjcaps9axhxh5ff84n9bydhhzrihn7hbq7v69nvqwqrjp3lgg9")
|
||||||
|
(mozilla-patch "icecat-bug-1448774.patch" "05cadfa3ac39" "0q0vh7vy7x0l8jp6376fn10qljfp4mnp4m9zfn90j4m19pfl86a0")
|
||||||
|
(mozilla-patch "icecat-bug-1449548.patch" "48a678d7cb81" "1yfh7kxxxvqck2hpn98pwag4splyc6c9brc5haq28fp8x9r9qvlk")
|
||||||
|
(mozilla-patch "icecat-bug-1448705.patch" "112032576872" "1x1hxyggbxlnlj0n9cbp03hjnfvm6cq8nqj0jizrd8cfyd5aig8p")
|
||||||
|
(mozilla-patch "icecat-bug-1388020.patch" "ad9a885b0df4" "1hrk1q9mk59jww55g4lqmaflznk87x3vvjn2mxfgfbbjs8l1cyz4")
|
||||||
|
(mozilla-patch "icecat-bug-1452416.patch" "f89ab96a2532" "1dqchxdyznhgyxhfq0hm0vg1p597hjqflfzigc7j3s5vxf9rg2nv")
|
||||||
|
(mozilla-patch "icecat-bug-1451376.patch" "af885a1bd293" "1wfpqhm2dp4fsx6zbrncngsqz7g2x09b625zcighixrbpvybyww3")
|
||||||
|
(mozilla-patch "icecat-bug-1444668.patch" "666fc84ec72d" "0lml2wqd4yqidhi364x8r90f78397k2y0kq5z5bv8l8j4bhcnb9v")))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
@ -563,10 +577,18 @@ security standards.")
|
||||||
#:validate-runpath? #f
|
#:validate-runpath? #f
|
||||||
|
|
||||||
#:configure-flags '("--enable-default-toolkit=cairo-gtk3"
|
#:configure-flags '("--enable-default-toolkit=cairo-gtk3"
|
||||||
|
|
||||||
|
"--with-distribution-id=org.gnu"
|
||||||
|
|
||||||
"--enable-gio"
|
"--enable-gio"
|
||||||
"--enable-startup-notification"
|
"--enable-startup-notification"
|
||||||
"--enable-pulseaudio"
|
"--enable-pulseaudio"
|
||||||
|
|
||||||
|
"--disable-tests"
|
||||||
|
"--disable-updater"
|
||||||
|
"--disable-crashreporter"
|
||||||
|
"--disable-maintenance-service"
|
||||||
|
"--disable-eme"
|
||||||
"--disable-gconf"
|
"--disable-gconf"
|
||||||
"--disable-gnomeui"
|
"--disable-gnomeui"
|
||||||
|
|
||||||
|
@ -639,7 +661,7 @@ security standards.")
|
||||||
(close-port out))
|
(close-port out))
|
||||||
#t))
|
#t))
|
||||||
(add-after
|
(add-after
|
||||||
'unpack 'arrange-to-link-libxul-with-libraries-it-might-dlopen
|
'unpack 'link-libxul-with-libraries
|
||||||
(lambda _
|
(lambda _
|
||||||
;; libxul.so dynamically opens libraries, so here we explicitly
|
;; libxul.so dynamically opens libraries, so here we explicitly
|
||||||
;; link them into libxul.so instead.
|
;; link them into libxul.so instead.
|
||||||
|
|
|
@ -1310,18 +1310,29 @@ interface for reading articles in any format.")
|
||||||
(define-public guile-config
|
(define-public guile-config
|
||||||
(package
|
(package
|
||||||
(name "guile-config")
|
(name "guile-config")
|
||||||
(version "0.1.1")
|
(version "0.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"http://alex.pompo.co/software/" name "-" version
|
(url "https://github.com/a-sassmannshausen/guile-config")
|
||||||
".tar.gz"))
|
(commit "guile-config-0.2")))
|
||||||
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1b719bn192f9wg24rr0zx8jpmygsvyhfi35iy778pb5p392snrn8"))))
|
"07q86vqdwmm81wwxz1d1ah27hbhs6qbn8kiizrfpj0s4bf95w3r9"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'autoreconf
|
||||||
|
(lambda _
|
||||||
|
(zero? (system* "autoreconf" "-fi")))))))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("pkg-config" ,pkg-config)
|
||||||
|
("texinfo" ,texinfo)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-2.0)))
|
`(("guile" ,guile-2.2)))
|
||||||
(synopsis "Guile application configuration parsing library")
|
(synopsis "Guile application configuration parsing library")
|
||||||
(description
|
(description
|
||||||
"Guile Config is a library providing a declarative approach to
|
"Guile Config is a library providing a declarative approach to
|
||||||
|
@ -1332,7 +1343,7 @@ parameter parsing using getopt-long; basic GNU command-line parameter
|
||||||
generation (--help, --usage, --version); automatic output generation for the
|
generation (--help, --usage, --version); automatic output generation for the
|
||||||
above command-line parameters.")
|
above command-line parameters.")
|
||||||
(home-page "https://github.com/a-sassmannshausen/guile-config")
|
(home-page "https://github.com/a-sassmannshausen/guile-config")
|
||||||
(license license:agpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public guile-redis
|
(define-public guile-redis
|
||||||
(package
|
(package
|
||||||
|
|
|
@ -311,6 +311,11 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration."
|
||||||
(ice-9 match))
|
(ice-9 match))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-/bin/pwd
|
||||||
|
(lambda _
|
||||||
|
(substitute* (find-files "." "^Makefile(\\.include)?$")
|
||||||
|
(("/bin/pwd") "pwd"))
|
||||||
|
#t))
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda* (#:key inputs native-inputs target #:allow-other-keys)
|
(lambda* (#:key inputs native-inputs target #:allow-other-keys)
|
||||||
;; Avoid introducing timestamps
|
;; Avoid introducing timestamps
|
||||||
|
@ -386,8 +391,8 @@ It has been modified to remove all non-free binary blobs.")
|
||||||
;; supports qemu "virt" machine and possibly a large number of ARM boards.
|
;; supports qemu "virt" machine and possibly a large number of ARM boards.
|
||||||
;; See : https://wiki.debian.org/DebianKernel/ARMMP.
|
;; See : https://wiki.debian.org/DebianKernel/ARMMP.
|
||||||
|
|
||||||
(define %linux-libre-version "4.15.16")
|
(define %linux-libre-version "4.16.1")
|
||||||
(define %linux-libre-hash "1nzdaypvw8abas6xr6ijk2wc9f0b6q72xw6ypalwx33p7sdqwrzq")
|
(define %linux-libre-hash "1zqbg7ivf79nzw0lw18bbld2wq16880k83526bwqh1nsydayp6k0")
|
||||||
|
|
||||||
(define-public linux-libre
|
(define-public linux-libre
|
||||||
(make-linux-libre %linux-libre-version
|
(make-linux-libre %linux-libre-version
|
||||||
|
@ -4560,3 +4565,30 @@ text-mode or graphical applications that don't use a display server.
|
||||||
Also included is @command{fbgrab}, a wrapper around @command{fbcat} that
|
Also included is @command{fbgrab}, a wrapper around @command{fbcat} that
|
||||||
emulates the behaviour of Gunnar Monell's older fbgrab utility.")
|
emulates the behaviour of Gunnar Monell's older fbgrab utility.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public libcgroup
|
||||||
|
(package
|
||||||
|
(name "libcgroup")
|
||||||
|
(version "0.41")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://sourceforge/libcg/" name "/"
|
||||||
|
version "/" name "-" version ".tar.bz2"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0lgvyq37gq84sk30sg18admxaj0j0p5dq3bl6g74a1ppgvf8pqz4"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f))
|
||||||
|
(native-inputs
|
||||||
|
`(("bison" ,bison)
|
||||||
|
("flex" ,flex)))
|
||||||
|
(inputs
|
||||||
|
`(("linux-pam" ,linux-pam)))
|
||||||
|
(home-page "https://sourceforge.net/projects/libcg/")
|
||||||
|
(synopsis "Control groups management tools")
|
||||||
|
(description "Control groups is Linux kernel method for process resource
|
||||||
|
restriction, permission handling and more. This package provides userspace
|
||||||
|
interface to this kernel feature.")
|
||||||
|
(license license:lgpl2.1)))
|
||||||
|
|
|
@ -60,7 +60,7 @@ extensive examples, including parsers for the Javascript and C99 languages.")
|
||||||
(let ((triplet "i686-unknown-linux-gnu"))
|
(let ((triplet "i686-unknown-linux-gnu"))
|
||||||
(package
|
(package
|
||||||
(name "mes")
|
(name "mes")
|
||||||
(version "0.11")
|
(version "0.12")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://gitlab.com/janneke/mes"
|
(uri (string-append "https://gitlab.com/janneke/mes"
|
||||||
|
@ -69,7 +69,7 @@ extensive examples, including parsers for the Javascript and C99 languages.")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0m0kk7rxl8q7pjdmis36bwgv1i824nn3d7k3xxm8j64bl0gbhkmr"))))
|
"0lbwmyl5262z28kpac6kmxxx8aglzy8n6bsicp5lyzkmzkzvjnh2"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(supported-systems '("i686-linux" "x86_64-linux"))
|
(supported-systems '("i686-linux" "x86_64-linux"))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
|
@ -79,6 +79,14 @@
|
||||||
`(#:configure-flags '("--localstatedir=/var")
|
`(#:configure-flags '("--localstatedir=/var")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'skip-linux-libnuma-test
|
||||||
|
(lambda _
|
||||||
|
;; Arrange to skip 'tests/linux-libnuma', which fails on some
|
||||||
|
;; machines: <https://github.com/open-mpi/hwloc/issues/213>.
|
||||||
|
(substitute* "tests/linux-libnuma.c"
|
||||||
|
(("numa_available\\(\\)")
|
||||||
|
"-1"))
|
||||||
|
#t))
|
||||||
(add-after 'install 'refine-libnuma
|
(add-after 'install 'refine-libnuma
|
||||||
;; Give -L arguments for libraries to avoid propagation
|
;; Give -L arguments for libraries to avoid propagation
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
@ -128,7 +136,19 @@ bind processes, and much more.")
|
||||||
"0jf0krj1h95flmb784ifv9vnkdnajjz00p4zbhmja7vm4v67axdr"))))
|
"0jf0krj1h95flmb784ifv9vnkdnajjz00p4zbhmja7vm4v67axdr"))))
|
||||||
|
|
||||||
;; libnuma is no longer needed.
|
;; libnuma is no longer needed.
|
||||||
(inputs (alist-delete "numactl" (package-inputs hwloc)))))
|
(inputs (alist-delete "numactl" (package-inputs hwloc)))
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments hwloc)
|
||||||
|
((#:phases phases)
|
||||||
|
`(modify-phases ,phases
|
||||||
|
(replace 'skip-linux-libnuma-test
|
||||||
|
(lambda _
|
||||||
|
;; Arrange to skip 'tests/hwloc/linux-libnuma', which fails on
|
||||||
|
;; some machines: <https://github.com/open-mpi/hwloc/issues/213>.
|
||||||
|
(substitute* "tests/hwloc/linux-libnuma.c"
|
||||||
|
(("numa_available\\(\\)")
|
||||||
|
"-1"))
|
||||||
|
#t))))))))
|
||||||
|
|
||||||
(define-public openmpi
|
(define-public openmpi
|
||||||
(package
|
(package
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
|
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
|
||||||
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
||||||
;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2015, 2018 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -145,7 +145,18 @@ minimalist than ntpd.")
|
||||||
(file-name (string-append name "-" version "-checkout"))))
|
(file-name (string-append name "-" version "-checkout"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases (modify-phases %standard-phases
|
`(;; Disable seccomp when it's not supported--e.g., on aarch64. See
|
||||||
|
;; 'src/seccomp.c' for the list of supported systems.
|
||||||
|
#:configure-flags ,(if (any (lambda (system)
|
||||||
|
(string-contains (or
|
||||||
|
(%current-target-system)
|
||||||
|
(%current-system))
|
||||||
|
system))
|
||||||
|
'("x86_64" "i686" "arm"))
|
||||||
|
''()
|
||||||
|
''("--disable-seccomp-filter"))
|
||||||
|
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
(add-after 'unpack 'autogen
|
(add-after 'unpack 'autogen
|
||||||
(lambda _
|
(lambda _
|
||||||
;; The ancestor of 'SOURCE_DATE_EPOCH'; it contains the
|
;; The ancestor of 'SOURCE_DATE_EPOCH'; it contains the
|
||||||
|
|
|
@ -92,8 +92,8 @@
|
||||||
;; Note: the 'update-guix-package.scm' script expects this definition to
|
;; Note: the 'update-guix-package.scm' script expects this definition to
|
||||||
;; start precisely like this.
|
;; start precisely like this.
|
||||||
(let ((version "0.14.0")
|
(let ((version "0.14.0")
|
||||||
(commit "bdf0c644dafbce2a532161f04e9bf88c9310e081")
|
(commit "486de7377f25438b0f44fd93f97e9ef822d558b8")
|
||||||
(revision 9))
|
(revision 10))
|
||||||
(package
|
(package
|
||||||
(name "guix")
|
(name "guix")
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1lmkgg4c38jkd1dk9cbh3zamyrh5vml8w8445hn8wq5c3mjj2n01"))
|
"12ghbby83w335g7vbg7h52hjaal5l6mc6qmldlx8029340br8h1w"))
|
||||||
(file-name (string-append "guix-" version "-checkout"))))
|
(file-name (string-append "guix-" version "-checkout"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
|
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -72,17 +73,15 @@
|
||||||
;;;
|
;;;
|
||||||
|
|
||||||
(define (uglify-field-name field-name)
|
(define (uglify-field-name field-name)
|
||||||
(let ((str (symbol->string field-name)))
|
(string-delete #\? (symbol->string field-name)))
|
||||||
(string-join (string-split (string-delete #\? str) #\-) "-")))
|
|
||||||
|
|
||||||
(define (serialize-field field-name val)
|
(define (serialize-field field-name val)
|
||||||
(format #t "~a=~a\n" (uglify-field-name field-name) val))
|
#~(format #f "~a=~a\n" #$(uglify-field-name field-name) #$val))
|
||||||
|
|
||||||
(define (serialize-string field-name val)
|
(define (serialize-string field-name val)
|
||||||
(if (string=? val "") "" (serialize-field field-name val)))
|
(if (and (string? val) (string=? val ""))
|
||||||
|
""
|
||||||
(define (serialize-boolean field-name val)
|
(serialize-field field-name val)))
|
||||||
(serialize-field field-name (if val 1 0)))
|
|
||||||
|
|
||||||
(define (serialize-list field-name val)
|
(define (serialize-list field-name val)
|
||||||
(if (null? val) "" (serialize-field field-name (string-join val))))
|
(if (null? val) "" (serialize-field field-name (string-join val))))
|
||||||
|
@ -96,7 +95,10 @@
|
||||||
(exact-integer? val))
|
(exact-integer? val))
|
||||||
|
|
||||||
(define (serialize-integer field-name val)
|
(define (serialize-integer field-name val)
|
||||||
(serialize-field field-name val))
|
(serialize-field field-name (number->string val)))
|
||||||
|
|
||||||
|
(define (serialize-boolean field-name val)
|
||||||
|
(serialize-integer field-name (if val 1 0)))
|
||||||
|
|
||||||
(define (serialize-repository-cgit-configuration x)
|
(define (serialize-repository-cgit-configuration x)
|
||||||
(serialize-configuration x repository-cgit-configuration-fields))
|
(serialize-configuration x repository-cgit-configuration-fields))
|
||||||
|
@ -105,7 +107,13 @@
|
||||||
(list? val))
|
(list? val))
|
||||||
|
|
||||||
(define (serialize-repository-cgit-configuration-list field-name val)
|
(define (serialize-repository-cgit-configuration-list field-name val)
|
||||||
(for-each serialize-repository-cgit-configuration val))
|
#~(string-append
|
||||||
|
#$@(map serialize-repository-cgit-configuration val)))
|
||||||
|
|
||||||
|
(define (file-object? val)
|
||||||
|
(or (file-like? val) (string? val)))
|
||||||
|
(define (serialize-file-object field-name val)
|
||||||
|
(serialize-string field-name val))
|
||||||
|
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
|
@ -116,7 +124,7 @@
|
||||||
(and (list? val) (and-map nginx-server-configuration? val)))
|
(and (list? val) (and-map nginx-server-configuration? val)))
|
||||||
|
|
||||||
(define (serialize-nginx-server-configuration-list field-name val)
|
(define (serialize-nginx-server-configuration-list field-name val)
|
||||||
#f)
|
"")
|
||||||
|
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
|
@ -124,18 +132,18 @@
|
||||||
;;;
|
;;;
|
||||||
|
|
||||||
(define (serialize-repo-field field-name val)
|
(define (serialize-repo-field field-name val)
|
||||||
(format #t "repo.~a=~a\n" (uglify-field-name field-name) val))
|
#~(format #f "repo.~a=~a\n" #$(uglify-field-name field-name) #$val))
|
||||||
|
|
||||||
(define (serialize-repo-list field-name val)
|
(define (serialize-repo-list field-name val)
|
||||||
(if (null? val) "" (serialize-repo-field field-name (string-join val))))
|
(if (null? val) "" (serialize-repo-field field-name (string-join val))))
|
||||||
|
|
||||||
(define repo-boolean? boolean?)
|
(define repo-boolean? boolean?)
|
||||||
|
|
||||||
(define (serialize-repo-boolean field-name val)
|
|
||||||
(serialize-repo-field field-name (if val 1 0)))
|
|
||||||
|
|
||||||
(define (serialize-repo-integer field-name val)
|
(define (serialize-repo-integer field-name val)
|
||||||
(serialize-repo-field field-name val))
|
(serialize-repo-field field-name (number->string val)))
|
||||||
|
|
||||||
|
(define (serialize-repo-boolean field-name val)
|
||||||
|
(serialize-repo-integer field-name (if val 1 0)))
|
||||||
|
|
||||||
(define repo-list? list?)
|
(define repo-list? list?)
|
||||||
|
|
||||||
|
@ -144,26 +152,32 @@
|
||||||
(define (serialize-repo-string field-name val)
|
(define (serialize-repo-string field-name val)
|
||||||
(if (string=? val "") "" (serialize-repo-field field-name val)))
|
(if (string=? val "") "" (serialize-repo-field field-name val)))
|
||||||
|
|
||||||
|
(define repo-file-object? file-object?)
|
||||||
|
(define serialize-repo-file-object serialize-repo-string)
|
||||||
|
|
||||||
(define module-link-path? list?)
|
(define module-link-path? list?)
|
||||||
|
|
||||||
(define (serialize-module-link-path field-name val)
|
(define (serialize-module-link-path field-name val)
|
||||||
(if (null? val) ""
|
(if (null? val) ""
|
||||||
(match val
|
(match val
|
||||||
((path text)
|
((path text)
|
||||||
(format #t "repo.~a.~a=~a\n"
|
(format #f "repo.module-link.~a=~a\n" path text)))))
|
||||||
(string-drop-right (uglify-field-name 'module-link-path)
|
|
||||||
(string-length "-path"))
|
(define (serialize-project-list _ val)
|
||||||
path text)))))
|
(if (null? val) ""
|
||||||
|
(serialize-field
|
||||||
|
'project-list
|
||||||
|
(plain-file "project-list" (string-join val "\n")))))
|
||||||
|
|
||||||
(define repository-directory? string?)
|
(define repository-directory? string?)
|
||||||
|
|
||||||
(define (serialize-repository-directory _ val)
|
(define (serialize-repository-directory _ val)
|
||||||
(if (string=? val "") "" (format #t "scan-path=~a\n" val)))
|
(if (string=? val "") "" (format #f "scan-path=~a\n" val)))
|
||||||
|
|
||||||
(define mimetype-alist? list?)
|
(define mimetype-alist? list?)
|
||||||
|
|
||||||
(define (serialize-mimetype-alist field-name val)
|
(define (serialize-mimetype-alist field-name val)
|
||||||
(format #t "# Mimetypes\n~a"
|
(format #f "# Mimetypes\n~a"
|
||||||
(string-join
|
(string-join
|
||||||
(map (match-lambda
|
(map (match-lambda
|
||||||
((extension mimetype)
|
((extension mimetype)
|
||||||
|
@ -177,13 +191,13 @@
|
||||||
"A mask of snapshot formats for this repo that cgit generates links for,
|
"A mask of snapshot formats for this repo that cgit generates links for,
|
||||||
restricted by the global @code{snapshots} setting.")
|
restricted by the global @code{snapshots} setting.")
|
||||||
(source-filter
|
(source-filter
|
||||||
(repo-string "")
|
(repo-file-object "")
|
||||||
"Override the default @code{source-filter}.")
|
"Override the default @code{source-filter}.")
|
||||||
(url
|
(url
|
||||||
(repo-string "")
|
(repo-string "")
|
||||||
"The relative URL used to access the repository.")
|
"The relative URL used to access the repository.")
|
||||||
(about-filter
|
(about-filter
|
||||||
(repo-string "")
|
(repo-file-object "")
|
||||||
"Override the default @code{about-filter}.")
|
"Override the default @code{about-filter}.")
|
||||||
(branch-sort
|
(branch-sort
|
||||||
(repo-string "")
|
(repo-string "")
|
||||||
|
@ -193,7 +207,7 @@ ref list, and when set to @samp{name} enables ordering by branch name.")
|
||||||
(repo-list '())
|
(repo-list '())
|
||||||
"A list of URLs which can be used to clone repo.")
|
"A list of URLs which can be used to clone repo.")
|
||||||
(commit-filter
|
(commit-filter
|
||||||
(repo-string "")
|
(repo-file-object "")
|
||||||
"Override the default @code{commit-filter}.")
|
"Override the default @code{commit-filter}.")
|
||||||
(commit-sort
|
(commit-sort
|
||||||
(repo-string "")
|
(repo-string "")
|
||||||
|
@ -212,7 +226,7 @@ is no suitable HEAD.")
|
||||||
(repo-string "")
|
(repo-string "")
|
||||||
"The value to show as repository homepage.")
|
"The value to show as repository homepage.")
|
||||||
(email-filter
|
(email-filter
|
||||||
(repo-string "")
|
(repo-file-object "")
|
||||||
"Override the default @code{email-filter}.")
|
"Override the default @code{email-filter}.")
|
||||||
(enable-commit-graph?
|
(enable-commit-graph?
|
||||||
(repo-boolean #f)
|
(repo-boolean #f)
|
||||||
|
@ -246,14 +260,14 @@ repository index.")
|
||||||
(repo-boolean #f)
|
(repo-boolean #f)
|
||||||
"Flag which, when set to @samp{#t}, ignores the repository.")
|
"Flag which, when set to @samp{#t}, ignores the repository.")
|
||||||
(logo
|
(logo
|
||||||
(repo-string "")
|
(repo-file-object "")
|
||||||
"URL which specifies the source of an image which will be used as a
|
"URL which specifies the source of an image which will be used as a
|
||||||
logo on this repo’s pages.")
|
logo on this repo’s pages.")
|
||||||
(logo-link
|
(logo-link
|
||||||
(repo-string "")
|
(repo-string "")
|
||||||
"URL loaded when clicking on the cgit logo image.")
|
"URL loaded when clicking on the cgit logo image.")
|
||||||
(owner-filter
|
(owner-filter
|
||||||
(repo-string "")
|
(repo-file-object "")
|
||||||
"Override the default @code{owner-filter}.")
|
"Override the default @code{owner-filter}.")
|
||||||
(module-link
|
(module-link
|
||||||
(repo-string "")
|
(repo-string "")
|
||||||
|
@ -299,7 +313,7 @@ after this option will inherit the current section name.")
|
||||||
(nginx-server-configuration-list (list %cgit-configuration-nginx))
|
(nginx-server-configuration-list (list %cgit-configuration-nginx))
|
||||||
"NGINX configuration.")
|
"NGINX configuration.")
|
||||||
(about-filter
|
(about-filter
|
||||||
(string "")
|
(file-object "")
|
||||||
"Specifies a command which will be invoked to format the content of about
|
"Specifies a command which will be invoked to format the content of about
|
||||||
pages (both top-level and for each repository).")
|
pages (both top-level and for each repository).")
|
||||||
(agefile
|
(agefile
|
||||||
|
@ -307,7 +321,7 @@ pages (both top-level and for each repository).")
|
||||||
"Specifies a path, relative to each repository path, which can be used to
|
"Specifies a path, relative to each repository path, which can be used to
|
||||||
specify the date and time of the youngest commit in the repository.")
|
specify the date and time of the youngest commit in the repository.")
|
||||||
(auth-filter
|
(auth-filter
|
||||||
(string "")
|
(file-object "")
|
||||||
"Specifies a command that will be invoked for authenticating repository
|
"Specifies a command that will be invoked for authenticating repository
|
||||||
access.")
|
access.")
|
||||||
(branch-sort
|
(branch-sort
|
||||||
|
@ -360,7 +374,7 @@ generates valid clone URLs for the repository.")
|
||||||
(list '())
|
(list '())
|
||||||
"List of @code{clone-url} templates.")
|
"List of @code{clone-url} templates.")
|
||||||
(commit-filter
|
(commit-filter
|
||||||
(string "")
|
(file-object "")
|
||||||
"Command which will be invoked to format commit messages.")
|
"Command which will be invoked to format commit messages.")
|
||||||
(commit-sort
|
(commit-sort
|
||||||
(string "git log")
|
(string "git log")
|
||||||
|
@ -368,10 +382,10 @@ generates valid clone URLs for the repository.")
|
||||||
commit log, and when set to @samp{topo} enables strict topological
|
commit log, and when set to @samp{topo} enables strict topological
|
||||||
ordering.")
|
ordering.")
|
||||||
(css
|
(css
|
||||||
(string "/share/cgit/cgit.css")
|
(file-object "/share/cgit/cgit.css")
|
||||||
"URL which specifies the css document to include in all cgit pages.")
|
"URL which specifies the css document to include in all cgit pages.")
|
||||||
(email-filter
|
(email-filter
|
||||||
(string "")
|
(file-object "")
|
||||||
"Specifies a command which will be invoked to format names and email
|
"Specifies a command which will be invoked to format names and email
|
||||||
address of committers, authors, and taggers, as represented in various
|
address of committers, authors, and taggers, as represented in various
|
||||||
places throughout the cgit interface.")
|
places throughout the cgit interface.")
|
||||||
|
@ -435,7 +449,7 @@ links for plaintext blobs printed in the tree view.")
|
||||||
"Flag which, when set to @samp{#f}, will allow cgit to use Git config to
|
"Flag which, when set to @samp{#f}, will allow cgit to use Git config to
|
||||||
set any repo specific settings.")
|
set any repo specific settings.")
|
||||||
(favicon
|
(favicon
|
||||||
(string "/favicon.ico")
|
(file-object "/favicon.ico")
|
||||||
"URL used as link to a shortcut icon for cgit.")
|
"URL used as link to a shortcut icon for cgit.")
|
||||||
(footer
|
(footer
|
||||||
(string "")
|
(string "")
|
||||||
|
@ -451,7 +465,7 @@ verbatim in the HTML HEAD section on all pages.")
|
||||||
"The content of the file specified with this option will be included
|
"The content of the file specified with this option will be included
|
||||||
verbatim at the top of all pages.")
|
verbatim at the top of all pages.")
|
||||||
(include
|
(include
|
||||||
(string "")
|
(file-object "")
|
||||||
"Name of a configfile to include before the rest of the current config-
|
"Name of a configfile to include before the rest of the current config-
|
||||||
file is parsed.")
|
file is parsed.")
|
||||||
(index-header
|
(index-header
|
||||||
|
@ -467,14 +481,14 @@ verbatim below the heading on the repository index page.")
|
||||||
"Flag which, if set to @samp{#t}, makes cgit print commit and tag times
|
"Flag which, if set to @samp{#t}, makes cgit print commit and tag times
|
||||||
in the servers timezone.")
|
in the servers timezone.")
|
||||||
(logo
|
(logo
|
||||||
(string "/share/cgit/cgit.png")
|
(file-object "/share/cgit/cgit.png")
|
||||||
"URL which specifies the source of an image which will be used as a logo
|
"URL which specifies the source of an image which will be used as a logo
|
||||||
on all cgit pages.")
|
on all cgit pages.")
|
||||||
(logo-link
|
(logo-link
|
||||||
(string "")
|
(string "")
|
||||||
"URL loaded when clicking on the cgit logo image.")
|
"URL loaded when clicking on the cgit logo image.")
|
||||||
(owner-filter
|
(owner-filter
|
||||||
(string "")
|
(file-object "")
|
||||||
"Command which will be invoked to format the Owner column of the main
|
"Command which will be invoked to format the Owner column of the main
|
||||||
page.")
|
page.")
|
||||||
(max-atom-items
|
(max-atom-items
|
||||||
|
@ -511,7 +525,7 @@ on the repository index page.")
|
||||||
(svg "image/svg+xml")))
|
(svg "image/svg+xml")))
|
||||||
"Mimetype for the specified filename extension.")
|
"Mimetype for the specified filename extension.")
|
||||||
(mimetype-file
|
(mimetype-file
|
||||||
(string "")
|
(file-object "")
|
||||||
"Specifies the file to use for automatic mimetype lookup.")
|
"Specifies the file to use for automatic mimetype lookup.")
|
||||||
(module-link
|
(module-link
|
||||||
(string "")
|
(string "")
|
||||||
|
@ -528,15 +542,13 @@ disabled.")
|
||||||
(boolean #f)
|
(boolean #f)
|
||||||
"Flag which, when set to @samp{#t}, will make cgit omit the standard
|
"Flag which, when set to @samp{#t}, will make cgit omit the standard
|
||||||
header on all pages.")
|
header on all pages.")
|
||||||
;; TODO: cgit expects a file name
|
(project-list
|
||||||
;; that should be created from a list of strings provided by the user.
|
(list '())
|
||||||
;;
|
"A list of subdirectories inside of @code{repository-directory}, relative
|
||||||
;; (project-list
|
to it, that should loaded as Git repositories. An empty list means that all
|
||||||
;; (string "")
|
subdirectories will be loaded.")
|
||||||
;; "A list of subdirectories inside of @code{repository-directory},
|
|
||||||
;; relative to it, that should loaded as Git repositories.")
|
|
||||||
(readme
|
(readme
|
||||||
(string "")
|
(file-object "")
|
||||||
"Text which will be used as default value for @code{cgit-repo-readme}.")
|
"Text which will be used as default value for @code{cgit-repo-readme}.")
|
||||||
(remove-suffix?
|
(remove-suffix?
|
||||||
(boolean #f)
|
(boolean #f)
|
||||||
|
@ -594,7 +606,7 @@ many path elements from each repo path to use as a default section name.")
|
||||||
"If set to @samp{#t} shows side-by-side diffs instead of unidiffs per
|
"If set to @samp{#t} shows side-by-side diffs instead of unidiffs per
|
||||||
default.")
|
default.")
|
||||||
(source-filter
|
(source-filter
|
||||||
(string "")
|
(file-object "")
|
||||||
"Specifies a command which will be invoked to format plaintext blobs in the
|
"Specifies a command which will be invoked to format plaintext blobs in the
|
||||||
tree view.")
|
tree view.")
|
||||||
(summary-branches
|
(summary-branches
|
||||||
|
@ -623,6 +635,27 @@ for cgit to allow access to that repository.")
|
||||||
(list '())
|
(list '())
|
||||||
"Extra options will be appended to cgitrc file."))
|
"Extra options will be appended to cgitrc file."))
|
||||||
|
|
||||||
|
;; This distinguishes fields whose order matters, and makes sure further
|
||||||
|
;; changes won't inadvertently change the order.
|
||||||
|
(define (serialize-cgit-configuration config)
|
||||||
|
(define (rest? field)
|
||||||
|
(not (memq (configuration-field-name field)
|
||||||
|
'(project-list
|
||||||
|
repository-directory
|
||||||
|
repositories))))
|
||||||
|
#~(string-append
|
||||||
|
#$(let ((rest (filter rest? cgit-configuration-fields)))
|
||||||
|
(serialize-configuration config rest))
|
||||||
|
#$(serialize-project-list
|
||||||
|
'project-list
|
||||||
|
(cgit-configuration-project-list config))
|
||||||
|
#$(serialize-repository-directory
|
||||||
|
'repository-directory
|
||||||
|
(cgit-configuration-repository-directory config))
|
||||||
|
#$(serialize-repository-cgit-configuration-list
|
||||||
|
'repositories
|
||||||
|
(cgit-configuration-repositories config))))
|
||||||
|
|
||||||
(define-configuration opaque-cgit-configuration
|
(define-configuration opaque-cgit-configuration
|
||||||
(cgit
|
(cgit
|
||||||
(package cgit)
|
(package cgit)
|
||||||
|
@ -643,16 +676,14 @@ for cgit to allow access to that repository.")
|
||||||
(config-str
|
(config-str
|
||||||
(if opaque-config?
|
(if opaque-config?
|
||||||
(opaque-cgit-configuration-cgitrc config)
|
(opaque-cgit-configuration-cgitrc config)
|
||||||
(with-output-to-string
|
(serialize-cgit-configuration config))))
|
||||||
(lambda ()
|
|
||||||
(serialize-configuration config
|
|
||||||
cgit-configuration-fields))))))
|
|
||||||
#~(begin
|
#~(begin
|
||||||
(use-modules (guix build utils))
|
(use-modules (guix build utils))
|
||||||
(mkdir-p #$(if opaque-config?
|
(mkdir-p #$(if opaque-config?
|
||||||
(opaque-cgit-configuration-cache-root config)
|
(opaque-cgit-configuration-cache-root config)
|
||||||
(cgit-configuration-cache-root config)))
|
(cgit-configuration-cache-root config)))
|
||||||
(copy-file #$(plain-file "cgitrc" config-str) "/etc/cgitrc"))))
|
(copy-file #$(mixed-text-file "cgitrc" config-str)
|
||||||
|
"/etc/cgitrc"))))
|
||||||
|
|
||||||
(define (cgit-configuration-nginx-config config)
|
(define (cgit-configuration-nginx-config config)
|
||||||
(if (opaque-cgit-configuration? config)
|
(if (opaque-cgit-configuration? config)
|
||||||
|
|
|
@ -406,23 +406,24 @@ This is the declarative counterpart of 'gexp->script'."
|
||||||
#:guile (or guile (default-guile))))))
|
#:guile (or guile (default-guile))))))
|
||||||
|
|
||||||
(define-record-type <scheme-file>
|
(define-record-type <scheme-file>
|
||||||
(%scheme-file name gexp)
|
(%scheme-file name gexp splice?)
|
||||||
scheme-file?
|
scheme-file?
|
||||||
(name scheme-file-name) ;string
|
(name scheme-file-name) ;string
|
||||||
(gexp scheme-file-gexp)) ;gexp
|
(gexp scheme-file-gexp) ;gexp
|
||||||
|
(splice? scheme-file-splice?)) ;Boolean
|
||||||
|
|
||||||
(define* (scheme-file name gexp)
|
(define* (scheme-file name gexp #:key splice?)
|
||||||
"Return an object representing the Scheme file NAME that contains GEXP.
|
"Return an object representing the Scheme file NAME that contains GEXP.
|
||||||
|
|
||||||
This is the declarative counterpart of 'gexp->file'."
|
This is the declarative counterpart of 'gexp->file'."
|
||||||
(%scheme-file name gexp))
|
(%scheme-file name gexp splice?))
|
||||||
|
|
||||||
(define-gexp-compiler (scheme-file-compiler (file <scheme-file>)
|
(define-gexp-compiler (scheme-file-compiler (file <scheme-file>)
|
||||||
system target)
|
system target)
|
||||||
;; Compile FILE by returning a derivation that builds the file.
|
;; Compile FILE by returning a derivation that builds the file.
|
||||||
(match file
|
(match file
|
||||||
(($ <scheme-file> name gexp)
|
(($ <scheme-file> name gexp splice?)
|
||||||
(gexp->file name gexp))))
|
(gexp->file name gexp #:splice? splice?))))
|
||||||
|
|
||||||
;; Appending SUFFIX to BASE's output file name.
|
;; Appending SUFFIX to BASE's output file name.
|
||||||
(define-record-type <file-append>
|
(define-record-type <file-append>
|
||||||
|
@ -1170,18 +1171,26 @@ imported modules in its search path. Look up EXP's modules in MODULE-PATH."
|
||||||
|
|
||||||
(define* (gexp->file name exp #:key
|
(define* (gexp->file name exp #:key
|
||||||
(set-load-path? #t)
|
(set-load-path? #t)
|
||||||
(module-path %load-path))
|
(module-path %load-path)
|
||||||
"Return a derivation that builds a file NAME containing EXP. When
|
(splice? #f))
|
||||||
SET-LOAD-PATH? is true, emit code in the resulting file to set '%load-path'
|
"Return a derivation that builds a file NAME containing EXP. When SPLICE?
|
||||||
and '%load-compiled-path' to honor EXP's imported modules. Lookup EXP's
|
is true, EXP is considered to be a list of expressions that will be spliced in
|
||||||
modules in MODULE-PATH."
|
the resulting file.
|
||||||
|
|
||||||
|
When SET-LOAD-PATH? is true, emit code in the resulting file to set
|
||||||
|
'%load-path' and '%load-compiled-path' to honor EXP's imported modules.
|
||||||
|
Lookup EXP's modules in MODULE-PATH."
|
||||||
(match (if set-load-path? (gexp-modules exp) '())
|
(match (if set-load-path? (gexp-modules exp) '())
|
||||||
(() ;zero modules
|
(() ;zero modules
|
||||||
(gexp->derivation name
|
(gexp->derivation name
|
||||||
(gexp
|
(gexp
|
||||||
(call-with-output-file (ungexp output)
|
(call-with-output-file (ungexp output)
|
||||||
(lambda (port)
|
(lambda (port)
|
||||||
(write '(ungexp exp) port))))
|
(for-each (lambda (exp)
|
||||||
|
(write exp port))
|
||||||
|
'(ungexp (if splice?
|
||||||
|
exp
|
||||||
|
(gexp ((ungexp exp)))))))))
|
||||||
#:local-build? #t
|
#:local-build? #t
|
||||||
#:substitutable? #f))
|
#:substitutable? #f))
|
||||||
((modules ...)
|
((modules ...)
|
||||||
|
@ -1192,7 +1201,11 @@ modules in MODULE-PATH."
|
||||||
(call-with-output-file (ungexp output)
|
(call-with-output-file (ungexp output)
|
||||||
(lambda (port)
|
(lambda (port)
|
||||||
(write '(ungexp set-load-path) port)
|
(write '(ungexp set-load-path) port)
|
||||||
(write '(ungexp exp) port))))
|
(for-each (lambda (exp)
|
||||||
|
(write exp port))
|
||||||
|
'(ungexp (if splice?
|
||||||
|
exp
|
||||||
|
(gexp ((ungexp exp)))))))))
|
||||||
#:module-path module-path
|
#:module-path module-path
|
||||||
#:local-build? #t
|
#:local-build? #t
|
||||||
#:substitutable? #f)))))
|
#:substitutable? #f)))))
|
||||||
|
|
|
@ -69,7 +69,7 @@ GUILE-VERSION (\"2.0\" or \"2.2\"), or #f if none of the packages matches."
|
||||||
(#f
|
(#f
|
||||||
(loop rest))
|
(loop rest))
|
||||||
((? package? package)
|
((? package? package)
|
||||||
(or (false-if-wrong-guile package)
|
(or (false-if-wrong-guile package guile-version)
|
||||||
(loop rest))))))))
|
(loop rest))))))))
|
||||||
|
|
||||||
(define specification->package
|
(define specification->package
|
||||||
|
@ -88,7 +88,11 @@ GUILE-VERSION (\"2.0\" or \"2.2\"), or #f if none of the packages matches."
|
||||||
("bzip2" (ref '(gnu packages compression) 'bzip2))
|
("bzip2" (ref '(gnu packages compression) 'bzip2))
|
||||||
("xz" (ref '(gnu packages compression) 'xz))
|
("xz" (ref '(gnu packages compression) 'xz))
|
||||||
("guix" (ref '(gnu packages package-management)
|
("guix" (ref '(gnu packages package-management)
|
||||||
'guix-register)))))
|
'guix-register))
|
||||||
|
("guile2.0-json" (ref '(gnu packages guile) 'guile2.0-json))
|
||||||
|
("guile2.0-ssh" (ref '(gnu packages ssh) 'guile2.0-ssh))
|
||||||
|
("guile2.0-git" (ref '(gnu packages guile) 'guile2.0-git))
|
||||||
|
(_ #f)))) ;no such package
|
||||||
|
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
|
@ -199,13 +203,11 @@ list of file-name/file-like objects suitable as inputs to 'imported-files'."
|
||||||
(define guile-json
|
(define guile-json
|
||||||
(package-for-guile guile-version
|
(package-for-guile guile-version
|
||||||
"guile-json"
|
"guile-json"
|
||||||
"guile2.2-json"
|
|
||||||
"guile2.0-json"))
|
"guile2.0-json"))
|
||||||
|
|
||||||
(define guile-ssh
|
(define guile-ssh
|
||||||
(package-for-guile guile-version
|
(package-for-guile guile-version
|
||||||
"guile-ssh"
|
"guile-ssh"
|
||||||
"guile2.2-ssh"
|
|
||||||
"guile2.0-ssh"))
|
"guile2.0-ssh"))
|
||||||
|
|
||||||
(define guile-git
|
(define guile-git
|
||||||
|
@ -382,13 +384,14 @@ list of file-name/file-like objects suitable as inputs to 'imported-files'."
|
||||||
(define defmod 'define-module)
|
(define defmod 'define-module)
|
||||||
|
|
||||||
(scheme-file "config.scm"
|
(scheme-file "config.scm"
|
||||||
#~(begin
|
#~(;; The following expressions get spliced.
|
||||||
(#$defmod (guix config)
|
(#$defmod (guix config)
|
||||||
#:export (%guix-package-name
|
#:export (%guix-package-name
|
||||||
%guix-version
|
%guix-version
|
||||||
%guix-bug-report-address
|
%guix-bug-report-address
|
||||||
%guix-home-page-url
|
%guix-home-page-url
|
||||||
%sbindir
|
%sbindir
|
||||||
|
%guix-register-program
|
||||||
%libgcrypt
|
%libgcrypt
|
||||||
%libz
|
%libz
|
||||||
%gzip
|
%gzip
|
||||||
|
@ -396,45 +399,48 @@ list of file-name/file-like objects suitable as inputs to 'imported-files'."
|
||||||
%xz
|
%xz
|
||||||
%nix-instantiate))
|
%nix-instantiate))
|
||||||
|
|
||||||
;; XXX: Work around <http://bugs.gnu.org/15602>.
|
#$@(map (match-lambda
|
||||||
(eval-when (expand load eval)
|
((name . value)
|
||||||
#$@(map (match-lambda
|
#~(define-public #$name #$value)))
|
||||||
((name . value)
|
%config-variables)
|
||||||
#~(define-public #$name #$value)))
|
|
||||||
%config-variables)
|
|
||||||
|
|
||||||
(define %guix-package-name #$package-name)
|
(define %guix-package-name #$package-name)
|
||||||
(define %guix-version #$package-version)
|
(define %guix-version #$package-version)
|
||||||
(define %guix-bug-report-address #$bug-report-address)
|
(define %guix-bug-report-address #$bug-report-address)
|
||||||
(define %guix-home-page-url #$home-page-url)
|
(define %guix-home-page-url #$home-page-url)
|
||||||
|
|
||||||
(define %sbindir
|
(define %sbindir
|
||||||
;; This is used to define '%guix-register-program'.
|
;; This is used to define '%guix-register-program'.
|
||||||
;; TODO: Use a derivation that builds nothing but the
|
;; TODO: Use a derivation that builds nothing but the
|
||||||
;; C++ part.
|
;; C++ part.
|
||||||
#+(and guix (file-append guix "/sbin")))
|
#+(and guix (file-append guix "/sbin")))
|
||||||
|
|
||||||
(define %guix-register-program
|
(define %guix-register-program
|
||||||
(or (getenv "GUIX_REGISTER")
|
(or (getenv "GUIX_REGISTER")
|
||||||
(and %sbindir
|
(and %sbindir
|
||||||
(string-append %sbindir "/guix-register"))))
|
(string-append %sbindir "/guix-register"))))
|
||||||
|
|
||||||
(define %gzip
|
(define %gzip
|
||||||
#+(and gzip (file-append gzip "/bin/gzip")))
|
#+(and gzip (file-append gzip "/bin/gzip")))
|
||||||
(define %bzip2
|
(define %bzip2
|
||||||
#+(and bzip2 (file-append bzip2 "/bin/bzip2")))
|
#+(and bzip2 (file-append bzip2 "/bin/bzip2")))
|
||||||
(define %xz
|
(define %xz
|
||||||
#+(and xz (file-append xz "/bin/xz")))
|
#+(and xz (file-append xz "/bin/xz")))
|
||||||
|
|
||||||
(define %libgcrypt
|
(define %libgcrypt
|
||||||
#+(and libgcrypt
|
#+(and libgcrypt
|
||||||
(file-append libgcrypt "/lib/libgcrypt")))
|
(file-append libgcrypt "/lib/libgcrypt")))
|
||||||
(define %libz
|
(define %libz
|
||||||
#+(and zlib
|
#+(and zlib
|
||||||
(file-append zlib "/lib/libz")))
|
(file-append zlib "/lib/libz")))
|
||||||
|
|
||||||
(define %nix-instantiate ;for (guix import snix)
|
(define %nix-instantiate ;for (guix import snix)
|
||||||
"nix-instantiate")))))
|
"nix-instantiate"))
|
||||||
|
|
||||||
|
;; Guile 2.0 *requires* the 'define-module' to be at the
|
||||||
|
;; top-level or it 'toplevel-ref' in the resulting .go file are
|
||||||
|
;; made relative to a nonexistent anonymous module.
|
||||||
|
#:splice? #t))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -463,7 +469,10 @@ list of file-name/file-like objects suitable as inputs to 'imported-files'."
|
||||||
(copy-file store-path final-path)))
|
(copy-file store-path final-path)))
|
||||||
'#$files))))
|
'#$files))))
|
||||||
|
|
||||||
(computed-file name build))
|
;; We're just copying files around, no need to substitute or offload it.
|
||||||
|
(computed-file name build
|
||||||
|
#:options '(#:local-build? #t
|
||||||
|
#:substitutable? #f)))
|
||||||
|
|
||||||
(define* (compiled-modules name module-tree modules
|
(define* (compiled-modules name module-tree modules
|
||||||
#:optional
|
#:optional
|
||||||
|
@ -540,7 +549,8 @@ list of file-name/file-like objects suitable as inputs to 'imported-files'."
|
||||||
|
|
||||||
(mkdir #$output)
|
(mkdir #$output)
|
||||||
(chdir #+module-tree)
|
(chdir #+module-tree)
|
||||||
(process-directory "." #$output))))
|
(process-directory "." #$output)
|
||||||
|
(newline))))
|
||||||
|
|
||||||
(computed-file name build
|
(computed-file name build
|
||||||
#:guile guile-for-build
|
#:guile guile-for-build
|
||||||
|
@ -572,7 +582,8 @@ running Guile."
|
||||||
(canonical-package (module-ref (resolve-interface '(gnu packages guile))
|
(canonical-package (module-ref (resolve-interface '(gnu packages guile))
|
||||||
'guile-2.2/fixed)))
|
'guile-2.2/fixed)))
|
||||||
("2.0"
|
("2.0"
|
||||||
(canonical-package (specification->package "guile@2.0")))))
|
(module-ref (resolve-interface '(gnu packages guile))
|
||||||
|
'guile-2.0))))
|
||||||
|
|
||||||
(define* (guix-derivation source version
|
(define* (guix-derivation source version
|
||||||
#:optional (guile-version (effective-version)))
|
#:optional (guile-version (effective-version)))
|
||||||
|
|
|
@ -5,6 +5,7 @@ de
|
||||||
en@boldquot
|
en@boldquot
|
||||||
en@quot
|
en@quot
|
||||||
eo
|
eo
|
||||||
|
es
|
||||||
fr
|
fr
|
||||||
hu
|
hu
|
||||||
pl
|
pl
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -419,6 +419,24 @@
|
||||||
(call-with-input-file out read))
|
(call-with-input-file out read))
|
||||||
(equal? (list guile) refs)))))
|
(equal? (list guile) refs)))))
|
||||||
|
|
||||||
|
(test-assertm "gexp->file + #:splice?"
|
||||||
|
(mlet* %store-monad ((exp -> (list
|
||||||
|
#~(define foo 'bar)
|
||||||
|
#~(define guile #$%bootstrap-guile)))
|
||||||
|
(guile (package-file %bootstrap-guile))
|
||||||
|
(drv (gexp->file "splice" exp #:splice? #t))
|
||||||
|
(out -> (derivation->output-path drv))
|
||||||
|
(done (built-derivations (list drv)))
|
||||||
|
(refs (references* out)))
|
||||||
|
(pk 'splice out)
|
||||||
|
(return (and (equal? `((define foo 'bar)
|
||||||
|
(define guile ,guile)
|
||||||
|
,(call-with-input-string "" read))
|
||||||
|
(call-with-input-file out
|
||||||
|
(lambda (port)
|
||||||
|
(list (read port) (read port) (read port)))))
|
||||||
|
(equal? (list guile) refs)))))
|
||||||
|
|
||||||
(test-assertm "gexp->derivation"
|
(test-assertm "gexp->derivation"
|
||||||
(mlet* %store-monad ((file (text-file "foo" "Hello, world!"))
|
(mlet* %store-monad ((file (text-file "foo" "Hello, world!"))
|
||||||
(exp -> (gexp
|
(exp -> (gexp
|
||||||
|
@ -700,11 +718,12 @@
|
||||||
|
|
||||||
(test-assertm "gexp->derivation & with-imported-module & computed module"
|
(test-assertm "gexp->derivation & with-imported-module & computed module"
|
||||||
(mlet* %store-monad
|
(mlet* %store-monad
|
||||||
((module -> (scheme-file "x" #~(begin
|
((module -> (scheme-file "x" #~(;; splice!
|
||||||
(define-module (foo bar)
|
(define-module (foo bar)
|
||||||
#:export (the-answer))
|
#:export (the-answer))
|
||||||
|
|
||||||
(define the-answer 42))))
|
(define the-answer 42))
|
||||||
|
#:splice? #t))
|
||||||
(build -> (with-imported-modules `(((foo bar) => ,module)
|
(build -> (with-imported-modules `(((foo bar) => ,module)
|
||||||
(guix build utils))
|
(guix build utils))
|
||||||
#~(begin
|
#~(begin
|
||||||
|
|
Loading…
Reference in New Issue