maybe chmod 0640 './audit/audit.rules.stop.post'
maybe chmod 0640 './audit/audit.rules.stop.pre'
maybe chmod 0640 './audit/auditd.conf'
-maybe chmod 0644 './auto.master'
-maybe chmod 0644 './auto.misc'
-maybe chmod 0755 './auto.net'
-maybe chmod 0755 './auto.smb'
maybe chmod 0755 './autofs'
maybe chmod 0644 './autofs/auto.master'
-maybe chmod 0600 './autofs_ldap_auth.conf'
+maybe chmod 0644 './autofs/auto.misc'
+maybe chmod 0755 './autofs/auto.net'
+maybe chmod 0755 './autofs/auto.smb'
+maybe chmod 0600 './autofs/autofs_ldap_auth.conf'
maybe chmod 0755 './avahi'
maybe chmod 0755 './avahi/avahi-autoipd.action'
maybe chmod 0644 './avahi/avahi-daemon.conf'
maybe chmod 0644 './config-archive/etc/pulse/system.pa.dist'
maybe chmod 0644 './config-archive/etc/rc.conf'
maybe chmod 0644 './config-archive/etc/rc.conf.1'
+maybe chmod 0644 './config-archive/etc/rc.conf.2'
maybe chmod 0644 './config-archive/etc/rc.conf.dist'
maybe chmod 0644 './config-archive/etc/request-key.conf'
maybe chmod 0644 './config-archive/etc/request-key.conf.dist'
maybe chmod 0755 './init.d/avahi-dnsconfd'
maybe chmod 0755 './init.d/bluetooth'
maybe chmod 0755 './init.d/bootmisc'
+maybe chmod 0755 './init.d/coherence'
maybe chmod 0755 './init.d/consolefont'
maybe chmod 0755 './init.d/consolekit'
maybe chmod 0755 './init.d/courier-authlib'
maybe chmod 0644 './kernel-config/config-3.3.8-gentoo-02'
maybe chmod 0644 './kernel-config/config-3.4.9-gentoo-00'
maybe chmod 0644 './kernel-config/config-3.5.7-gentoo-00'
+maybe chmod 0644 './kernel-config/config-3.6.11-gentoo-00'
maybe chmod 0755 './kernel/postinst.d'
maybe chmod 0644 './kernel/postinst.d/.keep_sys-apps_debianutils-0'
maybe chmod 0644 './krb5.conf.example'
TERM screen.Eterm
TERM screen.rxvt
TERM screen.linux
+TERM st
+TERM st-256color
TERM terminator
TERM vt100
TERM xterm
+++ /dev/null
-#
-# Sample auto.master file
-# This is an automounter map and it has the following format
-# key [ -mount-options-separated-by-comma ] location
-# For details of the format look at autofs(5).
-#
-/misc /etc/auto.misc
-#
-# NOTE: mounts done from a hosts map will be mounted with the
-# "nosuid" and "nodev" options unless the "suid" and "dev"
-# options are explicitly given.
-#
-/net -hosts
-#
-# Include central master map if it can be found using
-# nsswitch sources.
-#
-# Note that if there are entries for /net or /misc (as
-# above) in the included master map any keys that are the
-# same will not be seen as the first read key seen takes
-# precedence.
-#
-+auto.master
+++ /dev/null
-#
-# This is an automounter map and it has the following format
-# key [ -mount-options-separated-by-comma ] location
-# Details may be found in the autofs(5) manpage
-
-cd -fstype=iso9660,ro,nosuid,nodev :/dev/cdrom
-
-# the following entries are samples to pique your imagination
-#linux -ro,soft,intr ftp.example.org:/pub/linux
-#boot -fstype=ext2 :/dev/hda1
-#floppy -fstype=auto :/dev/fd0
-#floppy -fstype=ext2 :/dev/fd0
-#e2floppy -fstype=ext2 :/dev/fd0
-#jaz -fstype=ext2 :/dev/sdc1
-#removable -fstype=ext2 :/dev/hdd
+++ /dev/null
-#!/bin/bash
-
-# This file must be executable to work! chmod 755!
-
-# Look at what a host is exporting to determine what we can mount.
-# This is very simple, but it appears to work surprisingly well
-
-key="$1"
-
-# add "nosymlink" here if you want to suppress symlinking local filesystems
-# add "nonstrict" to make it OK for some filesystems to not mount
-opts="-fstype=nfs,hard,intr,nodev,nosuid"
-
-# Showmount comes in a number of names and varieties. "showmount" is
-# typically an older version which accepts the '--no-headers' flag
-# but ignores it. "kshowmount" is the newer version installed with knfsd,
-# which both accepts and acts on the '--no-headers' flag.
-#SHOWMOUNT="kshowmount --no-headers -e $key"
-#SHOWMOUNT="showmount -e $key | tail -n +2"
-
-for P in /bin /sbin /usr/bin /usr/sbin
-do
- for M in showmount kshowmount
- do
- if [ -x $P/$M ]
- then
- SMNT=$P/$M
- break
- fi
- done
-done
-
-[ -x $SMNT ] || exit 1
-
-# Newer distributions get this right
-SHOWMOUNT="$SMNT --no-headers -e $key"
-
-$SHOWMOUNT | LC_ALL=C sort -k 1 | \
- awk -v key="$key" -v opts="$opts" -- '
- BEGIN { ORS=""; first=1 }
- { if (first) { print opts; first=0 }; print " \\\n\t" $1, key ":" $1 }
- END { if (!first) print "\n"; else exit 1 }
- ' | sed 's/#/\\#/g'
+++ /dev/null
-#!/bin/bash
-
-# This file must be executable to work! chmod 755!
-
-key="$1"
-opts="-fstype=cifs"
-
-for P in /bin /sbin /usr/bin /usr/sbin
-do
- if [ -x $P/smbclient ]
- then
- SMBCLIENT=$P/smbclient
- break
- fi
-done
-
-[ -x $SMBCLIENT ] || exit 1
-
-$SMBCLIENT -gNL $key 2>/dev/null| awk -v key="$key" -v opts="$opts" -F'|' -- '
- BEGIN { ORS=""; first=1 }
- /Disk/ {
- if (first)
- print opts; first=0
- dir = $2
- loc = $2
- # Enclose mount dir and location in quotes
- # Double quote "$" in location as it is special
- gsub(/\$$/, "\\$", loc);
- gsub(/\&/,"\\\\&",loc)
- print " \\\n\t \"/" dir "\"", "\"://" key "/" loc "\""
- }
- END { if (!first) print "\n"; else exit 1 }
- '
-
--- /dev/null
+#
+# This is an automounter map and it has the following format
+# key [ -mount-options-separated-by-comma ] location
+# Details may be found in the autofs(5) manpage
+
+cd -fstype=iso9660,ro,nosuid,nodev :/dev/cdrom
+
+# the following entries are samples to pique your imagination
+#linux -ro,soft,intr ftp.example.org:/pub/linux
+#boot -fstype=ext2 :/dev/hda1
+#floppy -fstype=auto :/dev/fd0
+#floppy -fstype=ext2 :/dev/fd0
+#e2floppy -fstype=ext2 :/dev/fd0
+#jaz -fstype=ext2 :/dev/sdc1
+#removable -fstype=ext2 :/dev/hdd
--- /dev/null
+#!/bin/bash
+
+# This file must be executable to work! chmod 755!
+
+# Look at what a host is exporting to determine what we can mount.
+# This is very simple, but it appears to work surprisingly well
+
+key="$1"
+
+# add "nosymlink" here if you want to suppress symlinking local filesystems
+# add "nonstrict" to make it OK for some filesystems to not mount
+opts="-fstype=nfs,hard,intr,nodev,nosuid"
+
+# Showmount comes in a number of names and varieties. "showmount" is
+# typically an older version which accepts the '--no-headers' flag
+# but ignores it. "kshowmount" is the newer version installed with knfsd,
+# which both accepts and acts on the '--no-headers' flag.
+#SHOWMOUNT="kshowmount --no-headers -e $key"
+#SHOWMOUNT="showmount -e $key | tail -n +2"
+
+for P in /bin /sbin /usr/bin /usr/sbin
+do
+ for M in showmount kshowmount
+ do
+ if [ -x $P/$M ]
+ then
+ SMNT=$P/$M
+ break
+ fi
+ done
+done
+
+[ -x $SMNT ] || exit 1
+
+# Newer distributions get this right
+SHOWMOUNT="$SMNT --no-headers -e $key"
+
+$SHOWMOUNT | LC_ALL=C sort -k 1 | \
+ awk -v key="$key" -v opts="$opts" -- '
+ BEGIN { ORS=""; first=1 }
+ { if (first) { print opts; first=0 }; print " \\\n\t" $1, key ":" $1 }
+ END { if (!first) print "\n"; else exit 1 }
+ ' | sed 's/#/\\#/g'
--- /dev/null
+#!/bin/bash
+
+# This file must be executable to work! chmod 755!
+
+key="$1"
+opts="-fstype=cifs"
+
+for P in /bin /sbin /usr/bin /usr/sbin
+do
+ if [ -x $P/smbclient ]
+ then
+ SMBCLIENT=$P/smbclient
+ break
+ fi
+done
+
+[ -x $SMBCLIENT ] || exit 1
+
+$SMBCLIENT -gNL $key 2>/dev/null| awk -v key="$key" -v opts="$opts" -F'|' -- '
+ BEGIN { ORS=""; first=1 }
+ /Disk/ {
+ if (first)
+ print opts; first=0
+ dir = $2
+ loc = $2
+ # Enclose mount dir and location in quotes
+ # Double quote "$" in location as it is special
+ gsub(/\$$/, "\\$", loc);
+ gsub(/\&/,"\\\\&",loc)
+ print " \\\n\t \"/" dir "\"", "\"://" key "/" loc "\""
+ }
+ END { if (!first) print "\n"; else exit 1 }
+ '
+
--- /dev/null
+<?xml version="1.0" ?>
+<!--
+This files contains a single entry with multiple attributes tied to it.
+See autofs_ldap_auth.conf(5) for more information.
+-->
+
+<autofs_ldap_sasl_conf
+ usetls="no"
+ tlsrequired="no"
+ authrequired="no"
+/>
+++ /dev/null
-<?xml version="1.0" ?>
-<!--
-This files contains a single entry with multiple attributes tied to it.
-See autofs_ldap_auth.conf(5) for more information.
--->
-
-<autofs_ldap_sasl_conf
- usetls="no"
- tlsrequired="no"
- authrequired="no"
-/>
# default=false
SearchVolumes=false
-# If we should use SANE to add scanner and camera devices.
-#
-# If this is set to 'true' then a colord-sane process will
-# automatically be started by the daemon which watches USB scanner
-# devices as they are inserted and removed.
-#
-# default=true
-UseSANE=true
-
# If we should create a dummy sensor for testing
#
# default=false
CreateDummySensor=false
# Known profiles are specific colorspaces that applications may request,
-# e.g. 'AdobeRGB' or 'sRGB'.
+# e.g. 'adobe-rgb' or 'srgb'.
# This key sets up any manual overrides that are not automatically added
# using the profile dictionary metadata.
#
# default=
-StandardSpaces=adobe-rgb:/usr/share/color/icc/Argyll/ClayRGB1998.icm;srgb:/usr/share/color/icc/Argyll/sRGB.icm;prophoto-rgb:/usr/share/color/icc/Argyll/ProPhotoRGB.icc
+StandardSpaces=
# AUTH_CONF_FILE - set the default location for the SASL
# authentication configuration file.
#
-#AUTH_CONF_FILE="/etc/autofs_ldap_auth.conf"
+#AUTH_CONF_FILE="/etc/autofs/autofs_ldap_auth.conf"
#
# MAP_HASH_TABLE_SIZE - set the map cache hash table size.
# Should be a power of 2 with a ratio roughly
# This file is obsolete.
+# This file is obsolete.
+
##############################################################################
# QUICK-START
#
-# Depending on how mounting your network file systems behaves when your
-# network interfaces are down, you may need to set the netmount script to
-# require specific network interfaces to be active. This file gives
-# examples of how to do this:
+# You will need to set the dependencies in the netmount script to match
+# the network configuration tools you are using. This should be done in
+# this file by following the examples below, and not by changing the
+# service script itself.
#
-# If you are using newnet and configuring the interface with a static
-# address with the network script:
-# rc_need="network"
+# Each of these examples is meant to be used separately. So, for
+# example, do not set rc_need to something like "net.eth0 dhcpcd".
+#
+# If you are using newnet and configuring your interfaces with static
+# addresses with the network script, you should use this setting.
+#
+#rc_need="network"
#
# If you are using oldnet, you must list the specific net.* services you
-# need:
+# need.
+#
+# This example assumes all of your netmounts can be reached on
+# eth0.
+#
+#rc_need="net.eth0"
#
-# rc_need="net.eth0"
-# rc_need="net.eth1 net.eth2"
+# This example assumes some of your netmounts are on eth1 and some
+# are on eth2.
+#
+#rc_need="net.eth1 net.eth2"
#
# If you are using a dynamic network management tool like
-# networkmanager, dhcpcd, etc, you should list that tool here.
+# networkmanager, dhcpcd in standalone mode, wicd, badvpn-ncd, etc, to
+# manage the network interfaces with the routes to your netmounts, you
+# should list that tool.
+#
+#rc_need="networkmanager"
+#rc_need="dhcpcd"
+#rc_need="wicd"
+#
+# The default setting is designed to be backward compatible with our
+# current setup, but you are highly discouraged from using this. In
+# other words, please change it to be more suited to your system.
#
-# rc_need="networkmanager"
-# rc_need="dhcpcd"
+rc_need="net"
# Global OpenRC configuration settings
+# Set to "YES" if you want the rc system to try and start services
+# in parallel for a slight speed improvement. When running in parallel we
+# prefix the service output with its name as the output will get
+# jumbled up.
+# WARNING: whilst we have improved parallel, it can still potentially lock
+# the boot process. Don't file bugs about this unless you can supply
+# patches that fix it without breaking other things!
+#rc_parallel="NO"
+
# Set rc_interactive to "YES" and you'll be able to press the I key during
# boot so you can choose to start specific services. Set to "NO" to disable
-# this feature.
+# this feature. This feature is automatically disabled if rc_parallel is
+# set to YES.
#rc_interactive="YES"
# If we need to drop to a shell, you can specify it here.
# These variables are documented here, but should be configured in
# /etc/conf.d/foo for service foo and NOT enabled here unless you
# really want them to work on a global basis.
+# If your service has characters in its name which are not legal in
+# shell variable names and you configure the variables for it in this
+# file, those characters should be replaced with underscores in the
+# variable names as shown below.
# Some daemons are started and stopped via start-stop-daemon.
# We can set some things on a per service basis, like the nicelevel.
#rc_foo_need="openvpn"
#rc_foo_after="clock"
+# Below is an example for service foo-bar. Note that the '-' is illegal
+# in a shell variable name, so we convert it to an underscore.
+# example for service foo-bar.
+#rc_foo_bar_config="/etc/foo-bar"
+#rc_foo_bar_need="openvpn"
+#rc_foo_bar_after="clock"
+
# You can also remove dependencies.
# This is mainly used for saying which servies do NOT provide net.
#rc_net_tap0_provide="!net"
# "vserver" - Linux vserver
# "xen0" - Xen0 Domain
# "xenU" - XenU Domain
-# If this is commented out, automatic detection will be attempted.
-# Note that autodetection will not work in a prefix environment or in a
-# linux container.
+# If this is commented out, automatic detection will be used.
#
# This should be set to the value representing the environment this file is
# PRESENTLY in, not the virtualization the environment is capable of.
# This is the number of tty's used in most of the rc-scripts (like
# consolefont, numlock, etc ...)
rc_tty_number=12
+
+# If you have cgroups turned on in your kernel, this switch controls
+# whether or not a group for each controler is mounted under
+# /sys/fs/cgroup.
+# Support for process management by cgroups is planned in the future,
+# so if you turn this off, be aware that you may not be able to use that
+# feature.
+#rc_controller_cgroups="YES"
#
# This should be set to the value representing the environment this file is
# PRESENTLY in, not the virtualization the environment is capable of.
-rc_sys=""
+#rc_sys=""
# This is the number of tty's used in most of the rc-scripts (like
# consolefont, numlock, etc ...)
--- /dev/null
+# Global OpenRC configuration settings
+
+# Set rc_interactive to "YES" and you'll be able to press the I key during
+# boot so you can choose to start specific services. Set to "NO" to disable
+# this feature.
+#rc_interactive="YES"
+
+# If we need to drop to a shell, you can specify it here.
+# If not specified we use $SHELL, otherwise the one specified in /etc/passwd,
+# otherwise /bin/sh
+# Linux users could specify /sbin/sulogin
+rc_shell=/sbin/sulogin
+
+# Do we allow any started service in the runlevel to satisfy the dependency
+# or do we want all of them regardless of state? For example, if net.eth0
+# and net.eth1 are in the default runlevel then with rc_depend_strict="NO"
+# both will be started, but services that depend on 'net' will work if either
+# one comes up. With rc_depend_strict="YES" we would require them both to
+# come up.
+#rc_depend_strict="YES"
+
+# rc_hotplug is a list of services that we allow to be hotplugged.
+# By default we do not allow hotplugging.
+# A hotplugged service is one started by a dynamic dev manager when a matching
+# hardware device is found.
+# This service is intrinsically included in the boot runlevel.
+# To disable services, prefix with a !
+# Example - rc_hotplug="net.wlan !net.*"
+# This allows net.wlan and any service not matching net.* to be plugged.
+# Example - rc_hotplug="*"
+# This allows all services to be hotplugged
+#rc_hotplug="*"
+
+# rc_logger launches a logging daemon to log the entire rc process to
+# /var/log/rc.log
+# NOTE: Linux systems require the devfs service to be started before
+# logging can take place and as such cannot log the sysinit runlevel.
+rc_logger="YES"
+
+# Through rc_log_path you can specify a custom log file.
+# The default value is: /var/log/rc.log
+rc_log_path="/var/log/rc.log"
+
+# By default we filter the environment for our running scripts. To allow other
+# variables through, add them here. Use a * to allow all variables through.
+#rc_env_allow="VAR1 VAR2"
+
+# By default we assume that all daemons will start correctly.
+# However, some do not - a classic example is that they fork and return 0 AND
+# then child barfs on a configuration error. Or the daemon has a bug and the
+# child crashes. You can set the number of milliseconds start-stop-daemon
+# waits to check that the daemon is still running after starting here.
+# The default is 0 - no checking.
+#rc_start_wait=100
+
+# rc_nostop is a list of services which will not stop when changing runlevels.
+# This still allows the service itself to be stopped when called directly.
+#rc_nostop=""
+
+# rc will attempt to start crashed services by default.
+# However, it will not stop them by default as that could bring down other
+# critical services.
+#rc_crashed_stop=NO
+#rc_crashed_start=YES
+
+##############################################################################
+# MISC CONFIGURATION VARIABLES
+# There variables are shared between many init scripts
+
+# Set unicode to YES to turn on unicode support for keyboards and screens.
+unicode="YES"
+
+# Below is the default list of network fstypes.
+#
+# afs cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre ncpfs
+# nfs nfs4 ocfs2 shfs smbfs
+#
+# If you would like to add to this list, you can do so by adding your
+# own fstypes to the following variable.
+#extra_net_fs_list=""
+
+##############################################################################
+# SERVICE CONFIGURATION VARIABLES
+# These variables are documented here, but should be configured in
+# /etc/conf.d/foo for service foo and NOT enabled here unless you
+# really want them to work on a global basis.
+
+# Some daemons are started and stopped via start-stop-daemon.
+# We can set some things on a per service basis, like the nicelevel.
+#export SSD_NICELEVEL="-19"
+
+# Pass ulimit parameters
+#rc_ulimit="-u 30"
+
+# It's possible to define extra dependencies for services like so
+#rc_config="/etc/foo"
+#rc_need="openvpn"
+#rc_use="net.eth0"
+#rc_after="clock"
+#rc_before="local"
+#rc_provide="!net"
+
+# You can also enable the above commands here for each service. Below is an
+# example for service foo.
+#rc_foo_config="/etc/foo"
+#rc_foo_need="openvpn"
+#rc_foo_after="clock"
+
+# You can also remove dependencies.
+# This is mainly used for saying which servies do NOT provide net.
+#rc_net_tap0_provide="!net"
+
+##############################################################################
+# LINUX SPECIFIC OPTIONS
+
+# This is the subsystem type. Valid options on Linux:
+# "" - nothing special
+# "lxc" - Linux Containers
+# "openvz" - Linux OpenVZ
+# "prefix" - Prefix
+# "uml" - Usermode Linux
+# "vserver" - Linux vserver
+# "xen0" - Xen0 Domain
+# "xenU" - XenU Domain
+# If this is commented out, automatic detection will be attempted.
+# Note that autodetection will not work in a prefix environment or in a
+# linux container.
+#
+# This should be set to the value representing the environment this file is
+# PRESENTLY in, not the virtualization the environment is capable of.
+rc_sys=""
+
+# This is the number of tty's used in most of the rc-scripts (like
+# consolefont, numlock, etc ...)
+rc_tty_number=12
rc_tty_number=12
# If you have cgroups turned on in your kernel, this switch controls
-# whether or not a group for each controler is mounted under
+# whether or not a group for each controller is mounted under
# /sys/fs/cgroup.
# Support for process management by cgroups is planned in the future,
# so if you turn this off, be aware that you may not be able to use that
setenv ANT_HOME '/usr/share/ant'
setenv CONFIG_PROTECT '/usr/share/gnupg/qualified.txt /var/lib/hsqldb /usr/share/config /usr/share/openvpn/easy-rsa'
-setenv CONFIG_PROTECT_MASK '/etc/gentoo-release /etc/sandbox.d /etc/env.d/java/ /etc/php/cli-php5.4/ext-active/ /etc/php/cgi-php5.4/ext-active/ /etc/php/apache2-php5.4/ext-active/ /etc/fonts/fonts.conf /etc/gconf /etc/terminfo /etc/dconf /etc/ca-certificates.conf /etc/texmf/web2c /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/revdep-rebuild'
+setenv CONFIG_PROTECT_MASK '/etc/gentoo-release /etc/sandbox.d /etc/env.d/java/ /etc/php/cli-php5.4/ext-active/ /etc/php/cgi-php5.4/ext-active/ /etc/php/apache2-php5.4/ext-active/ /etc/fonts/fonts.conf ${EPREFIX}/etc/gconf /etc/terminfo /etc/dconf /etc/ca-certificates.conf /etc/texmf/web2c /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/revdep-rebuild'
setenv EDITOR '/usr/bin/vi'
setenv FLTK_DOCDIR '/usr/share/doc/fltk-1.3.0-r1/html'
setenv GCC_SPECS ''
-CONFIG_PROTECT_MASK="/etc/gconf"
+CONFIG_PROTECT_MASK="${EPREFIX}/etc/gconf"
GSETTINGS_BACKEND="gconf"
</entry>
<entry name="subtitle_encoding">
<local_schema short_desc="Untertitelkodierung">
+ <longdesc>Zeichenkodierung für Untertitel</longdesc>
</local_schema>
</entry>
<entry name="subtitle_font">
</entry>
<entry name="subtitle_encoding">
<local_schema short_desc="Subtitle encoding">
+ <longdesc>Encoding charset for subtitle</longdesc>
</local_schema>
</entry>
<entry name="subtitle_font">
</entry>
<entry name="subtitle_encoding">
<local_schema short_desc="Кодировка субтитров">
+ <longdesc>Кодировка символов для субтитров</longdesc>
</local_schema>
</entry>
<entry name="subtitle_font">
<gconf>
<dir name="apps">
<dir name="virt-manager">
- <entry name="manager_window_width" mtime="1350986635" schema="/schemas/apps/virt-manager/manager_window_width"/>
- <entry name="manager_window_height" mtime="1350986635" schema="/schemas/apps/virt-manager/manager_window_height"/>
- <entry name="system-tray" mtime="1350986635" schema="/schemas/apps/virt-manager/system-tray"/>
+ <entry name="manager_window_width" mtime="1357376645" schema="/schemas/apps/virt-manager/manager_window_width"/>
+ <entry name="manager_window_height" mtime="1357376645" schema="/schemas/apps/virt-manager/manager_window_height"/>
+ <entry name="system-tray" mtime="1357376645" schema="/schemas/apps/virt-manager/system-tray"/>
<dir name="confirm">
- <entry name="unapplied_dev" mtime="1350986635" schema="/schemas/apps/virt-manager/confirm/unapplied_dev"/>
- <entry name="interface_power" mtime="1350986635" schema="/schemas/apps/virt-manager/confirm/interface_power"/>
- <entry name="removedev" mtime="1350986635" schema="/schemas/apps/virt-manager/confirm/removedev"/>
- <entry name="pause" mtime="1350986635" schema="/schemas/apps/virt-manager/confirm/pause"/>
- <entry name="poweroff" mtime="1350986635" schema="/schemas/apps/virt-manager/confirm/poweroff"/>
- <entry name="forcepoweroff" mtime="1350986635" schema="/schemas/apps/virt-manager/confirm/forcepoweroff"/>
+ <entry name="unapplied_dev" mtime="1357376645" schema="/schemas/apps/virt-manager/confirm/unapplied_dev"/>
+ <entry name="interface_power" mtime="1357376645" schema="/schemas/apps/virt-manager/confirm/interface_power"/>
+ <entry name="removedev" mtime="1357376645" schema="/schemas/apps/virt-manager/confirm/removedev"/>
+ <entry name="pause" mtime="1357376645" schema="/schemas/apps/virt-manager/confirm/pause"/>
+ <entry name="poweroff" mtime="1357376645" schema="/schemas/apps/virt-manager/confirm/poweroff"/>
+ <entry name="forcepoweroff" mtime="1357376645" schema="/schemas/apps/virt-manager/confirm/forcepoweroff"/>
</dir>
<dir name="paths">
- <entry name="default-screenshot-path" mtime="1350986635" schema="/schemas/apps/virt-manager/paths/default-screenshot-path"/>
- <entry name="default-restore-path" mtime="1350986635" schema="/schemas/apps/virt-manager/paths/default-restore-path"/>
- <entry name="default-save-path" mtime="1350986635" schema="/schemas/apps/virt-manager/paths/default-save-path"/>
- <entry name="default-media-path" mtime="1350986635" schema="/schemas/apps/virt-manager/paths/default-media-path"/>
- <entry name="default-image-path" mtime="1350986635" schema="/schemas/apps/virt-manager/paths/default-image-path"/>
+ <entry name="default-screenshot-path" mtime="1357376645" schema="/schemas/apps/virt-manager/paths/default-screenshot-path"/>
+ <entry name="default-restore-path" mtime="1357376645" schema="/schemas/apps/virt-manager/paths/default-restore-path"/>
+ <entry name="default-save-path" mtime="1357376645" schema="/schemas/apps/virt-manager/paths/default-save-path"/>
+ <entry name="default-media-path" mtime="1357376645" schema="/schemas/apps/virt-manager/paths/default-media-path"/>
+ <entry name="default-image-path" mtime="1357376645" schema="/schemas/apps/virt-manager/paths/default-image-path"/>
</dir>
<dir name="new-vm">
- <entry name="storage-format" mtime="1350986635" schema="/schemas/apps/virt-manager/new-vm/storage-format"/>
- <entry name="graphics_type" mtime="1350986635" schema="/schemas/apps/virt-manager/new-vm/graphics_type"/>
+ <entry name="storage-format" mtime="1357376645" schema="/schemas/apps/virt-manager/new-vm/storage-format"/>
+ <entry name="graphics_type" mtime="1357376645" schema="/schemas/apps/virt-manager/new-vm/graphics_type"/>
<entry name="graphics-type" mtime="1336498189" schema="/schemas/apps/virt-manager/new-vm/graphics-type"/>
- <entry name="remote-sound" mtime="1350986635" schema="/schemas/apps/virt-manager/new-vm/remote-sound"/>
- <entry name="local-sound" mtime="1350986635" schema="/schemas/apps/virt-manager/new-vm/local-sound"/>
+ <entry name="remote-sound" mtime="1357376645" schema="/schemas/apps/virt-manager/new-vm/remote-sound"/>
+ <entry name="local-sound" mtime="1357376645" schema="/schemas/apps/virt-manager/new-vm/local-sound"/>
</dir>
<dir name="details">
- <entry name="show-toolbar" mtime="1350986635" schema="/schemas/apps/virt-manager/details/show-toolbar"/>
+ <entry name="show-toolbar" mtime="1357376645" schema="/schemas/apps/virt-manager/details/show-toolbar"/>
</dir>
<dir name="console">
- <entry name="scaling" mtime="1350986635" schema="/schemas/apps/virt-manager/console/scaling"/>
- <entry name="grab-notify" mtime="1350986635" schema="/schemas/apps/virt-manager/console/grab-notify"/>
- <entry name="enable-accels" mtime="1350986635" schema="/schemas/apps/virt-manager/console/enable-accels"/>
+ <entry name="scaling" mtime="1357376645" schema="/schemas/apps/virt-manager/console/scaling"/>
+ <entry name="grab-notify" mtime="1357376645" schema="/schemas/apps/virt-manager/console/grab-notify"/>
+ <entry name="enable-accels" mtime="1357376645" schema="/schemas/apps/virt-manager/console/enable-accels"/>
</dir>
<dir name="urls">
- <entry name="url-list-length" mtime="1350986635" schema="/schemas/apps/virt-manager/urls/url-list-length"/>
+ <entry name="url-list-length" mtime="1357376645" schema="/schemas/apps/virt-manager/urls/url-list-length"/>
</dir>
<dir name="stats">
- <entry name="enable-net-poll" mtime="1350986635" schema="/schemas/apps/virt-manager/stats/enable-net-poll"/>
- <entry name="enable-disk-poll" mtime="1350986635" schema="/schemas/apps/virt-manager/stats/enable-disk-poll"/>
- <entry name="history-length" mtime="1350986635" schema="/schemas/apps/virt-manager/stats/history-length"/>
- <entry name="update-interval" mtime="1350986635" schema="/schemas/apps/virt-manager/stats/update-interval"/>
+ <entry name="enable-net-poll" mtime="1357376645" schema="/schemas/apps/virt-manager/stats/enable-net-poll"/>
+ <entry name="enable-disk-poll" mtime="1357376645" schema="/schemas/apps/virt-manager/stats/enable-disk-poll"/>
+ <entry name="history-length" mtime="1357376645" schema="/schemas/apps/virt-manager/stats/history-length"/>
+ <entry name="update-interval" mtime="1357376645" schema="/schemas/apps/virt-manager/stats/update-interval"/>
</dir>
<dir name="vmlist-fields">
- <entry name="host_cpu_usage" mtime="1350986635" schema="/schemas/apps/virt-manager/vmlist-fields/host_cpu_usage"/>
- <entry name="cpu_usage" mtime="1350986635" schema="/schemas/apps/virt-manager/vmlist-fields/cpu_usage"/>
- <entry name="network_traffic" mtime="1350986635" schema="/schemas/apps/virt-manager/vmlist-fields/network_traffic"/>
- <entry name="disk_usage" mtime="1350986635" schema="/schemas/apps/virt-manager/vmlist-fields/disk_usage"/>
+ <entry name="host_cpu_usage" mtime="1357376645" schema="/schemas/apps/virt-manager/vmlist-fields/host_cpu_usage"/>
+ <entry name="cpu_usage" mtime="1357376645" schema="/schemas/apps/virt-manager/vmlist-fields/cpu_usage"/>
+ <entry name="network_traffic" mtime="1357376645" schema="/schemas/apps/virt-manager/vmlist-fields/network_traffic"/>
+ <entry name="disk_usage" mtime="1357376645" schema="/schemas/apps/virt-manager/vmlist-fields/disk_usage"/>
</dir>
</dir>
<dir name="gitg">
<entry name="device" mtime="1329423013" schema="/schemas/apps/sound-juicer/device"/>
</dir>
<dir name="totem">
- <entry name="remember_position" mtime="1331570244" schema="/schemas/apps/totem/remember_position"/>
- <entry name="autoload_chapters" mtime="1331570244" schema="/schemas/apps/totem/autoload_chapters"/>
- <entry name="autoload_subtitles" mtime="1331570244" schema="/schemas/apps/totem/autoload_subtitles"/>
- <entry name="disable_keyboard_shortcuts" mtime="1331570244" schema="/schemas/apps/disable_keyboard_shortcuts"/>
- <entry name="disable_user_plugins" mtime="1331570244" schema="/schemas/apps/totem/disable_user_plugins"/>
- <entry name="screenshot_save_path" mtime="1331570244" schema="/schemas/apps/totem/screenshot_save_path"/>
- <entry name="open_path" mtime="1331570244" schema="/schemas/apps/totem/open_path"/>
- <entry name="subtitle_encoding" mtime="1331570244" schema="/schemas/apps/totem/subtitle_encoding"/>
- <entry name="subtitle_font" mtime="1331570244" schema="/schemas/apps/totem/subtitle_font"/>
- <entry name="network-buffer-threshold" mtime="1331570244" schema="/schemas/apps/totem/network-buffer-threshold"/>
- <entry name="visual_quality" mtime="1331570244" schema="/schemas/apps/totem/visual_quality"/>
- <entry name="audio_output_type" mtime="1331570244" schema="/schemas/apps/totem/audio_output_type"/>
- <entry name="debug" mtime="1331570244" schema="/schemas/apps/totem/debug"/>
- <entry name="disable_deinterlacing" mtime="1331570244" schema="/schemas/apps/totem/disable_deinterlacing"/>
- <entry name="shuffle" mtime="1331570244" schema="/schemas/apps/totem/shuffle"/>
- <entry name="repeat" mtime="1331570244" schema="/schemas/apps/totem/repeat"/>
- <entry name="connection_speed" mtime="1331570244" schema="/schemas/apps/totem/connection_speed"/>
- <entry name="auto_resize" mtime="1331570244" schema="/schemas/apps/totem/auto_resize"/>
- <entry name="saturation" mtime="1331570244" schema="/schemas/apps/totem/saturation"/>
- <entry name="hue" mtime="1331570244" schema="/schemas/apps/totem/hue"/>
- <entry name="contrast" mtime="1331570244" schema="/schemas/apps/totem/contrast"/>
- <entry name="brightness" mtime="1331570244" schema="/schemas/apps/totem/brightness"/>
- <entry name="visual" mtime="1331570244" schema="/schemas/apps/totem/visual"/>
- <entry name="show_vfx" mtime="1331570244" schema="/schemas/apps/totem/show_vfx"/>
- <entry name="lock_screensaver_on_audio" mtime="1331570243" schema="/schemas/apps/totem/lock_screensaver_on_audio"/>
+ <entry name="remember_position" mtime="1357376780" schema="/schemas/apps/totem/remember_position"/>
+ <entry name="autoload_chapters" mtime="1357376780" schema="/schemas/apps/totem/autoload_chapters"/>
+ <entry name="autoload_subtitles" mtime="1357376780" schema="/schemas/apps/totem/autoload_subtitles"/>
+ <entry name="disable_keyboard_shortcuts" mtime="1357376780" schema="/schemas/apps/disable_keyboard_shortcuts"/>
+ <entry name="disable_user_plugins" mtime="1357376780" schema="/schemas/apps/totem/disable_user_plugins"/>
+ <entry name="screenshot_save_path" mtime="1357376780" schema="/schemas/apps/totem/screenshot_save_path"/>
+ <entry name="open_path" mtime="1357376780" schema="/schemas/apps/totem/open_path"/>
+ <entry name="subtitle_encoding" mtime="1357376780" schema="/schemas/apps/totem/subtitle_encoding"/>
+ <entry name="subtitle_font" mtime="1357376780" schema="/schemas/apps/totem/subtitle_font"/>
+ <entry name="network-buffer-threshold" mtime="1357376780" schema="/schemas/apps/totem/network-buffer-threshold"/>
+ <entry name="visual_quality" mtime="1357376780" schema="/schemas/apps/totem/visual_quality"/>
+ <entry name="audio_output_type" mtime="1357376780" schema="/schemas/apps/totem/audio_output_type"/>
+ <entry name="debug" mtime="1357376780" schema="/schemas/apps/totem/debug"/>
+ <entry name="disable_deinterlacing" mtime="1357376780" schema="/schemas/apps/totem/disable_deinterlacing"/>
+ <entry name="shuffle" mtime="1357376780" schema="/schemas/apps/totem/shuffle"/>
+ <entry name="repeat" mtime="1357376780" schema="/schemas/apps/totem/repeat"/>
+ <entry name="connection_speed" mtime="1357376780" schema="/schemas/apps/totem/connection_speed"/>
+ <entry name="auto_resize" mtime="1357376780" schema="/schemas/apps/totem/auto_resize"/>
+ <entry name="saturation" mtime="1357376780" schema="/schemas/apps/totem/saturation"/>
+ <entry name="hue" mtime="1357376780" schema="/schemas/apps/totem/hue"/>
+ <entry name="contrast" mtime="1357376780" schema="/schemas/apps/totem/contrast"/>
+ <entry name="brightness" mtime="1357376780" schema="/schemas/apps/totem/brightness"/>
+ <entry name="visual" mtime="1357376780" schema="/schemas/apps/totem/visual"/>
+ <entry name="show_vfx" mtime="1357376780" schema="/schemas/apps/totem/show_vfx"/>
+ <entry name="lock_screensaver_on_audio" mtime="1357376780" schema="/schemas/apps/totem/lock_screensaver_on_audio"/>
</dir>
<dir name="gnome-sound-recorder">
<entry name="last-input" mtime="1329422941" schema="/schemas/apps/gnome-sound-recorder/last-input"/>
</dir>
<dir name="nautilus">
<dir name="desktop">
- <entry name="text_ellipsis_limit" mtime="1335182090" schema="/schemas/apps/nautilus/desktop/text_ellipsis_limit"/>
- <entry name="network_icon_name" mtime="1335182090" schema="/schemas/apps/nautilus/desktop/network_icon_name"/>
- <entry name="trash_icon_name" mtime="1335182090" schema="/schemas/apps/nautilus/desktop/trash_icon_name"/>
- <entry name="home_icon_name" mtime="1335182090" schema="/schemas/apps/nautilus/desktop/home_icon_name"/>
- <entry name="computer_icon_name" mtime="1335182090" schema="/schemas/apps/nautilus/desktop/computer_icon_name"/>
- <entry name="network_icon_visible" mtime="1335182090" schema="/schemas/apps/nautilus/desktop/network_icon_visible"/>
- <entry name="volumes_visible" mtime="1335182090" schema="/schemas/apps/nautilus/desktop/volumes_visible"/>
- <entry name="trash_icon_visible" mtime="1335182090" schema="/schemas/apps/nautilus/desktop/trash_icon_visible"/>
- <entry name="computer_icon_visible" mtime="1335182090" schema="/schemas/apps/nautilus/desktop/computer_icon_visible"/>
- <entry name="home_icon_visible" mtime="1335182090" schema="/schemas/apps/nautilus/desktop/home_icon_visible"/>
+ <entry name="text_ellipsis_limit" mtime="1357321147" schema="/schemas/apps/nautilus/desktop/text_ellipsis_limit"/>
+ <entry name="network_icon_name" mtime="1357321147" schema="/schemas/apps/nautilus/desktop/network_icon_name"/>
+ <entry name="trash_icon_name" mtime="1357321147" schema="/schemas/apps/nautilus/desktop/trash_icon_name"/>
+ <entry name="home_icon_name" mtime="1357321147" schema="/schemas/apps/nautilus/desktop/home_icon_name"/>
+ <entry name="computer_icon_name" mtime="1357321147" schema="/schemas/apps/nautilus/desktop/computer_icon_name"/>
+ <entry name="network_icon_visible" mtime="1357321147" schema="/schemas/apps/nautilus/desktop/network_icon_visible"/>
+ <entry name="volumes_visible" mtime="1357321147" schema="/schemas/apps/nautilus/desktop/volumes_visible"/>
+ <entry name="trash_icon_visible" mtime="1357321147" schema="/schemas/apps/nautilus/desktop/trash_icon_visible"/>
+ <entry name="computer_icon_visible" mtime="1357321147" schema="/schemas/apps/nautilus/desktop/computer_icon_visible"/>
+ <entry name="home_icon_visible" mtime="1357321147" schema="/schemas/apps/nautilus/desktop/home_icon_visible"/>
</dir>
<dir name="sidebar_panels">
<dir name="tree">
- <entry name="show_only_directories" mtime="1335182090" schema="/schemas/apps/nautilus/sidebar_panels/tree/show_only_directories"/>
+ <entry name="show_only_directories" mtime="1357321147" schema="/schemas/apps/nautilus/sidebar_panels/tree/show_only_directories"/>
</dir>
</dir>
<dir name="list_view">
- <entry name="default_column_order" mtime="1335182090" schema="/schemas/apps/nautilus/list_view/default_column_order"/>
- <entry name="default_visible_columns" mtime="1335182090" schema="/schemas/apps/nautilus/list_view/default_visible_columns"/>
- <entry name="default_zoom_level" mtime="1335182090" schema="/schemas/apps/nautilus/list_view/default_zoom_level"/>
- <entry name="default_sort_in_reverse_order" mtime="1335182090" schema="/schemas/apps/nautilus/list_view/default_sort_in_reverse_order"/>
- <entry name="default_sort_order" mtime="1335182090" schema="/schemas/apps/nautilus/list_view/default_sort_order"/>
+ <entry name="default_column_order" mtime="1357321147" schema="/schemas/apps/nautilus/list_view/default_column_order"/>
+ <entry name="default_visible_columns" mtime="1357321147" schema="/schemas/apps/nautilus/list_view/default_visible_columns"/>
+ <entry name="default_zoom_level" mtime="1357321147" schema="/schemas/apps/nautilus/list_view/default_zoom_level"/>
+ <entry name="default_sort_in_reverse_order" mtime="1357321147" schema="/schemas/apps/nautilus/list_view/default_sort_in_reverse_order"/>
+ <entry name="default_sort_order" mtime="1357321147" schema="/schemas/apps/nautilus/list_view/default_sort_order"/>
</dir>
<dir name="compact_view">
- <entry name="all_columns_have_same_width" mtime="1335182090" schema="/schemas/apps/nautilus/compact_view/all_columns_have_same_width"/>
- <entry name="default_zoom_level" mtime="1335182090" schema="/schemas/apps/nautilus/compact_view/default_zoom_level"/>
+ <entry name="all_columns_have_same_width" mtime="1357321147" schema="/schemas/apps/nautilus/compact_view/all_columns_have_same_width"/>
+ <entry name="default_zoom_level" mtime="1357321147" schema="/schemas/apps/nautilus/compact_view/default_zoom_level"/>
</dir>
<dir name="icon_view">
- <entry name="text_ellipsis_limit" mtime="1335182090" schema="/schemas/apps/nautilus/icon_view/text_ellipsis_limit"/>
- <entry name="thumbnail_size" mtime="1335182090" schema="/schemas/apps/nautilus/icon_view/thumbnail_size"/>
- <entry name="default_zoom_level" mtime="1335182090" schema="/schemas/apps/nautilus/icon_view/default_zoom_level"/>
- <entry name="default_use_manual_layout" mtime="1335182090" schema="/schemas/apps/nautilus/icon_view/default_use_manual_layout"/>
- <entry name="labels_beside_icons" mtime="1335182090" schema="/schemas/apps/nautilus/icon_view/labels_beside_icons"/>
- <entry name="default_use_tighter_layout" mtime="1335182090" schema="/schemas/apps/nautilus/icon_view/default_use_tighter_layout"/>
- <entry name="default_sort_in_reverse_order" mtime="1335182090" schema="/schemas/apps/nautilus/icon_view/default_sort_in_reverse_order"/>
- <entry name="default_sort_order" mtime="1335182090" schema="/schemas/apps/nautilus/icon_view/default_sort_order"/>
- <entry name="captions" mtime="1335182090" schema="/schemas/apps/nautilus/icon_view/captions"/>
+ <entry name="text_ellipsis_limit" mtime="1357321147" schema="/schemas/apps/nautilus/icon_view/text_ellipsis_limit"/>
+ <entry name="thumbnail_size" mtime="1357321147" schema="/schemas/apps/nautilus/icon_view/thumbnail_size"/>
+ <entry name="default_zoom_level" mtime="1357321147" schema="/schemas/apps/nautilus/icon_view/default_zoom_level"/>
+ <entry name="default_use_manual_layout" mtime="1357321147" schema="/schemas/apps/nautilus/icon_view/default_use_manual_layout"/>
+ <entry name="labels_beside_icons" mtime="1357321147" schema="/schemas/apps/nautilus/icon_view/labels_beside_icons"/>
+ <entry name="default_use_tighter_layout" mtime="1357321147" schema="/schemas/apps/nautilus/icon_view/default_use_tighter_layout"/>
+ <entry name="default_sort_in_reverse_order" mtime="1357321147" schema="/schemas/apps/nautilus/icon_view/default_sort_in_reverse_order"/>
+ <entry name="default_sort_order" mtime="1357321147" schema="/schemas/apps/nautilus/icon_view/default_sort_order"/>
+ <entry name="captions" mtime="1357321147" schema="/schemas/apps/nautilus/icon_view/captions"/>
</dir>
<dir name="preferences">
- <entry name="side_pane_view" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/side_pane_view"/>
- <entry name="start_with_sidebar" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/start_with_sidebar"/>
- <entry name="start_with_status_bar" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/start_with_status_bar"/>
- <entry name="start_with_location_bar" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/start_with_location_bar"/>
- <entry name="start_with_toolbar" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/start_with_toolbar"/>
- <entry name="sidebar_width" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/sidebar_width"/>
- <entry name="date_format" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/date_format"/>
- <entry name="default_folder_viewer" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/default_folder_viewer"/>
- <entry name="side_pane_background_filename" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/side_pane_background_filename"/>
- <entry name="side_pane_background_color" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/side_pane_background_color"/>
- <entry name="side_pane_background_set" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/side_pane_background_set"/>
- <entry name="background_filename" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/background_filename"/>
- <entry name="background_color" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/background_color"/>
- <entry name="background_set" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/background_set"/>
- <entry name="search_bar_type" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/search_bar_type"/>
- <entry name="desktop_is_home_dir" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/desktop_is_home_dir"/>
- <entry name="desktop_font" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/desktop_font"/>
- <entry name="show_desktop" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/show_desktop"/>
- <entry name="sort_directories_first" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/sort_directories_first"/>
- <entry name="show_advanced_permissions" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/show_advanced_permissions"/>
- <entry name="preview_sound" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/preview_sound"/>
- <entry name="directory_limit" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/directory_limit"/>
- <entry name="thumbnail_limit" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/thumbnail_limit"/>
- <entry name="show_image_thumbnails" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/show_image_thumbnails"/>
- <entry name="theme" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/theme"/>
- <entry name="mouse_back_button" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/mouse_back_button"/>
- <entry name="mouse_forward_button" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/mouse_forward_button"/>
- <entry name="mouse_use_extra_buttons" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/mouse_use_extra_buttons"/>
- <entry name="install_mime_activation" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/install_mime_activation"/>
- <entry name="executable_text_activation" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/executable_text_activation"/>
- <entry name="click_policy" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/click_policy"/>
- <entry name="show_directory_item_counts" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/show_directory_item_counts"/>
- <entry name="show_icon_text" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/show_icon_text"/>
- <entry name="enable_delete" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/enable_delete"/>
- <entry name="confirm_trash" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/confirm_trash"/>
- <entry name="navigation_window_saved_maximized" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/navigation_window_saved_maximized"/>
- <entry name="navigation_window_saved_geometry" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/navigation_window_saved_geometry"/>
- <entry name="media_autorun_x_content_open_folder" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/media_autorun_x_content_open_folder"/>
- <entry name="media_autorun_x_content_ignore" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/media_autorun_x_content_ignore"/>
- <entry name="media_autorun_x_content_start_app" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/media_autorun_x_content_start_app"/>
- <entry name="media_autorun_never" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/media_autorun_never"/>
- <entry name="media_automount_open" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/media_automount_open"/>
- <entry name="media_automount" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/media_automount"/>
- <entry name="always_use_location_entry" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/always_use_location_entry"/>
- <entry name="always_use_browser" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/always_use_browser"/>
- <entry name="exit_with_last_window" mtime="1335182090" schema="/schemas/apps/nautilus/preferences/exit_with_last_window"/>
+ <entry name="side_pane_view" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/side_pane_view"/>
+ <entry name="start_with_sidebar" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/start_with_sidebar"/>
+ <entry name="start_with_status_bar" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/start_with_status_bar"/>
+ <entry name="start_with_location_bar" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/start_with_location_bar"/>
+ <entry name="start_with_toolbar" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/start_with_toolbar"/>
+ <entry name="sidebar_width" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/sidebar_width"/>
+ <entry name="date_format" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/date_format"/>
+ <entry name="default_folder_viewer" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/default_folder_viewer"/>
+ <entry name="side_pane_background_filename" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/side_pane_background_filename"/>
+ <entry name="side_pane_background_color" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/side_pane_background_color"/>
+ <entry name="side_pane_background_set" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/side_pane_background_set"/>
+ <entry name="background_filename" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/background_filename"/>
+ <entry name="background_color" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/background_color"/>
+ <entry name="background_set" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/background_set"/>
+ <entry name="search_bar_type" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/search_bar_type"/>
+ <entry name="desktop_is_home_dir" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/desktop_is_home_dir"/>
+ <entry name="desktop_font" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/desktop_font"/>
+ <entry name="show_desktop" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/show_desktop"/>
+ <entry name="sort_directories_first" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/sort_directories_first"/>
+ <entry name="show_advanced_permissions" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/show_advanced_permissions"/>
+ <entry name="preview_sound" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/preview_sound"/>
+ <entry name="directory_limit" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/directory_limit"/>
+ <entry name="thumbnail_limit" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/thumbnail_limit"/>
+ <entry name="show_image_thumbnails" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/show_image_thumbnails"/>
+ <entry name="theme" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/theme"/>
+ <entry name="mouse_back_button" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/mouse_back_button"/>
+ <entry name="mouse_forward_button" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/mouse_forward_button"/>
+ <entry name="mouse_use_extra_buttons" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/mouse_use_extra_buttons"/>
+ <entry name="install_mime_activation" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/install_mime_activation"/>
+ <entry name="executable_text_activation" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/executable_text_activation"/>
+ <entry name="click_policy" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/click_policy"/>
+ <entry name="show_directory_item_counts" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/show_directory_item_counts"/>
+ <entry name="show_icon_text" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/show_icon_text"/>
+ <entry name="enable_delete" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/enable_delete"/>
+ <entry name="confirm_trash" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/confirm_trash"/>
+ <entry name="navigation_window_saved_maximized" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/navigation_window_saved_maximized"/>
+ <entry name="navigation_window_saved_geometry" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/navigation_window_saved_geometry"/>
+ <entry name="media_autorun_x_content_open_folder" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/media_autorun_x_content_open_folder"/>
+ <entry name="media_autorun_x_content_ignore" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/media_autorun_x_content_ignore"/>
+ <entry name="media_autorun_x_content_start_app" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/media_autorun_x_content_start_app"/>
+ <entry name="media_autorun_never" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/media_autorun_never"/>
+ <entry name="media_automount_open" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/media_automount_open"/>
+ <entry name="media_automount" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/media_automount"/>
+ <entry name="always_use_location_entry" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/always_use_location_entry"/>
+ <entry name="always_use_browser" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/always_use_browser"/>
+ <entry name="exit_with_last_window" mtime="1357321147" schema="/schemas/apps/nautilus/preferences/exit_with_last_window"/>
</dir>
</dir>
<dir name="notification-daemon">
</dir>
</dir>
<dir name="remote_access">
- <entry name="disable_xdamage" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/disable_xdamage"/>
- <entry name="use_upnp" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/use_upnp"/>
- <entry name="disable_background" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/disable_background"/>
- <entry name="icon_visibility" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/icon_visibility"/>
- <entry name="lock_screen_on_disconnect" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/lock_screen_on_disconnect"/>
- <entry name="mailto" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/mailto"/>
- <entry name="vnc_password" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/vnc_password"/>
- <entry name="authentication_methods" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/authentication_methods"/>
- <entry name="require_encryption" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/require_encryption"/>
- <entry name="alternative_port" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/alternative_port"/>
- <entry name="use_alternative_port" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/use_alternative_port"/>
- <entry name="network_interface" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/network_interface"/>
- <entry name="view_only" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/view_only"/>
- <entry name="prompt_enabled" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/prompt_enabled"/>
- <entry name="enabled" mtime="1329422100" schema="/schemas/desktop/gnome/remote_access/enabled"/>
+ <entry name="disable_xdamage" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/disable_xdamage"/>
+ <entry name="use_upnp" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/use_upnp"/>
+ <entry name="disable_background" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/disable_background"/>
+ <entry name="icon_visibility" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/icon_visibility"/>
+ <entry name="lock_screen_on_disconnect" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/lock_screen_on_disconnect"/>
+ <entry name="mailto" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/mailto"/>
+ <entry name="vnc_password" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/vnc_password"/>
+ <entry name="authentication_methods" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/authentication_methods"/>
+ <entry name="require_encryption" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/require_encryption"/>
+ <entry name="alternative_port" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/alternative_port"/>
+ <entry name="use_alternative_port" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/use_alternative_port"/>
+ <entry name="network_interface" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/network_interface"/>
+ <entry name="view_only" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/view_only"/>
+ <entry name="prompt_enabled" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/prompt_enabled"/>
+ <entry name="enabled" mtime="1357376675" schema="/schemas/desktop/gnome/remote_access/enabled"/>
</dir>
<dir name="file_views">
- <entry name="tabs_open_position" mtime="1335182090" schema="/schemas/desktop/gnome/file_views/tabs_open_position"/>
- <entry name="show_backup_files" mtime="1335182090" schema="/schemas/desktop/gnome/file_views/show_backup_files"/>
- <entry name="show_hidden_files" mtime="1335182090" schema="/schemas/desktop/gnome/file_views/show_hidden_files"/>
+ <entry name="tabs_open_position" mtime="1357321147" schema="/schemas/desktop/gnome/file_views/tabs_open_position"/>
+ <entry name="show_backup_files" mtime="1357321147" schema="/schemas/desktop/gnome/file_views/show_backup_files"/>
+ <entry name="show_hidden_files" mtime="1357321147" schema="/schemas/desktop/gnome/file_views/show_hidden_files"/>
<entry name="icon_theme" mtime="1335180088" schema="/schemas/desktop/gnome/file-views/icon_theme"/>
</dir>
<dir name="lockdown">
<entry name="enable" mtime="1334086498" schema="/schemas/desktop/gnome/thumbnailers/application@x-ufraw/enable"/>
</dir>
<dir name="application@x-flac">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-flac/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-flac/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-flac/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-flac/enable"/>
</dir>
<dir name="audio@x-xm">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-xm/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-xm/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-xm/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-xm/enable"/>
</dir>
<dir name="audio@x-vorbis@ogg">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-vorbis@ogg/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-vorbis@ogg/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-vorbis@ogg/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-vorbis@ogg/enable"/>
</dir>
<dir name="audio@x-vorbis">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-vorbis/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-vorbis/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-vorbis/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-vorbis/enable"/>
</dir>
<dir name="audio@x-wavpack">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-wavpack/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-wavpack/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-wavpack/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-wavpack/enable"/>
</dir>
<dir name="audio@x-wav">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-wav/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-wav/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-wav/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-wav/enable"/>
</dir>
<dir name="audio@x-tta">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-tta/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-tta/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-tta/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-tta/enable"/>
</dir>
<dir name="audio@x-speex">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-speex/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-speex/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-speex/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-speex/enable"/>
</dir>
<dir name="audio@x-sbc">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-sbc/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-sbc/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-sbc/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-sbc/enable"/>
</dir>
<dir name="audio@x-real-audio">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-real-audio/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-real-audio/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-real-audio/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-real-audio/enable"/>
</dir>
<dir name="audio@x-realaudio">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-realaudio/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-realaudio/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-realaudio/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-realaudio/enable"/>
</dir>
<dir name="audio@x-pn-windows-acm">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-windows-acm/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-windows-acm/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-windows-acm/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-windows-acm/enable"/>
</dir>
<dir name="audio@x-pn-wav">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-wav/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-wav/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-wav/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-wav/enable"/>
</dir>
<dir name="audio@x-pn-au">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-au/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-au/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-au/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-au/enable"/>
</dir>
<dir name="audio@x-pn-aiff">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-aiff/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-aiff/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-aiff/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-aiff/enable"/>
</dir>
<dir name="audio@x-musepack">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-musepack/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-musepack/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-musepack/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-musepack/enable"/>
</dir>
<dir name="audio@x-ms-wma">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-wma/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-wma/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-wma/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-wma/enable"/>
</dir>
<dir name="audio@x-ms-wax">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-wax/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-wax/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-wax/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-wax/enable"/>
</dir>
<dir name="audio@x-ms-asx">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-asx/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-asx/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-asx/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-asx/enable"/>
</dir>
<dir name="audio@x-ms-asf">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-asf/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-asf/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-asf/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ms-asf/enable"/>
</dir>
<dir name="audio@x-mpeg">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mpeg/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mpeg/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mpeg/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mpeg/enable"/>
</dir>
<dir name="audio@x-mp3">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mp3/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mp3/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mp3/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mp3/enable"/>
</dir>
<dir name="audio@x-mod">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mod/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mod/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mod/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-mod/enable"/>
</dir>
<dir name="audio@x-matroska">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-matroska/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-matroska/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-matroska/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-matroska/enable"/>
</dir>
<dir name="audio@x-m4a">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-m4a/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-m4a/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-m4a/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-m4a/enable"/>
</dir>
<dir name="audio@x-it">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-it/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-it/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-it/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-it/enable"/>
</dir>
<dir name="audio@x-gsm">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-gsm/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-gsm/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-gsm/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-gsm/enable"/>
</dir>
<dir name="audio@x-flac">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-flac/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-flac/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-flac/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-flac/enable"/>
</dir>
<dir name="audio@x-ape">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ape/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ape/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ape/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-ape/enable"/>
</dir>
<dir name="audio@x-aiff">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-aiff/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-aiff/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-aiff/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-aiff/enable"/>
</dir>
<dir name="audio@vnd.rn-realaudio">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@vnd.rn-realaudio/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@vnd.rn-realaudio/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@vnd.rn-realaudio/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@vnd.rn-realaudio/enable"/>
</dir>
<dir name="audio@prs.sid">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@prs.sid/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@prs.sid/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@prs.sid/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@prs.sid/enable"/>
</dir>
<dir name="audio@ogg">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@ogg/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@ogg/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@ogg/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@ogg/enable"/>
</dir>
<dir name="audio@mpeg">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@mpeg/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@mpeg/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@mpeg/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@mpeg/enable"/>
</dir>
<dir name="audio@mp4">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@mp4/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@mp4/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@mp4/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@mp4/enable"/>
</dir>
<dir name="audio@midi">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@midi/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@midi/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@midi/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@midi/enable"/>
</dir>
<dir name="audio@basic">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@basic/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@basic/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@basic/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@basic/enable"/>
</dir>
<dir name="audio@AMR-WB">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@AMR-WB/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@AMR-WB/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@AMR-WB/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@AMR-WB/enable"/>
</dir>
<dir name="audio@AMR">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@AMR/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@AMR/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@AMR/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@AMR/enable"/>
</dir>
<dir name="audio@ac3">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@ac3/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@ac3/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@ac3/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@ac3/enable"/>
</dir>
<dir name="audio@3gpp">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@3gpp/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@3gpp/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@3gpp/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@3gpp/enable"/>
</dir>
<dir name="audio@x-pn-realaudio">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-realaudio/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-realaudio/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-realaudio/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/audio@x-pn-realaudio/enable"/>
</dir>
<dir name="video@x-totem-stream">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-totem-stream/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-totem-stream/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-totem-stream/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-totem-stream/enable"/>
</dir>
<dir name="video@x-theora@ogg">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-theora@ogg/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-theora@ogg/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-theora@ogg/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-theora@ogg/enable"/>
</dir>
<dir name="video@x-ogm@ogg">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ogm@ogg/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ogm@ogg/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ogm@ogg/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ogm@ogg/enable"/>
</dir>
<dir name="video@x-nsv">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-nsv/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-nsv/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-nsv/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-nsv/enable"/>
</dir>
<dir name="video@x-ms-wvx">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wvx/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wvx/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wvx/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wvx/enable"/>
</dir>
<dir name="video@x-ms-wmx">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wmx/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wmx/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wmx/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wmx/enable"/>
</dir>
<dir name="video@x-ms-wmv">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wmv/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wmv/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wmv/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wmv/enable"/>
</dir>
<dir name="video@x-ms-wm">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wm/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wm/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wm/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-wm/enable"/>
</dir>
<dir name="video@x-msvideo">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-msvideo/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-msvideo/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-msvideo/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-msvideo/enable"/>
</dir>
<dir name="video@x-ms-asx">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-asx/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-asx/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-asx/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-asx/enable"/>
</dir>
<dir name="video@x-ms-asf">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-asf/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-asf/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-asf/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-ms-asf/enable"/>
</dir>
<dir name="video@x-mpeg">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-mpeg/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-mpeg/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-mpeg/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-mpeg/enable"/>
</dir>
<dir name="video@x-matroska">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-matroska/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-matroska/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-matroska/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-matroska/enable"/>
</dir>
<dir name="video@x-m4v">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-m4v/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-m4v/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-m4v/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-m4v/enable"/>
</dir>
<dir name="video@x-flv">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-flv/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-flv/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-flv/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-flv/enable"/>
</dir>
<dir name="video@x-flic">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-flic/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-flic/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-flic/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-flic/enable"/>
</dir>
<dir name="video@x-fli">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-fli/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-fli/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-fli/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-fli/enable"/>
</dir>
<dir name="video@x-flc">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-flc/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-flc/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-flc/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-flc/enable"/>
</dir>
<dir name="video@x-avi">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-avi/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-avi/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-avi/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-avi/enable"/>
</dir>
<dir name="video@x-anim">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-anim/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@x-anim/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-anim/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@x-anim/enable"/>
</dir>
<dir name="video@webm">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@webm/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@webm/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@webm/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@webm/enable"/>
</dir>
<dir name="video@vnd.vivo">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.vivo/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.vivo/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.vivo/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.vivo/enable"/>
</dir>
<dir name="video@vnd.rn-realvideo">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.rn-realvideo/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.rn-realvideo/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.rn-realvideo/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.rn-realvideo/enable"/>
</dir>
<dir name="video@vnd.divx">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.divx/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.divx/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.divx/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@vnd.divx/enable"/>
</dir>
<dir name="video@vivo">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@vivo/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@vivo/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@vivo/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@vivo/enable"/>
</dir>
<dir name="video@quicktime">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@quicktime/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@quicktime/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@quicktime/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@quicktime/enable"/>
</dir>
<dir name="video@ogg">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@ogg/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@ogg/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@ogg/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@ogg/enable"/>
</dir>
<dir name="video@msvideo">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@msvideo/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@msvideo/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@msvideo/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@msvideo/enable"/>
</dir>
<dir name="video@mpeg">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@mpeg/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@mpeg/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@mpeg/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@mpeg/enable"/>
</dir>
<dir name="video@mp4v-es">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@mp4v-es/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@mp4v-es/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@mp4v-es/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@mp4v-es/enable"/>
</dir>
<dir name="video@mp4">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@mp4/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@mp4/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@mp4/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@mp4/enable"/>
</dir>
<dir name="video@mp2t">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@mp2t/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@mp2t/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@mp2t/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@mp2t/enable"/>
</dir>
<dir name="video@flv">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@flv/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@flv/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@flv/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@flv/enable"/>
</dir>
<dir name="video@fli">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@fli/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@fli/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@fli/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@fli/enable"/>
</dir>
<dir name="video@dv">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@dv/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@dv/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@dv/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@dv/enable"/>
</dir>
<dir name="video@3gpp">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@3gpp/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/video@3gpp/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@3gpp/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/video@3gpp/enable"/>
</dir>
<dir name="text@x-google-video-pointer">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/text@x-google-video-pointer/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/text@x-google-video-pointer/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/text@x-google-video-pointer/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/text@x-google-video-pointer/enable"/>
</dir>
<dir name="misc@ultravox">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/misc@ultravox/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/misc@ultravox/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/misc@ultravox/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/misc@ultravox/enable"/>
</dir>
<dir name="image@x-pict">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/image@x-pict/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/image@x-pict/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/image@x-pict/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/image@x-pict/enable"/>
</dir>
<dir name="image@vnd.rn-realpix">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/image@vnd.rn-realpix/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/image@vnd.rn-realpix/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/image@vnd.rn-realpix/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/image@vnd.rn-realpix/enable"/>
</dir>
<dir name="application@x-shorten">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-shorten/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-shorten/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-shorten/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-shorten/enable"/>
</dir>
<dir name="application@x-quicktimeplayer">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-quicktimeplayer/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-quicktimeplayer/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-quicktimeplayer/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-quicktimeplayer/enable"/>
</dir>
<dir name="application@x-ogg">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-ogg/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-ogg/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-ogg/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-ogg/enable"/>
</dir>
<dir name="application@x-netshow-channel">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-netshow-channel/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-netshow-channel/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-netshow-channel/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-netshow-channel/enable"/>
</dir>
<dir name="application@x-matroska">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-matroska/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-matroska/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-matroska/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-matroska/enable"/>
</dir>
<dir name="application@x-flash-video">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-flash-video/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-flash-video/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-flash-video/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-flash-video/enable"/>
</dir>
<dir name="application@x-extension-mp4">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-extension-mp4/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-extension-mp4/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-extension-mp4/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-extension-mp4/enable"/>
</dir>
<dir name="application@x-extension-m4a">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-extension-m4a/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@x-extension-m4a/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-extension-m4a/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@x-extension-m4a/enable"/>
</dir>
<dir name="application@vnd.rn-realmedia">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@vnd.rn-realmedia/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@vnd.rn-realmedia/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@vnd.rn-realmedia/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@vnd.rn-realmedia/enable"/>
</dir>
<dir name="application@vnd.ms-wpl">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@vnd.ms-wpl/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@vnd.ms-wpl/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@vnd.ms-wpl/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@vnd.ms-wpl/enable"/>
</dir>
<dir name="application@sdp">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@sdp/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@sdp/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@sdp/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@sdp/enable"/>
</dir>
<dir name="application@ram">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@ram/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@ram/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@ram/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@ram/enable"/>
</dir>
<dir name="application@ogg">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@ogg/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@ogg/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@ogg/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@ogg/enable"/>
</dir>
<dir name="application@mxf">
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@mxf/command"/>
- <entry name="enable" mtime="1331570243" schema="/schemas/desktop/gnome/thumbnailers/application@mxf/enable"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@mxf/command"/>
+ <entry name="enable" mtime="1357376780" schema="/schemas/desktop/gnome/thumbnailers/application@mxf/enable"/>
</dir>
<dir name="application@x-font-otf">
<entry name="enable" mtime="1329422805" schema="/schemas/desktop/gnome/thumbnailers/application@x-font-otf/enable"/>
<entry name="command" mtime="1329719624" schema="/schemas/desktop/gnome/url-handlers/gitg/command"/>
</dir>
<dir name="ymsgr">
- <entry name="needs_terminal" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/ymsgr/needs_terminal"/>
- <entry name="command" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/ymsgr/command"/>
- <entry name="enabled" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/ymsgr/enabled"/>
+ <entry name="needs_terminal" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/ymsgr/needs_terminal"/>
+ <entry name="command" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/ymsgr/command"/>
+ <entry name="enabled" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/ymsgr/enabled"/>
</dir>
<dir name="xmpp">
- <entry name="needs_terminal" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/xmpp/needs_terminal"/>
- <entry name="command" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/xmpp/command"/>
- <entry name="enabled" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/xmpp/enabled"/>
+ <entry name="needs_terminal" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/xmpp/needs_terminal"/>
+ <entry name="command" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/xmpp/command"/>
+ <entry name="enabled" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/xmpp/enabled"/>
</dir>
<dir name="sip">
- <entry name="needs_terminal" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/sip/needs_terminal"/>
- <entry name="command" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/sip/command"/>
- <entry name="enabled" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/sip/enabled"/>
+ <entry name="needs_terminal" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/sip/needs_terminal"/>
+ <entry name="command" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/sip/command"/>
+ <entry name="enabled" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/sip/enabled"/>
</dir>
<dir name="msnim">
- <entry name="needs_terminal" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/msnim/needs_terminal"/>
- <entry name="command" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/msnim/command"/>
- <entry name="enabled" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/msnim/enabled"/>
+ <entry name="needs_terminal" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/msnim/needs_terminal"/>
+ <entry name="command" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/msnim/command"/>
+ <entry name="enabled" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/msnim/enabled"/>
</dir>
<dir name="irc">
- <entry name="needs_terminal" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/irc/needs_terminal"/>
- <entry name="command" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/irc/command"/>
- <entry name="enabled" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/irc/enabled"/>
+ <entry name="needs_terminal" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/irc/needs_terminal"/>
+ <entry name="command" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/irc/command"/>
+ <entry name="enabled" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/irc/enabled"/>
</dir>
<dir name="icq">
- <entry name="needs_terminal" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/icq/needs_terminal"/>
- <entry name="command" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/icq/command"/>
- <entry name="enabled" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/icq/enabled"/>
+ <entry name="needs_terminal" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/icq/needs_terminal"/>
+ <entry name="command" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/icq/command"/>
+ <entry name="enabled" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/icq/enabled"/>
</dir>
<dir name="gg">
- <entry name="needs_terminal" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/gg/needs_terminal"/>
- <entry name="command" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/gg/command"/>
- <entry name="enabled" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/gg/enabled"/>
+ <entry name="needs_terminal" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/gg/needs_terminal"/>
+ <entry name="command" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/gg/command"/>
+ <entry name="enabled" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/gg/enabled"/>
</dir>
<dir name="icyx">
- <entry name="enabled" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/icyx/enabled"/>
- <entry name="needs_terminal" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/icyx/needs_terminal"/>
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/icyx/command"/>
+ <entry name="enabled" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/icyx/enabled"/>
+ <entry name="needs_terminal" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/icyx/needs_terminal"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/icyx/command"/>
</dir>
<dir name="icy">
- <entry name="enabled" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/icy/enabled"/>
- <entry name="needs_terminal" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/icy/needs_terminal"/>
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/icy/command"/>
+ <entry name="enabled" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/icy/enabled"/>
+ <entry name="needs_terminal" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/icy/needs_terminal"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/icy/command"/>
</dir>
<dir name="uvox">
- <entry name="enabled" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/uvox/enabled"/>
- <entry name="needs_terminal" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/uvox/needs_terminal"/>
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/uvox/command"/>
+ <entry name="enabled" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/uvox/enabled"/>
+ <entry name="needs_terminal" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/uvox/needs_terminal"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/uvox/command"/>
</dir>
<dir name="mmsh">
- <entry name="enabled" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/mmsh/enabled"/>
- <entry name="needs_terminal" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/mmsh/needs_terminal"/>
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/mmsh/command"/>
+ <entry name="enabled" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/mmsh/enabled"/>
+ <entry name="needs_terminal" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/mmsh/needs_terminal"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/mmsh/command"/>
</dir>
<dir name="rtsp">
- <entry name="enabled" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/rtsp/enabled"/>
- <entry name="needs_terminal" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/rtsp/needs_terminal"/>
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/rtsp/command"/>
+ <entry name="enabled" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/rtsp/enabled"/>
+ <entry name="needs_terminal" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/rtsp/needs_terminal"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/rtsp/command"/>
</dir>
<dir name="rtp">
- <entry name="enabled" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/rtp/enabled"/>
- <entry name="needs_terminal" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/rtp/needs_terminal"/>
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/rtp/command"/>
+ <entry name="enabled" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/rtp/enabled"/>
+ <entry name="needs_terminal" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/rtp/needs_terminal"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/rtp/command"/>
</dir>
<dir name="net">
- <entry name="enabled" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/net/enabled"/>
- <entry name="needs_terminal" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/net/needs_terminal"/>
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/net/command"/>
+ <entry name="enabled" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/net/enabled"/>
+ <entry name="needs_terminal" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/net/needs_terminal"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/net/command"/>
</dir>
<dir name="mms">
- <entry name="enabled" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/mms/enabled"/>
- <entry name="needs_terminal" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/mms/needs_terminal"/>
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/mms/command"/>
+ <entry name="enabled" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/mms/enabled"/>
+ <entry name="needs_terminal" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/mms/needs_terminal"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/mms/command"/>
</dir>
<dir name="pnm">
- <entry name="enabled" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/pnm/enabled"/>
- <entry name="needs_terminal" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/pnm/needs_terminal"/>
- <entry name="command" mtime="1331570243" schema="/schemas/desktop/gnome/url-handlers/pnm/command"/>
+ <entry name="enabled" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/pnm/enabled"/>
+ <entry name="needs_terminal" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/pnm/needs_terminal"/>
+ <entry name="command" mtime="1357376780" schema="/schemas/desktop/gnome/url-handlers/pnm/command"/>
</dir>
<dir name="vnc">
<entry name="enabled" mtime="1329422127" schema="/schemas/desktop/gnome/url-handlers/vnc/enabled"/>
<entry name="enabled" mtime="1329677137" schema="/schemas/desktop/gnome/url-handlers/callto/enabled"/>
</dir>
<dir name="aim">
- <entry name="needs_terminal" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/aim/needs_terminal"/>
- <entry name="command" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/aim/command"/>
- <entry name="enabled" mtime="1344969156" schema="/schemas/desktop/gnome/url-handlers/aim/enabled"/>
+ <entry name="needs_terminal" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/aim/needs_terminal"/>
+ <entry name="command" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/aim/command"/>
+ <entry name="enabled" mtime="1357345118" schema="/schemas/desktop/gnome/url-handlers/aim/enabled"/>
</dir>
<dir name="mailto">
<entry name="needs_terminal" mtime="1329677137" schema="/schemas/desktop/gnome/url-handlers/mailto/needs_terminal"/>
</dir>
<dir name="schemas">
<dir name="apps">
- <entry name="disable_keyboard_shortcuts" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="disable_keyboard_shortcuts" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Whether to disable the keyboard shortcuts">
<default type="bool" value="false"/>
<longdesc>Whether to disable the keyboard shortcuts</longdesc>
</local_schema>
</entry>
<dir name="virt-manager">
- <entry name="manager_window_width" mtime="1350986635" type="schema" stype="int" owner="virt-manager">
+ <entry name="manager_window_width" mtime="1357376645" type="schema" stype="int" owner="virt-manager">
<local_schema locale="C" short_desc="Default manager window width">
<default type="int" value="0"/>
<longdesc>Default manager window width</longdesc>
</local_schema>
</entry>
- <entry name="manager_window_height" mtime="1350986635" type="schema" stype="int" owner="virt-manager">
+ <entry name="manager_window_height" mtime="1357376645" type="schema" stype="int" owner="virt-manager">
<local_schema locale="C" short_desc="Default manager window height">
<default type="int" value="0"/>
<longdesc>Default manager window height</longdesc>
</local_schema>
</entry>
- <entry name="system-tray" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="system-tray" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Show system tray icon">
<default type="bool" value="false"/>
<longdesc>Show system tray icon while app is running</longdesc>
</local_schema>
</entry>
<dir name="confirm">
- <entry name="unapplied_dev" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="unapplied_dev" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Confirm about unapplied device changes">
<default type="bool" value="true"/>
<longdesc>Whether we ask the user to apply or discard unapplied device changes</longdesc>
</local_schema>
</entry>
- <entry name="interface_power" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="interface_power" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Confirm device interface start and stop">
<default type="bool" value="true"/>
<longdesc>Whether we require confirmation to start or stop a libvirt virtual interface</longdesc>
</local_schema>
</entry>
- <entry name="removedev" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="removedev" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Confirm device removal request">
<default type="bool" value="true"/>
<longdesc>Whether we require confirmation to remove a virtual device</longdesc>
</local_schema>
</entry>
- <entry name="pause" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="pause" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Confirm pause request">
<default type="bool" value="false"/>
<longdesc>Whether we require confirmation to pause a VM</longdesc>
</local_schema>
</entry>
- <entry name="poweroff" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="poweroff" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Confirm poweroff request">
<default type="bool" value="false"/>
<longdesc>Whether we require confirmation to poweroff/reboot a VM</longdesc>
</local_schema>
</entry>
- <entry name="forcepoweroff" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="forcepoweroff" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Confirm force poweroff request">
<default type="bool" value="true"/>
<longdesc>Whether we require confirmation to forcepoweroff a VM</longdesc>
</entry>
</dir>
<dir name="paths">
- <entry name="default-screenshot-path" mtime="1350986635" type="schema" stype="string" owner="virt-manager">
+ <entry name="default-screenshot-path" mtime="1357376645" type="schema" stype="string" owner="virt-manager">
<local_schema locale="C" short_desc="Default screenshot path">
<default type="string">
<stringvalue></stringvalue>
<longdesc>Default path for saving screenshots from VMs</longdesc>
</local_schema>
</entry>
- <entry name="default-restore-path" mtime="1350986635" type="schema" stype="string" owner="virt-manager">
+ <entry name="default-restore-path" mtime="1357376645" type="schema" stype="string" owner="virt-manager">
<local_schema locale="C" short_desc="Default restore path">
<default type="string">
<stringvalue></stringvalue>
<longdesc>Default path for stored VM snapshots</longdesc>
</local_schema>
</entry>
- <entry name="default-save-path" mtime="1350986635" type="schema" stype="string" owner="virt-manager">
+ <entry name="default-save-path" mtime="1357376645" type="schema" stype="string" owner="virt-manager">
<local_schema locale="C" short_desc="Default save domain path">
<default type="string">
<stringvalue></stringvalue>
<longdesc>Default path for saving VM snapshots</longdesc>
</local_schema>
</entry>
- <entry name="default-media-path" mtime="1350986635" type="schema" stype="string" owner="virt-manager">
+ <entry name="default-media-path" mtime="1357376645" type="schema" stype="string" owner="virt-manager">
<local_schema locale="C" short_desc="Default media path">
<default type="string">
<stringvalue></stringvalue>
<longdesc>Default path for choosing media</longdesc>
</local_schema>
</entry>
- <entry name="default-image-path" mtime="1350986635" type="schema" stype="string" owner="virt-manager">
+ <entry name="default-image-path" mtime="1357376645" type="schema" stype="string" owner="virt-manager">
<local_schema locale="C" short_desc="Default image path">
<default type="string">
<stringvalue></stringvalue>
</entry>
</dir>
<dir name="new-vm">
- <entry name="storage-format" mtime="1350986635" type="schema" stype="string" owner="virt-manager">
+ <entry name="storage-format" mtime="1357376645" type="schema" stype="string" owner="virt-manager">
<local_schema locale="C" short_desc="Use selected format for new VM storage">
<default type="string">
<stringvalue>default</stringvalue>
<longdesc>Use selected format when creating new disk images in new VM wizard</longdesc>
</local_schema>
</entry>
- <entry name="graphics_type" mtime="1350986635" type="schema" stype="string" owner="virt-manager">
+ <entry name="graphics_type" mtime="1357376645" type="schema" stype="string" owner="virt-manager">
<local_schema locale="C" short_desc="Install selected graphics type for new VM">
<default type="string">
<stringvalue>vnc</stringvalue>
<longdesc>Install selected graphics type for new VM. vnc or spice</longdesc>
</local_schema>
</entry>
- <entry name="remote-sound" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="remote-sound" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Install sound device for remote VM">
<default type="bool" value="false"/>
<longdesc>Whether to install a sound device for remote VMs or not</longdesc>
</local_schema>
</entry>
- <entry name="local-sound" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="local-sound" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Install sound device for local VM">
<default type="bool" value="true"/>
<longdesc>Whether to install a sound device for local VMs or not</longdesc>
</entry>
</dir>
<dir name="details">
- <entry name="show-toolbar" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="show-toolbar" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Whether to show VM button toolbar in Details display">
<default type="bool" value="true"/>
<longdesc>Whether to show toolbar containing Virtual Machine action buttons (such as Run, Pause, Shutdown) in the details display</longdesc>
</entry>
</dir>
<dir name="console">
- <entry name="scaling" mtime="1350986635" type="schema" stype="int" owner="virt-manager">
+ <entry name="scaling" mtime="1357376645" type="schema" stype="int" owner="virt-manager">
<local_schema locale="C" short_desc="When to scale the VM graphical console">
<default type="int" value="1"/>
<longdesc>When to scale the VM graphical console. 0 = never, 1 = only when in full screen mode, 2 = Always</longdesc>
</local_schema>
</entry>
- <entry name="grab-notify" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="grab-notify" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Whether to show notification when grabbing mouse">
<default type="bool" value="true"/>
<longdesc>Whether to show the notification hint when grabbing the mouse in the console</longdesc>
</local_schema>
</entry>
- <entry name="enable-accels" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="enable-accels" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Enable menu accelerators in console window">
<default type="bool" value="false"/>
<longdesc>Whether to enable menu accelerators while connected to the guest graphical console.</longdesc>
</entry>
</dir>
<dir name="urls">
- <entry name="url-list-length" mtime="1350986635" type="schema" stype="int" owner="virt-manager">
+ <entry name="url-list-length" mtime="1357376645" type="schema" stype="int" owner="virt-manager">
<local_schema locale="C" short_desc="The length of the list of URLs">
<default type="int" value="10"/>
<longdesc>The number of urls to keep in the history for the install media address page.</longdesc>
</entry>
</dir>
<dir name="stats">
- <entry name="enable-net-poll" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="enable-net-poll" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Poll net i/o stats">
<default type="bool" value="false"/>
<longdesc>Whether or not the app will poll VM network i/o statistics</longdesc>
</local_schema>
</entry>
- <entry name="enable-disk-poll" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="enable-disk-poll" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Poll disk i/o stats">
<default type="bool" value="false"/>
<longdesc>Whether or not the app will poll VM disk i/o statistics</longdesc>
</local_schema>
</entry>
- <entry name="history-length" mtime="1350986635" type="schema" stype="int" owner="virt-manager">
+ <entry name="history-length" mtime="1357376645" type="schema" stype="int" owner="virt-manager">
<local_schema locale="C" short_desc="The statistics history length">
<default type="int" value="120"/>
<longdesc>The number of samples to keep in the statistics history</longdesc>
</local_schema>
</entry>
- <entry name="update-interval" mtime="1350986635" type="schema" stype="int" owner="virt-manager">
+ <entry name="update-interval" mtime="1357376645" type="schema" stype="int" owner="virt-manager">
<local_schema locale="C" short_desc="The statistics update interval">
<default type="int" value="1"/>
<longdesc>The statistics update interval in seconds</longdesc>
</entry>
</dir>
<dir name="vmlist-fields">
- <entry name="host_cpu_usage" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="host_cpu_usage" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Show host cpu usage in summary">
<default type="bool" value="false"/>
<longdesc>Show the host cpu usage field in the domain list summary view</longdesc>
</local_schema>
</entry>
- <entry name="cpu_usage" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="cpu_usage" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Show guest cpu usage in summary">
<default type="bool" value="true"/>
<longdesc>Show the guest cpu usage field in the domain list summary view</longdesc>
</local_schema>
</entry>
- <entry name="network_traffic" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="network_traffic" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Show network I/O in summary">
<default type="bool" value="false"/>
<longdesc>Show the network I/O field in the domain list summary view</longdesc>
</local_schema>
</entry>
- <entry name="disk_usage" mtime="1350986635" type="schema" stype="bool" owner="virt-manager">
+ <entry name="disk_usage" mtime="1357376645" type="schema" stype="bool" owner="virt-manager">
<local_schema locale="C" short_desc="Show disk I/O in summary">
<default type="bool" value="false"/>
<longdesc>Show the disk I/O field in the domain list summary view</longdesc>
</entry>
</dir>
<dir name="totem">
- <entry name="remember_position" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="remember_position" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Whether to remember the position of played audio/video files when pausing or closing them.">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="autoload_chapters" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="autoload_chapters" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Whether to autoload external chapter files when a movie is loaded">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="autoload_subtitles" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="autoload_subtitles" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Whether to autoload text subtitle files when a movie is loaded">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="disable_user_plugins" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="disable_user_plugins" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Whether to disable the plugins in the user's home directory">
<default type="bool" value="false"/>
<longdesc>Whether to disable the plugins in the user's home directory</longdesc>
</local_schema>
</entry>
- <entry name="screenshot_save_path" mtime="1331570244" type="schema" stype="string" owner="totem">
+ <entry name="screenshot_save_path" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="Default location for the "Take Screenshot" dialogs">
<default type="string">
<stringvalue></stringvalue>
<longdesc>Default location for the "Take Screenshot" dialogs, default is the Pictures directory</longdesc>
</local_schema>
</entry>
- <entry name="open_path" mtime="1331570244" type="schema" stype="string" owner="totem">
+ <entry name="open_path" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="Default location for the "Open..." dialogs">
<default type="string">
<stringvalue></stringvalue>
<longdesc>Default location for the "Open..." dialogs, default is the current directory</longdesc>
</local_schema>
</entry>
- <entry name="subtitle_encoding" mtime="1331570244" type="schema" stype="string" owner="totem">
+ <entry name="subtitle_encoding" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="en_GB">
<default type="string">
<stringvalue>UTF-8</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="subtitle_font" mtime="1331570244" type="schema" stype="string" owner="totem">
+ <entry name="subtitle_font" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="Subtitle font">
<default type="string">
<stringvalue>Sans Bold 20</stringvalue>
<longdesc>Pango font description for subtitle rendering</longdesc>
</local_schema>
</entry>
- <entry name="network-buffer-threshold" mtime="1331570244" type="schema" stype="float" owner="totem">
+ <entry name="network-buffer-threshold" mtime="1357376780" type="schema" stype="float" owner="totem">
<local_schema locale="C" short_desc="Network buffering threshold">
<default type="float" value="2"/>
<longdesc>Amount of data to buffer for network streams before starting to display the stream (in seconds)</longdesc>
</local_schema>
</entry>
- <entry name="visual_quality" mtime="1331570244" type="schema" stype="int" owner="totem">
+ <entry name="visual_quality" mtime="1357376780" type="schema" stype="int" owner="totem">
<local_schema locale="C" short_desc="Visualization quality setting">
<default type="int" value="0"/>
<longdesc>Quality settings for the audio visualization:
"3" for extra large.</longdesc>
</local_schema>
</entry>
- <entry name="audio_output_type" mtime="1331570244" type="schema" stype="int" owner="totem">
+ <entry name="audio_output_type" mtime="1357376780" type="schema" stype="int" owner="totem">
<local_schema locale="C" short_desc="Type of audio output to use">
<default type="int" value="0"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="debug" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="debug" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Whether to enable debug for the playback engine">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="disable_deinterlacing" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="disable_deinterlacing" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Whether to disable deinterlacing for interlaced movies">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="shuffle" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="shuffle" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Shuffle mode">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="repeat" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="repeat" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Repeat mode">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="connection_speed" mtime="1331570244" type="schema" stype="int" owner="totem">
+ <entry name="connection_speed" mtime="1357376780" type="schema" stype="int" owner="totem">
<local_schema locale="C" short_desc="Network connection speed">
<default type="int" value="11"/>
<longdesc>Approximate network connection speed, used to select quality on media over the network:
"11" for Intranet/LAN.</longdesc>
</local_schema>
</entry>
- <entry name="auto_resize" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="auto_resize" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Resize the canvas automatically on file load">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="saturation" mtime="1331570244" type="schema" stype="int" owner="totem">
+ <entry name="saturation" mtime="1357376780" type="schema" stype="int" owner="totem">
<local_schema locale="C" short_desc="The saturation of the video">
<default type="int" value="32767"/>
</local_schema>
</entry>
- <entry name="hue" mtime="1331570244" type="schema" stype="int" owner="totem">
+ <entry name="hue" mtime="1357376780" type="schema" stype="int" owner="totem">
<local_schema locale="C" short_desc="The hue of the video">
<default type="int" value="32767"/>
</local_schema>
</entry>
- <entry name="contrast" mtime="1331570244" type="schema" stype="int" owner="totem">
+ <entry name="contrast" mtime="1357376780" type="schema" stype="int" owner="totem">
<local_schema locale="C" short_desc="The contrast of the video">
<default type="int" value="32767"/>
</local_schema>
</entry>
- <entry name="brightness" mtime="1331570244" type="schema" stype="int" owner="totem">
+ <entry name="brightness" mtime="1357376780" type="schema" stype="int" owner="totem">
<local_schema locale="C" short_desc="The brightness of the video">
<default type="int" value="32767"/>
</local_schema>
</entry>
- <entry name="visual" mtime="1331570244" type="schema" stype="string" owner="totem">
+ <entry name="visual" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="Name of the visual effects plugins">
<default type="string">
<stringvalue>goom</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="show_vfx" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="show_vfx" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Show visual effects when no video is displayed">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="lock_screensaver_on_audio" mtime="1331570244" type="schema" stype="bool" owner="totem">
+ <entry name="lock_screensaver_on_audio" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="Allow the screensaver to activate when playing audio">
<default type="bool" value="true"/>
<longdesc>
<entry name="autofs_friendly" mtime="1350993050" type="schema" stype="bool" owner="drivemount-applet">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
- <longdesc></longdesc>
</local_schema>
</entry>
<entry name="mount_point" mtime="1350993050" type="schema" stype="string" owner="drivemount-applet">
<default type="string">
<stringvalue>/mnt/floppy</stringvalue>
</default>
- <longdesc></longdesc>
</local_schema>
</entry>
<entry name="auto_eject" mtime="1350993050" type="schema" stype="bool" owner="drivemount-applet">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
- <longdesc></longdesc>
</local_schema>
</entry>
<entry name="scale" mtime="1350993050" type="schema" stype="bool" owner="drivemount-applet">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
- <longdesc></longdesc>
</local_schema>
</entry>
<entry name="pixmap" mtime="1350993050" type="schema" stype="int" owner="drivemount-applet">
<local_schema locale="C" short_desc="">
<default type="int" value="0"/>
- <longdesc></longdesc>
</local_schema>
</entry>
<entry name="interval" mtime="1350993050" type="schema" stype="int" owner="drivemount-applet">
</dir>
<dir name="gweather">
<dir name="prefs">
- <entry name="radar" mtime="1329676387" type="schema" stype="string" owner="gweather-applet-2">
+ <entry name="radar" mtime="1357321296" type="schema" stype="string" owner="gweather-applet-2">
<local_schema locale="C" short_desc="Url for the radar map">
<longdesc>The custom url from where to retrieve a radar map.</longdesc>
</local_schema>
</entry>
- <entry name="use_custom_radar_url" mtime="1329676387" type="schema" stype="bool" owner="gweather-applet-2">
+ <entry name="use_custom_radar_url" mtime="1357321296" type="schema" stype="bool" owner="gweather-applet-2">
<local_schema locale="C" short_desc="Use custom url for the radar map">
<default type="bool" value="false"/>
<longdesc>If true, then retrieve a radar map from a location specified by the "radar" key.</longdesc>
</local_schema>
</entry>
- <entry name="coordinates" mtime="1329676387" type="schema" stype="string" owner="gweather-applet-2">
+ <entry name="coordinates" mtime="1357321296" type="schema" stype="string" owner="gweather-applet-2">
<local_schema locale="en_GB">
<default type="string">
<stringvalue>DEFAULT_COORDINATES</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="location4" mtime="1329676387" type="schema" stype="string" owner="gweather-applet-2">
+ <entry name="location4" mtime="1357321296" type="schema" stype="string" owner="gweather-applet-2">
<local_schema locale="en_GB">
<default type="string">
<stringvalue>London/Heathrow</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="location3" mtime="1329676387" type="schema" stype="string" owner="gweather-applet-2">
+ <entry name="location3" mtime="1357321296" type="schema" stype="string" owner="gweather-applet-2">
<local_schema locale="en_GB">
<default type="string">
<stringvalue>---</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="location2" mtime="1329676387" type="schema" stype="string" owner="gweather-applet-2">
+ <entry name="location2" mtime="1357321296" type="schema" stype="string" owner="gweather-applet-2">
<local_schema locale="en_GB">
<default type="string">
<stringvalue>:RBPMS</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="location1" mtime="1329676387" type="schema" stype="string" owner="gweather-applet-2">
+ <entry name="location1" mtime="1357321296" type="schema" stype="string" owner="gweather-applet-2">
<local_schema locale="en_GB">
<default type="string">
<stringvalue>EGLL</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="location0" mtime="1329676387" type="schema" stype="string" owner="gweather-applet-2">
+ <entry name="location0" mtime="1357321296" type="schema" stype="string" owner="gweather-applet-2">
<local_schema locale="en_GB">
<default type="string">
<stringvalue>London/Heathrow</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable_radar_map" mtime="1329676387" type="schema" stype="bool" owner="gweather-applet-2">
+ <entry name="enable_radar_map" mtime="1357321296" type="schema" stype="bool" owner="gweather-applet-2">
<local_schema locale="C" short_desc="Display radar map">
<default type="bool" value="false"/>
<longdesc>Fetch a radar map on each update.</longdesc>
</local_schema>
</entry>
- <entry name="enable_detailed_forecast" mtime="1329676387" type="schema" stype="bool" owner="gweather-applet-2">
+ <entry name="enable_detailed_forecast" mtime="1357321296" type="schema" stype="bool" owner="gweather-applet-2">
<local_schema locale="C" short_desc="Not used anymore">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="temperature_unit" mtime="1329676387" type="schema" stype="string" owner="gweather-applet-2">
+ <entry name="temperature_unit" mtime="1357321296" type="schema" stype="string" owner="gweather-applet-2">
<local_schema locale="C" short_desc="Temperature unit">
<default type="string">
<stringvalue>Default</stringvalue>
<longdesc>The unit to use for temperature.</longdesc>
</local_schema>
</entry>
- <entry name="speed_unit" mtime="1329676387" type="schema" stype="string" owner="gweather-applet-2">
+ <entry name="speed_unit" mtime="1357321296" type="schema" stype="string" owner="gweather-applet-2">
<local_schema locale="C" short_desc="Speed unit">
<default type="string">
<stringvalue>Default</stringvalue>
<longdesc>The unit to use for wind speed.</longdesc>
</local_schema>
</entry>
- <entry name="pressure_unit" mtime="1329676387" type="schema" stype="string" owner="gweather-applet-2">
+ <entry name="pressure_unit" mtime="1357321296" type="schema" stype="string" owner="gweather-applet-2">
<local_schema locale="C" short_desc="Pressure unit">
<default type="string">
<stringvalue>Default</stringvalue>
<longdesc>The unit to use for pressure.</longdesc>
</local_schema>
</entry>
- <entry name="distance_unit" mtime="1329676387" type="schema" stype="string" owner="gweather-applet-2">
+ <entry name="distance_unit" mtime="1357321296" type="schema" stype="string" owner="gweather-applet-2">
<local_schema locale="C" short_desc="Distance unit">
<default type="string">
<stringvalue>Default</stringvalue>
<longdesc>The unit to use for visibility.</longdesc>
</local_schema>
</entry>
- <entry name="enable_metric" mtime="1329676387" type="schema" stype="bool" owner="gweather-applet-2">
+ <entry name="enable_metric" mtime="1357321296" type="schema" stype="bool" owner="gweather-applet-2">
<local_schema locale="C" short_desc="Use metric units">
<default type="bool" value="false"/>
<longdesc>Use metric units instead of english units.</longdesc>
</local_schema>
</entry>
- <entry name="auto_update_interval" mtime="1329676387" type="schema" stype="int" owner="gweather-applet-2">
+ <entry name="auto_update_interval" mtime="1357321296" type="schema" stype="int" owner="gweather-applet-2">
<local_schema locale="C" short_desc="Update interval">
<default type="int" value="1800"/>
<longdesc>The interval, in seconds, between automatic updates.</longdesc>
</local_schema>
</entry>
- <entry name="auto_update" mtime="1329676387" type="schema" stype="bool" owner="gweather-applet-2">
+ <entry name="auto_update" mtime="1357321296" type="schema" stype="bool" owner="gweather-applet-2">
<local_schema locale="C" short_desc="Update the data automatically">
<default type="bool" value="true"/>
<longdesc>Determines whether the applet automatically updates its weather statistics or not.</longdesc>
</dir>
<dir name="nautilus">
<dir name="desktop">
- <entry name="text_ellipsis_limit" mtime="1335182090" type="schema" stype="int">
+ <entry name="text_ellipsis_limit" mtime="1357321147" type="schema" stype="int">
<local_schema locale="C" short_desc="Text Ellipsis Limit">
<default type="int" value="3"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="network_icon_name" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="network_icon_name" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Network servers icon name">
<longdesc>
This name can be set if you want a custom name
</longdesc>
</local_schema>
</entry>
- <entry name="trash_icon_name" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="trash_icon_name" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Desktop trash icon name">
<longdesc>
This name can be set if you want a custom name
</longdesc>
</local_schema>
</entry>
- <entry name="home_icon_name" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="home_icon_name" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Desktop home icon name">
<longdesc>
This name can be set if you want a custom name
</longdesc>
</local_schema>
</entry>
- <entry name="computer_icon_name" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="computer_icon_name" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Desktop computer icon name">
<longdesc>
This name can be set if you want a custom name
</longdesc>
</local_schema>
</entry>
- <entry name="network_icon_visible" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="network_icon_visible" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Network Servers icon visible on the desktop">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="volumes_visible" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="volumes_visible" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Show mounted volumes on the desktop">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="trash_icon_visible" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="trash_icon_visible" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Trash icon visible on desktop">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="computer_icon_visible" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="computer_icon_visible" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Computer icon visible on desktop">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="home_icon_visible" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="home_icon_visible" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Home icon visible on desktop">
<default type="bool" value="true"/>
<longdesc>
</dir>
<dir name="sidebar_panels">
<dir name="tree">
- <entry name="show_only_directories" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="show_only_directories" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Only show folders in the tree side pane">
<default type="bool" value="true"/>
<longdesc>
</dir>
</dir>
<dir name="list_view">
- <entry name="default_column_order" mtime="1335182090" type="schema" stype="list" owner="nautilus" list_type="string">
+ <entry name="default_column_order" mtime="1357321147" type="schema" stype="list" owner="nautilus" list_type="string">
<local_schema locale="C" short_desc="Default column order in the list view">
<default type="list" ltype="string">
<li type="string">
</longdesc>
</local_schema>
</entry>
- <entry name="default_visible_columns" mtime="1335182090" type="schema" stype="list" owner="nautilus" list_type="string">
+ <entry name="default_visible_columns" mtime="1357321147" type="schema" stype="list" owner="nautilus" list_type="string">
<local_schema locale="C" short_desc="Default list of columns visible in the list view">
<default type="list" ltype="string">
<li type="string">
</longdesc>
</local_schema>
</entry>
- <entry name="default_zoom_level" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="default_zoom_level" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Default list zoom level">
<default type="string">
<stringvalue>smaller</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="default_sort_in_reverse_order" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="default_sort_in_reverse_order" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Reverse sort order in new windows">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="default_sort_order" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="default_sort_order" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Default sort order">
<default type="string">
<stringvalue>name</stringvalue>
</entry>
</dir>
<dir name="compact_view">
- <entry name="all_columns_have_same_width" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="all_columns_have_same_width" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="All columns have same width">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="default_zoom_level" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="default_zoom_level" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Default compact view zoom level">
<default type="string">
<stringvalue>standard</stringvalue>
</entry>
</dir>
<dir name="icon_view">
- <entry name="text_ellipsis_limit" mtime="1335182090" type="schema" stype="list" list_type="string">
+ <entry name="text_ellipsis_limit" mtime="1357321147" type="schema" stype="list" list_type="string">
<local_schema locale="C" short_desc="Text Ellipsis Limit">
<default type="list" ltype="string">
<li type="string">
</longdesc>
</local_schema>
</entry>
- <entry name="thumbnail_size" mtime="1335182090" type="schema" stype="int" owner="nautilus">
+ <entry name="thumbnail_size" mtime="1357321147" type="schema" stype="int" owner="nautilus">
<local_schema locale="C" short_desc="Default Thumbnail Icon Size">
<default type="int" value="64"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="default_zoom_level" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="default_zoom_level" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Default icon zoom level">
<default type="string">
<stringvalue>standard</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="default_use_manual_layout" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="default_use_manual_layout" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Use manual layout in new windows">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="labels_beside_icons" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="labels_beside_icons" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Put labels beside icons">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="default_use_tighter_layout" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="default_use_tighter_layout" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Use tighter layout in new windows">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="default_sort_in_reverse_order" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="default_sort_in_reverse_order" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Reverse sort order in new windows">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="default_sort_order" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="default_sort_order" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Default sort order">
<default type="string">
<stringvalue>name</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="captions" mtime="1335182090" type="schema" stype="list" owner="nautilus" list_type="string">
+ <entry name="captions" mtime="1357321147" type="schema" stype="list" owner="nautilus" list_type="string">
<local_schema locale="C" short_desc="List of possible captions on icons">
<default type="list" ltype="string">
<li type="string">
</entry>
</dir>
<dir name="preferences">
- <entry name="side_pane_view" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="side_pane_view" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Side pane view">
<default type="string">
<stringvalue></stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="start_with_sidebar" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="start_with_sidebar" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Show side pane in new windows">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="start_with_status_bar" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="start_with_status_bar" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Show status bar in new windows">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="start_with_location_bar" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="start_with_location_bar" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Show location bar in new windows">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="start_with_toolbar" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="start_with_toolbar" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Show toolbar in new windows">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="sidebar_width" mtime="1335182090" type="schema" stype="int" owner="nautilus">
+ <entry name="sidebar_width" mtime="1357321147" type="schema" stype="int" owner="nautilus">
<local_schema locale="C" short_desc="Width of the side pane">
<default type="int" value="148"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="date_format" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="date_format" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Date Format">
<default type="string">
<stringvalue>locale</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="default_folder_viewer" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="default_folder_viewer" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Default folder viewer">
<default type="string">
<stringvalue>icon_view</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="side_pane_background_filename" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="side_pane_background_filename" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Default Side Pane Background Filename">
<default type="string">
<stringvalue></stringvalue>
<longdesc>Filename for the default side pane background. Only used if side_pane_background_set is true.</longdesc>
</local_schema>
</entry>
- <entry name="side_pane_background_color" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="side_pane_background_color" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Default Side Pane Background Color">
<default type="string">
<stringvalue>#ffffff</stringvalue>
<longdesc>Filename for the default side pane background. Only used if side_pane_background_set is true.</longdesc>
</local_schema>
</entry>
- <entry name="side_pane_background_set" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="side_pane_background_set" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Custom Side Pane Background Set">
<default type="bool" value="false"/>
<longdesc>Whether a custom default side pane background has been set.</longdesc>
</local_schema>
</entry>
- <entry name="background_filename" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="background_filename" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Default Background Filename">
<default type="string">
<stringvalue></stringvalue>
<longdesc>Filename for the default folder background. Only used if background_set is true.</longdesc>
</local_schema>
</entry>
- <entry name="background_color" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="background_color" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Default Background Color">
<default type="string">
<stringvalue>#ffffff</stringvalue>
<longdesc>Color for the default folder background. Only used if background_set is true.</longdesc>
</local_schema>
</entry>
- <entry name="background_set" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="background_set" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Custom Background">
<default type="bool" value="false"/>
<longdesc>Whether a custom default folder background has been set.</longdesc>
</local_schema>
</entry>
- <entry name="search_bar_type" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="search_bar_type" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Criteria for search bar searching">
<default type="string">
<stringvalue>search_by_text</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="desktop_is_home_dir" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="desktop_is_home_dir" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Nautilus uses the users home folder as the desktop">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="desktop_font" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="desktop_font" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="en_GB">
<default type="string">
<stringvalue>Sans 10</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="show_desktop" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="show_desktop" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Nautilus handles drawing the desktop">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="sort_directories_first" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="sort_directories_first" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Show folders first in windows">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="show_advanced_permissions" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="show_advanced_permissions" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Show advanced permissions in the file property dialog">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="preview_sound" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="preview_sound" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Whether to preview sounds when mousing over an icon">
<default type="string">
<stringvalue>local_only</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="directory_limit" mtime="1335182090" type="schema" stype="int" owner="nautilus">
+ <entry name="directory_limit" mtime="1357321147" type="schema" stype="int" owner="nautilus">
<local_schema locale="C" short_desc="Maximum handled files in a folder">
<default type="int" value="-1"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="thumbnail_limit" mtime="1335182090" type="schema" stype="int" owner="nautilus">
+ <entry name="thumbnail_limit" mtime="1357321147" type="schema" stype="int" owner="nautilus">
<local_schema locale="C" short_desc="Maximum image size for thumbnailing">
<default type="int" value="10485760"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="show_image_thumbnails" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="show_image_thumbnails" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="When to show thumbnails of image files">
<default type="string">
<stringvalue>local_only</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="theme" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="theme" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Current Nautilus theme (deprecated)">
<default type="string">
<stringvalue>default</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="mouse_back_button" mtime="1335182090" type="schema" stype="int" owner="nautilus">
+ <entry name="mouse_back_button" mtime="1357321147" type="schema" stype="int" owner="nautilus">
<local_schema locale="C" short_desc="Mouse button to activate the "Back" command in browser window">
<default type="int" value="8"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="mouse_forward_button" mtime="1335182090" type="schema" stype="int" owner="nautilus">
+ <entry name="mouse_forward_button" mtime="1357321147" type="schema" stype="int" owner="nautilus">
<local_schema locale="C" short_desc="Mouse button to activate the "Forward" command in browser window">
<default type="int" value="9"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="mouse_use_extra_buttons" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="mouse_use_extra_buttons" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Use extra mouse button events in Nautilus' browser window">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="install_mime_activation" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="install_mime_activation" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Show the package installer for unknown mime types">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="executable_text_activation" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="executable_text_activation" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="What to do with executable text files when activated">
<default type="string">
<stringvalue>ask</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="click_policy" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="click_policy" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Type of click used to launch/open files">
<default type="string">
<stringvalue>double</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="show_directory_item_counts" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="show_directory_item_counts" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="When to show number of items in a folder">
<default type="string">
<stringvalue>local_only</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="show_icon_text" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="show_icon_text" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="When to show preview text in icons">
<default type="string">
<stringvalue>local_only</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="enable_delete" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="enable_delete" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Whether to enable immediate deletion">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="confirm_trash" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="confirm_trash" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Whether to ask for confirmation when deleting files, or emptying Trash">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="navigation_window_saved_maximized" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="navigation_window_saved_maximized" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Whether the navigation window should be maximized.">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="navigation_window_saved_geometry" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="navigation_window_saved_geometry" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="The geometry string for a navigation window.">
<default type="string">
<stringvalue></stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="media_autorun_x_content_open_folder" mtime="1335182090" type="schema" stype="list" owner="nautilus" list_type="string">
+ <entry name="media_autorun_x_content_open_folder" mtime="1357321147" type="schema" stype="list" owner="nautilus" list_type="string">
<local_schema locale="C" short_desc="List of x-content/* types set to "Open Folder"">
<default type="list" ltype="string">
</default>
</longdesc>
</local_schema>
</entry>
- <entry name="media_autorun_x_content_ignore" mtime="1335182090" type="schema" stype="list" owner="nautilus" list_type="string">
+ <entry name="media_autorun_x_content_ignore" mtime="1357321147" type="schema" stype="list" owner="nautilus" list_type="string">
<local_schema locale="C" short_desc="List of x-content/* types set to "Do Nothing"">
<default type="list" ltype="string">
</default>
</longdesc>
</local_schema>
</entry>
- <entry name="media_autorun_x_content_start_app" mtime="1335182090" type="schema" stype="list" owner="nautilus" list_type="string">
+ <entry name="media_autorun_x_content_start_app" mtime="1357321147" type="schema" stype="list" owner="nautilus" list_type="string">
<local_schema locale="C" short_desc="List of x-content/* types where the preferred application will be launched">
<default type="list" ltype="string">
<li type="string">
</longdesc>
</local_schema>
</entry>
- <entry name="media_autorun_never" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="media_autorun_never" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Never prompt or autorun/autostart programs when media are inserted">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="media_automount_open" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="media_automount_open" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Whether to automatically open a folder for automounted media">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="media_automount" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="media_automount" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Whether to automatically mount media">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="always_use_location_entry" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="always_use_location_entry" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Always use the location entry, instead of the pathbar">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="always_use_browser" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="always_use_browser" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Enables the classic Nautilus behavior, where all windows are browsers">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="exit_with_last_window" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="exit_with_last_window" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Nautilus will exit when last window destroyed.">
<default type="bool" value="false"/>
<longdesc>
</dir>
</dir>
<dir name="remote_access">
- <entry name="disable_xdamage" mtime="1329422100" type="schema" stype="bool" owner="gnome">
+ <entry name="disable_xdamage" mtime="1357376675" type="schema" stype="bool" owner="gnome">
<local_schema locale="C" short_desc="Whether we should disable the XDamage extension of X.org">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="use_upnp" mtime="1329422100" type="schema" stype="bool" owner="gnome">
+ <entry name="use_upnp" mtime="1357376675" type="schema" stype="bool" owner="gnome">
<local_schema locale="C" short_desc="Whether we should use UPNP to forward the port in routers">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="disable_background" mtime="1329422100" type="schema" stype="bool" owner="gnome">
+ <entry name="disable_background" mtime="1357376675" type="schema" stype="bool" owner="gnome">
<local_schema locale="C" short_desc="When true, disable the background on receive valid session">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="icon_visibility" mtime="1329422100" type="schema" stype="string" owner="gnome">
+ <entry name="icon_visibility" mtime="1357376675" type="schema" stype="string" owner="gnome">
<local_schema locale="C" short_desc="When the status icon should be shown">
<default type="string">
<stringvalue>client</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="lock_screen_on_disconnect" mtime="1329422100" type="schema" stype="bool" owner="gnome">
+ <entry name="lock_screen_on_disconnect" mtime="1357376675" type="schema" stype="bool" owner="gnome">
<local_schema locale="C" short_desc="Lock the screen when last user disconnect">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="mailto" mtime="1329422100" type="schema" stype="string" owner="gnome">
+ <entry name="mailto" mtime="1357376675" type="schema" stype="string" owner="gnome">
<local_schema locale="C" short_desc="E-mail address to which the remote desktop URL should be sent">
<default type="string">
<stringvalue></stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="vnc_password" mtime="1329422100" type="schema" stype="string" owner="gnome">
+ <entry name="vnc_password" mtime="1357376675" type="schema" stype="string" owner="gnome">
<local_schema locale="C" short_desc="Password required for "vnc" authentication">
<default type="string">
<stringvalue></stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="authentication_methods" mtime="1329422100" type="schema" stype="list" owner="gnome" list_type="string">
+ <entry name="authentication_methods" mtime="1357376675" type="schema" stype="list" owner="gnome" list_type="string">
<local_schema locale="C" short_desc="Allowed authentication methods">
<default type="list" ltype="string">
<li type="string">
</longdesc>
</local_schema>
</entry>
- <entry name="require_encryption" mtime="1329422100" type="schema" stype="bool" owner="gnome">
+ <entry name="require_encryption" mtime="1357376675" type="schema" stype="bool" owner="gnome">
<local_schema locale="C" short_desc="Require encryption">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="alternative_port" mtime="1329422100" type="schema" stype="int" owner="gnome">
+ <entry name="alternative_port" mtime="1357376675" type="schema" stype="int" owner="gnome">
<local_schema locale="C" short_desc="Alternative port number">
<default type="int" value="5900"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="use_alternative_port" mtime="1329422100" type="schema" stype="bool" owner="gnome">
+ <entry name="use_alternative_port" mtime="1357376675" type="schema" stype="bool" owner="gnome">
<local_schema locale="C" short_desc="Listen an alternative port">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="network_interface" mtime="1329422100" type="schema" stype="string" owner="gnome">
+ <entry name="network_interface" mtime="1357376675" type="schema" stype="string" owner="gnome">
<local_schema locale="C" short_desc="Network interface for listening">
<default type="string">
<stringvalue></stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="view_only" mtime="1329422100" type="schema" stype="bool" owner="gnome">
+ <entry name="view_only" mtime="1357376675" type="schema" stype="bool" owner="gnome">
<local_schema locale="C" short_desc="Only allow remote users to view the desktop">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="prompt_enabled" mtime="1329422100" type="schema" stype="bool" owner="gnome">
+ <entry name="prompt_enabled" mtime="1357376675" type="schema" stype="bool" owner="gnome">
<local_schema locale="C" short_desc="Prompt the user before completing a connection">
<default type="bool" value="true"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="enabled" mtime="1329422100" type="schema" stype="bool" owner="gnome">
+ <entry name="enabled" mtime="1357376675" type="schema" stype="bool" owner="gnome">
<local_schema locale="C" short_desc="Enable remote desktop access">
<default type="bool" value="false"/>
<longdesc>
</entry>
</dir>
<dir name="file_views">
- <entry name="tabs_open_position" mtime="1335182090" type="schema" stype="string" owner="nautilus">
+ <entry name="tabs_open_position" mtime="1357321147" type="schema" stype="string" owner="nautilus">
<local_schema locale="C" short_desc="Where to position newly open tabs in browser windows.">
<default type="string">
<stringvalue>after_current_tab</stringvalue>
</longdesc>
</local_schema>
</entry>
- <entry name="show_backup_files" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="show_backup_files" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Whether to show backup files">
<default type="bool" value="false"/>
<longdesc>
</longdesc>
</local_schema>
</entry>
- <entry name="show_hidden_files" mtime="1335182090" type="schema" stype="bool" owner="nautilus">
+ <entry name="show_hidden_files" mtime="1357321147" type="schema" stype="bool" owner="nautilus">
<local_schema locale="C" short_desc="Whether to show hidden files">
<default type="bool" value="false"/>
<longdesc>
</entry>
</dir>
<dir name="application@x-flac">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-xm">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-vorbis@ogg">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-vorbis">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-wavpack">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-wav">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-tta">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-speex">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-sbc">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-real-audio">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-realaudio">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-pn-windows-acm">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-pn-wav">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-pn-au">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-pn-aiff">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-musepack">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-ms-wma">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-ms-wax">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-ms-asx">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-ms-asf">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-mpeg">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-mp3">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-mod">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-matroska">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-m4a">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-it">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-gsm">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-flac">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-ape">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-aiff">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@vnd.rn-realaudio">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@prs.sid">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@ogg">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@mpeg">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@mp4">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@midi">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@basic">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@AMR-WB">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@AMR">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@ac3">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@3gpp">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
</dir>
<dir name="audio@x-pn-realaudio">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-totem-stream">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-theora@ogg">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-ogm@ogg">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-nsv">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-ms-wvx">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-ms-wmx">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-ms-wmv">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-ms-wm">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-msvideo">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-ms-asx">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-ms-asf">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-mpeg">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-matroska">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-m4v">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-flv">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-flic">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-fli">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-flc">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-avi">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@x-anim">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@webm">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@vnd.vivo">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@vnd.rn-realvideo">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@vnd.divx">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@vivo">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@quicktime">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@ogg">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@msvideo">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@mpeg">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@mp4v-es">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@mp4">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@mp2t">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@flv">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@fli">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@dv">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="video@3gpp">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="text@x-google-video-pointer">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="misc@ultravox">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="image@x-pict">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="image@vnd.rn-realpix">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@x-shorten">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@x-quicktimeplayer">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@x-ogg">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@x-netshow-channel">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@x-matroska">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@x-flash-video">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@x-extension-mp4">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@x-extension-m4a">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@vnd.rn-realmedia">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@vnd.ms-wpl">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@sdp">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@ram">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@ogg">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="application@mxf">
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>/usr/bin/totem-video-thumbnailer -s %s %u %o</stringvalue>
</default>
</local_schema>
</entry>
- <entry name="enable" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enable" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
</dir>
<dir name="ymsgr">
- <entry name="needs_terminal" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="needs_terminal" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Run the command in a terminal">
<default type="bool" value="false"/>
<longdesc>True if the command used to handle this type of URL should be run in a terminal.</longdesc>
</local_schema>
</entry>
- <entry name="command" mtime="1344969156" type="schema" stype="string" owner="purple">
+ <entry name="command" mtime="1357345118" type="schema" stype="string" owner="purple">
<local_schema locale="C" short_desc="The handler for "ymsgr" URLs">
<default type="string">
<stringvalue>purple-url-handler "%s"</stringvalue>
<longdesc>The command used to handle "ymsgr" URLs, if enabled.</longdesc>
</local_schema>
</entry>
- <entry name="enabled" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="enabled" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Whether the specified command should handle "ymsgr" URLs">
<default type="bool" value="true"/>
<longdesc>True if the command specified in the "command" key should handle "ymsgr" URLs.</longdesc>
</entry>
</dir>
<dir name="xmpp">
- <entry name="needs_terminal" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="needs_terminal" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Run the command in a terminal">
<default type="bool" value="false"/>
<longdesc>True if the command used to handle this type of URL should be run in a terminal.</longdesc>
</local_schema>
</entry>
- <entry name="command" mtime="1344969156" type="schema" stype="string" owner="purple">
+ <entry name="command" mtime="1357345118" type="schema" stype="string" owner="purple">
<local_schema locale="C" short_desc="The handler for "xmpp" URLs">
<default type="string">
<stringvalue>purple-url-handler "%s"</stringvalue>
<longdesc>The command used to handle "xmpp" URLs, if enabled.</longdesc>
</local_schema>
</entry>
- <entry name="enabled" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="enabled" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Whether the specified command should handle "xmpp" URLs">
<default type="bool" value="true"/>
<longdesc>True if the command specified in the "command" key should handle "xmpp" URLs.</longdesc>
</entry>
</dir>
<dir name="sip">
- <entry name="needs_terminal" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="needs_terminal" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Run the command in a terminal">
<default type="bool" value="false"/>
<longdesc>True if the command used to handle this type of URL should be run in a terminal.</longdesc>
</local_schema>
</entry>
- <entry name="command" mtime="1344969156" type="schema" stype="string" owner="purple">
+ <entry name="command" mtime="1357345118" type="schema" stype="string" owner="purple">
<local_schema locale="C" short_desc="The handler for "sip" URLs">
<default type="string">
<stringvalue>purple-url-handler "%s"</stringvalue>
<longdesc>The command used to handle "sip" URLs, if enabled.</longdesc>
</local_schema>
</entry>
- <entry name="enabled" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="enabled" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Whether the specified command should handle "sip" URLs">
<default type="bool" value="true"/>
<longdesc>True if the command specified in the "command" key should handle "sip" URLs.</longdesc>
</entry>
</dir>
<dir name="msnim">
- <entry name="needs_terminal" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="needs_terminal" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Run the command in a terminal">
<default type="bool" value="false"/>
<longdesc>True if the command used to handle this type of URL should be run in a terminal.</longdesc>
</local_schema>
</entry>
- <entry name="command" mtime="1344969156" type="schema" stype="string" owner="purple">
+ <entry name="command" mtime="1357345118" type="schema" stype="string" owner="purple">
<local_schema locale="C" short_desc="The handler for "msnim" URLs">
<default type="string">
<stringvalue>purple-url-handler "%s"</stringvalue>
<longdesc>The command used to handle "msnim" URLs, if enabled.</longdesc>
</local_schema>
</entry>
- <entry name="enabled" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="enabled" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Whether the specified command should handle "msnim" URLs">
<default type="bool" value="true"/>
<longdesc>True if the command specified in the "command" key should handle "msnim" URLs.</longdesc>
</entry>
</dir>
<dir name="irc">
- <entry name="needs_terminal" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="needs_terminal" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Run the command in a terminal">
<default type="bool" value="false"/>
<longdesc>True if the command used to handle this type of URL should be run in a terminal.</longdesc>
</local_schema>
</entry>
- <entry name="command" mtime="1344969156" type="schema" stype="string" owner="purple">
+ <entry name="command" mtime="1357345118" type="schema" stype="string" owner="purple">
<local_schema locale="C" short_desc="The handler for "irc" URLs">
<default type="string">
<stringvalue>purple-url-handler "%s"</stringvalue>
<longdesc>The command used to handle "irc" URLs, if enabled.</longdesc>
</local_schema>
</entry>
- <entry name="enabled" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="enabled" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Whether the specified command should handle "irc" URLs">
<default type="bool" value="true"/>
<longdesc>True if the command specified in the "command" key should handle "irc" URLs.</longdesc>
</entry>
</dir>
<dir name="icq">
- <entry name="needs_terminal" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="needs_terminal" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Run the command in a terminal">
<default type="bool" value="false"/>
<longdesc>True if the command used to handle this type of URL should be run in a terminal.</longdesc>
</local_schema>
</entry>
- <entry name="command" mtime="1344969156" type="schema" stype="string" owner="purple">
+ <entry name="command" mtime="1357345118" type="schema" stype="string" owner="purple">
<local_schema locale="C" short_desc="The handler for "icq" URLs">
<default type="string">
<stringvalue>purple-url-handler "%s"</stringvalue>
<longdesc>The command used to handle "icq" URLs, if enabled.</longdesc>
</local_schema>
</entry>
- <entry name="enabled" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="enabled" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Whether the specified command should handle "icq" URLs">
<default type="bool" value="true"/>
<longdesc>True if the command specified in the "command" key should handle "icq" URLs.</longdesc>
</entry>
</dir>
<dir name="gg">
- <entry name="needs_terminal" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="needs_terminal" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Run the command in a terminal">
<default type="bool" value="false"/>
<longdesc>True if the command used to handle this type of URL should be run in a terminal.</longdesc>
</local_schema>
</entry>
- <entry name="command" mtime="1344969156" type="schema" stype="string" owner="purple">
+ <entry name="command" mtime="1357345118" type="schema" stype="string" owner="purple">
<local_schema locale="C" short_desc="The handler for "gg" URLs">
<default type="string">
<stringvalue>purple-url-handler "%s"</stringvalue>
<longdesc>The command used to handle "gg" URLs, if enabled.</longdesc>
</local_schema>
</entry>
- <entry name="enabled" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="enabled" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Whether the specified command should handle "gg" URLs">
<default type="bool" value="true"/>
<longdesc>True if the command specified in the "command" key should handle "gg" URLs.</longdesc>
</entry>
</dir>
<dir name="icyx">
- <entry name="enabled" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enabled" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
- <entry name="needs_terminal" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="needs_terminal" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>totem "%s"</stringvalue>
</entry>
</dir>
<dir name="icy">
- <entry name="enabled" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enabled" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
- <entry name="needs_terminal" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="needs_terminal" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>totem "%s"</stringvalue>
</entry>
</dir>
<dir name="uvox">
- <entry name="enabled" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enabled" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
- <entry name="needs_terminal" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="needs_terminal" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>totem "%s"</stringvalue>
</entry>
</dir>
<dir name="mmsh">
- <entry name="enabled" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enabled" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
- <entry name="needs_terminal" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="needs_terminal" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>totem "%s"</stringvalue>
</entry>
</dir>
<dir name="rtsp">
- <entry name="enabled" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enabled" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
- <entry name="needs_terminal" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="needs_terminal" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>totem "%s"</stringvalue>
</entry>
</dir>
<dir name="rtp">
- <entry name="enabled" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enabled" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
- <entry name="needs_terminal" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="needs_terminal" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>totem "%s"</stringvalue>
</entry>
</dir>
<dir name="net">
- <entry name="enabled" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enabled" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
- <entry name="needs_terminal" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="needs_terminal" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>totem "%s"</stringvalue>
</entry>
</dir>
<dir name="mms">
- <entry name="enabled" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enabled" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
- <entry name="needs_terminal" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="needs_terminal" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>totem "%s"</stringvalue>
</entry>
</dir>
<dir name="pnm">
- <entry name="enabled" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="enabled" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="true"/>
</local_schema>
</entry>
- <entry name="needs_terminal" mtime="1331570243" type="schema" stype="bool" owner="totem">
+ <entry name="needs_terminal" mtime="1357376780" type="schema" stype="bool" owner="totem">
<local_schema locale="C" short_desc="">
<default type="bool" value="false"/>
</local_schema>
</entry>
- <entry name="command" mtime="1331570243" type="schema" stype="string" owner="totem">
+ <entry name="command" mtime="1357376780" type="schema" stype="string" owner="totem">
<local_schema locale="C" short_desc="">
<default type="string">
<stringvalue>totem "%s"</stringvalue>
</entry>
</dir>
<dir name="aim">
- <entry name="needs_terminal" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="needs_terminal" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Run the command in a terminal">
<default type="bool" value="false"/>
<longdesc>True if the command used to handle this type of URL should be run in a terminal.</longdesc>
</local_schema>
</entry>
- <entry name="command" mtime="1344969156" type="schema" stype="string" owner="purple">
+ <entry name="command" mtime="1357345118" type="schema" stype="string" owner="purple">
<local_schema locale="C" short_desc="The handler for "aim" URLs">
<default type="string">
<stringvalue>purple-url-handler "%s"</stringvalue>
<longdesc>The command used to handle "aim" URLs, if enabled.</longdesc>
</local_schema>
</entry>
- <entry name="enabled" mtime="1344969156" type="schema" stype="bool" owner="purple">
+ <entry name="enabled" mtime="1357345118" type="schema" stype="bool" owner="purple">
<local_schema locale="C" short_desc="Whether the specified command should handle "aim" URLs">
<default type="bool" value="true"/>
<longdesc>True if the command specified in the "command" key should handle "aim" URLs.</longdesc>
--- /dev/null
+#!/sbin/runscript
+
+depend() {
+ need net
+ after bootmisc
+}
+
+start() {
+ ebegin "Starting Coherence"
+ start-stop-daemon --start --exec /usr/bin/coherence \
+ --pidfile /var/run/coherence.pid \
+ --background \
+ -- -c /etc/coherence.conf
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping Coherence"
+ start-stop-daemon --stop --exec /usr/bin/coherence \
+ --pidfile /var/run/coherence.pid
+ eend $?
+}
+
if [ "$RC_UNAME" = Linux ]; then
no_netdev="-O no_netdev"
+ if mountinfo -q /usr; then
+ touch $RC_SVCDIR/usr_premounted
+ fi
fi
ebegin "Mounting local filesystems"
mount -at "$types" $no_netdev
done
if [ "$RC_UNAME" = Linux ]; then
- no_umounts_r="$no_umounts_r|/proc|/proc/.*|/run|/sys|/sys/.*|/usr"
+ no_umounts_r="$no_umounts_r|/proc|/proc/.*|/run|/sys|/sys/.*"
+ if [ -e $rc_svcdir/usr_premounted ]; then
+ no_umounts_r="$no_umounts_r|/usr"
+ fi
fi
no_umounts_r="^($no_umounts_r)$"
#!/sbin/runscript
-# $Header: /var/cvsroot/gentoo-x86/net-misc/memcached/files/1.3.3/init,v 1.2 2011/12/31 20:36:20 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/memcached/files/1.3.3/init,v 1.3 2012/12/23 18:05:21 robbat2 Exp $
CONF="${SVCNAME#*.}"
CONFBASE="/etc/conf.d/memcached"
[ -z "${PIDBASE}" ] && PIDBASE="/var/run/memcached/memcached"
-[ "${CONF}" == "memcached" ] && CONF=''
+[ "${CONF}" = "memcached" ] && CONF=''
if [ -n "${CONF}" ]; then
PIDFILE="${PIDBASE}-${PORT}.${CONF}.pid"
CONFSRC="${CONFBASE}.${CONF}"
if [ -f "${CONFSRC}" ]; then
- source "${CONFSRC}"
+ . "${CONFSRC}"
else
eerror "The configuration file $CONFSRC was not found!"
fi
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/files/3.5/samba.initd,v 1.4 2011/09/14 22:52:33 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/files/3.6/samba.initd,v 1.3 2011/09/14 22:52:33 polynomial-c Exp $
extra_started_commands="reload"
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-nds/openldap/files/slapd-initd-2.4.28-r1,v 1.2 2012/02/12 21:35:04 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-nds/openldap/files/slapd-initd-2.4.28-r1,v 1.4 2012/05/27 07:22:43 robbat2 Exp $
extra_commands="checkconfig"
}
start() {
+ checkpath -q -d /var/run/openldap/ -o ldap:ldap
if ! checkconfig -Q ; then
eerror "There is a problem with your slapd.conf!"
return 1
cd /
start-stop-daemon --start --quiet --background --make-pidfile \
--pidfile /var/run/svnserve.pid --exec /usr/bin/svnserve \
- --user ${SVNSERVE_USER:-apache} --group ${SVNSERVE_GROUP:-apache} -- \
+ --user ${SVNSERVE_USER:-svn} --group ${SVNSERVE_GROUP:-svnusers} -- \
--foreground --daemon ${SVNSERVE_OPTS:---root=/var/svn}
eend $?
}
--- /dev/null
+#
+# Automatically generated file; DO NOT EDIT.
+# Linux/x86_64 3.6.11-gentoo Kernel Configuration
+#
+CONFIG_64BIT=y
+# CONFIG_X86_32 is not set
+CONFIG_X86_64=y
+CONFIG_X86=y
+CONFIG_INSTRUCTION_DECODER=y
+CONFIG_OUTPUT_FORMAT="elf64-x86-64"
+CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
+CONFIG_LOCKDEP_SUPPORT=y
+CONFIG_STACKTRACE_SUPPORT=y
+CONFIG_HAVE_LATENCYTOP_SUPPORT=y
+CONFIG_MMU=y
+CONFIG_NEED_DMA_MAP_STATE=y
+CONFIG_NEED_SG_DMA_LENGTH=y
+CONFIG_GENERIC_ISA_DMA=y
+CONFIG_GENERIC_BUG=y
+CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
+CONFIG_GENERIC_HWEIGHT=y
+CONFIG_ARCH_MAY_HAVE_PC_FDC=y
+# CONFIG_RWSEM_GENERIC_SPINLOCK is not set
+CONFIG_RWSEM_XCHGADD_ALGORITHM=y
+CONFIG_GENERIC_CALIBRATE_DELAY=y
+CONFIG_ARCH_HAS_CPU_RELAX=y
+CONFIG_ARCH_HAS_DEFAULT_IDLE=y
+CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
+CONFIG_ARCH_HAS_CPU_AUTOPROBE=y
+CONFIG_HAVE_SETUP_PER_CPU_AREA=y
+CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
+CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
+CONFIG_ARCH_HIBERNATION_POSSIBLE=y
+CONFIG_ARCH_SUSPEND_POSSIBLE=y
+CONFIG_ZONE_DMA32=y
+CONFIG_AUDIT_ARCH=y
+CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
+CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
+CONFIG_HAVE_INTEL_TXT=y
+CONFIG_X86_64_SMP=y
+CONFIG_X86_HT=y
+CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11"
+CONFIG_ARCH_CPU_PROBE_RELEASE=y
+CONFIG_ARCH_SUPPORTS_UPROBES=y
+CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
+CONFIG_HAVE_IRQ_WORK=y
+CONFIG_IRQ_WORK=y
+CONFIG_BUILDTIME_EXTABLE_SORT=y
+
+#
+# General setup
+#
+CONFIG_EXPERIMENTAL=y
+CONFIG_INIT_ENV_ARG_LIMIT=32
+CONFIG_CROSS_COMPILE=""
+CONFIG_LOCALVERSION=""
+# CONFIG_LOCALVERSION_AUTO is not set
+CONFIG_HAVE_KERNEL_GZIP=y
+CONFIG_HAVE_KERNEL_BZIP2=y
+CONFIG_HAVE_KERNEL_LZMA=y
+CONFIG_HAVE_KERNEL_XZ=y
+CONFIG_HAVE_KERNEL_LZO=y
+CONFIG_KERNEL_GZIP=y
+# CONFIG_KERNEL_BZIP2 is not set
+# CONFIG_KERNEL_LZMA is not set
+# CONFIG_KERNEL_XZ is not set
+# CONFIG_KERNEL_LZO is not set
+CONFIG_DEFAULT_HOSTNAME="bruni"
+CONFIG_SWAP=y
+CONFIG_SYSVIPC=y
+CONFIG_SYSVIPC_SYSCTL=y
+CONFIG_POSIX_MQUEUE=y
+CONFIG_POSIX_MQUEUE_SYSCTL=y
+CONFIG_BSD_PROCESS_ACCT=y
+# CONFIG_BSD_PROCESS_ACCT_V3 is not set
+# CONFIG_FHANDLE is not set
+CONFIG_TASKSTATS=y
+CONFIG_TASK_DELAY_ACCT=y
+CONFIG_TASK_XACCT=y
+CONFIG_TASK_IO_ACCOUNTING=y
+CONFIG_AUDIT=y
+CONFIG_AUDITSYSCALL=y
+CONFIG_AUDIT_WATCH=y
+CONFIG_AUDIT_TREE=y
+# CONFIG_AUDIT_LOGINUID_IMMUTABLE is not set
+CONFIG_HAVE_GENERIC_HARDIRQS=y
+
+#
+# IRQ subsystem
+#
+CONFIG_GENERIC_HARDIRQS=y
+CONFIG_GENERIC_IRQ_PROBE=y
+CONFIG_GENERIC_IRQ_SHOW=y
+CONFIG_GENERIC_PENDING_IRQ=y
+CONFIG_IRQ_DOMAIN=y
+CONFIG_IRQ_DOMAIN_DEBUG=y
+CONFIG_IRQ_FORCED_THREADING=y
+CONFIG_SPARSE_IRQ=y
+CONFIG_CLOCKSOURCE_WATCHDOG=y
+CONFIG_ARCH_CLOCKSOURCE_DATA=y
+CONFIG_GENERIC_TIME_VSYSCALL=y
+CONFIG_GENERIC_CLOCKEVENTS=y
+CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
+CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
+CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
+CONFIG_GENERIC_CMOS_UPDATE=y
+
+#
+# Timers subsystem
+#
+CONFIG_TICK_ONESHOT=y
+CONFIG_NO_HZ=y
+CONFIG_HIGH_RES_TIMERS=y
+
+#
+# RCU Subsystem
+#
+CONFIG_TREE_RCU=y
+# CONFIG_PREEMPT_RCU is not set
+CONFIG_RCU_FANOUT=64
+CONFIG_RCU_FANOUT_LEAF=16
+# CONFIG_RCU_FANOUT_EXACT is not set
+# CONFIG_RCU_FAST_NO_HZ is not set
+# CONFIG_TREE_RCU_TRACE is not set
+CONFIG_IKCONFIG=y
+CONFIG_IKCONFIG_PROC=y
+CONFIG_LOG_BUF_SHIFT=21
+CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
+CONFIG_CGROUPS=y
+# CONFIG_CGROUP_DEBUG is not set
+CONFIG_CGROUP_FREEZER=y
+CONFIG_CGROUP_DEVICE=y
+CONFIG_CPUSETS=y
+CONFIG_PROC_PID_CPUSET=y
+CONFIG_CGROUP_CPUACCT=y
+CONFIG_RESOURCE_COUNTERS=y
+CONFIG_MEMCG=y
+CONFIG_MEMCG_SWAP=y
+CONFIG_MEMCG_SWAP_ENABLED=y
+CONFIG_MEMCG_KMEM=y
+CONFIG_CGROUP_HUGETLB=y
+CONFIG_CGROUP_PERF=y
+CONFIG_CGROUP_SCHED=y
+CONFIG_FAIR_GROUP_SCHED=y
+CONFIG_CFS_BANDWIDTH=y
+CONFIG_RT_GROUP_SCHED=y
+CONFIG_BLK_CGROUP=y
+# CONFIG_DEBUG_BLK_CGROUP is not set
+# CONFIG_CHECKPOINT_RESTORE is not set
+CONFIG_NAMESPACES=y
+CONFIG_UTS_NS=y
+CONFIG_IPC_NS=y
+CONFIG_PID_NS=y
+CONFIG_NET_NS=y
+# CONFIG_SCHED_AUTOGROUP is not set
+CONFIG_MM_OWNER=y
+CONFIG_SYSFS_DEPRECATED=y
+# CONFIG_SYSFS_DEPRECATED_V2 is not set
+CONFIG_RELAY=y
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_INITRAMFS_SOURCE=""
+CONFIG_RD_GZIP=y
+CONFIG_RD_BZIP2=y
+CONFIG_RD_LZMA=y
+CONFIG_RD_XZ=y
+CONFIG_RD_LZO=y
+# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
+CONFIG_SYSCTL=y
+CONFIG_ANON_INODES=y
+# CONFIG_EXPERT is not set
+CONFIG_UID16=y
+# CONFIG_SYSCTL_SYSCALL is not set
+CONFIG_KALLSYMS=y
+# CONFIG_KALLSYMS_ALL is not set
+CONFIG_HOTPLUG=y
+CONFIG_PRINTK=y
+CONFIG_BUG=y
+CONFIG_ELF_CORE=y
+CONFIG_PCSPKR_PLATFORM=y
+CONFIG_HAVE_PCSPKR_PLATFORM=y
+CONFIG_BASE_FULL=y
+CONFIG_FUTEX=y
+CONFIG_EPOLL=y
+CONFIG_SIGNALFD=y
+CONFIG_TIMERFD=y
+CONFIG_EVENTFD=y
+CONFIG_SHMEM=y
+CONFIG_AIO=y
+# CONFIG_EMBEDDED is not set
+CONFIG_HAVE_PERF_EVENTS=y
+
+#
+# Kernel Performance Events And Counters
+#
+CONFIG_PERF_EVENTS=y
+# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
+CONFIG_VM_EVENT_COUNTERS=y
+CONFIG_PCI_QUIRKS=y
+CONFIG_SLUB_DEBUG=y
+# CONFIG_COMPAT_BRK is not set
+# CONFIG_SLAB is not set
+CONFIG_SLUB=y
+CONFIG_PROFILING=y
+CONFIG_TRACEPOINTS=y
+# CONFIG_OPROFILE is not set
+CONFIG_HAVE_OPROFILE=y
+CONFIG_OPROFILE_NMI_TIMER=y
+CONFIG_KPROBES=y
+# CONFIG_JUMP_LABEL is not set
+CONFIG_OPTPROBES=y
+CONFIG_UPROBES=y
+CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
+CONFIG_KRETPROBES=y
+CONFIG_USER_RETURN_NOTIFIER=y
+CONFIG_HAVE_IOREMAP_PROT=y
+CONFIG_HAVE_KPROBES=y
+CONFIG_HAVE_KRETPROBES=y
+CONFIG_HAVE_OPTPROBES=y
+CONFIG_HAVE_ARCH_TRACEHOOK=y
+CONFIG_HAVE_DMA_ATTRS=y
+CONFIG_USE_GENERIC_SMP_HELPERS=y
+CONFIG_GENERIC_SMP_IDLE_THREAD=y
+CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
+CONFIG_HAVE_DMA_API_DEBUG=y
+CONFIG_HAVE_HW_BREAKPOINT=y
+CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
+CONFIG_HAVE_USER_RETURN_NOTIFIER=y
+CONFIG_HAVE_PERF_EVENTS_NMI=y
+CONFIG_HAVE_ARCH_JUMP_LABEL=y
+CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
+CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
+CONFIG_HAVE_CMPXCHG_LOCAL=y
+CONFIG_HAVE_CMPXCHG_DOUBLE=y
+CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
+CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
+CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
+CONFIG_SECCOMP_FILTER=y
+
+#
+# GCOV-based kernel profiling
+#
+# CONFIG_GCOV_KERNEL is not set
+# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
+CONFIG_SLABINFO=y
+CONFIG_RT_MUTEXES=y
+CONFIG_BASE_SMALL=0
+CONFIG_MODULES=y
+# CONFIG_MODULE_FORCE_LOAD is not set
+CONFIG_MODULE_UNLOAD=y
+CONFIG_MODULE_FORCE_UNLOAD=y
+# CONFIG_MODVERSIONS is not set
+# CONFIG_MODULE_SRCVERSION_ALL is not set
+CONFIG_STOP_MACHINE=y
+CONFIG_BLOCK=y
+CONFIG_BLK_DEV_BSG=y
+CONFIG_BLK_DEV_BSGLIB=y
+# CONFIG_BLK_DEV_INTEGRITY is not set
+CONFIG_BLK_DEV_THROTTLING=y
+
+#
+# Partition Types
+#
+CONFIG_PARTITION_ADVANCED=y
+CONFIG_ACORN_PARTITION=y
+CONFIG_ACORN_PARTITION_CUMANA=y
+CONFIG_ACORN_PARTITION_EESOX=y
+CONFIG_ACORN_PARTITION_ICS=y
+CONFIG_ACORN_PARTITION_ADFS=y
+CONFIG_ACORN_PARTITION_POWERTEC=y
+CONFIG_ACORN_PARTITION_RISCIX=y
+CONFIG_OSF_PARTITION=y
+CONFIG_AMIGA_PARTITION=y
+CONFIG_ATARI_PARTITION=y
+CONFIG_MAC_PARTITION=y
+CONFIG_MSDOS_PARTITION=y
+CONFIG_BSD_DISKLABEL=y
+CONFIG_MINIX_SUBPARTITION=y
+CONFIG_SOLARIS_X86_PARTITION=y
+CONFIG_UNIXWARE_DISKLABEL=y
+CONFIG_LDM_PARTITION=y
+CONFIG_LDM_DEBUG=y
+CONFIG_SGI_PARTITION=y
+CONFIG_ULTRIX_PARTITION=y
+CONFIG_SUN_PARTITION=y
+CONFIG_KARMA_PARTITION=y
+CONFIG_EFI_PARTITION=y
+CONFIG_SYSV68_PARTITION=y
+CONFIG_BLOCK_COMPAT=y
+
+#
+# IO Schedulers
+#
+CONFIG_IOSCHED_NOOP=y
+CONFIG_IOSCHED_DEADLINE=y
+CONFIG_IOSCHED_CFQ=y
+CONFIG_CFQ_GROUP_IOSCHED=y
+# CONFIG_DEFAULT_DEADLINE is not set
+CONFIG_DEFAULT_CFQ=y
+# CONFIG_DEFAULT_NOOP is not set
+CONFIG_DEFAULT_IOSCHED="cfq"
+CONFIG_PREEMPT_NOTIFIERS=y
+CONFIG_PADATA=y
+# CONFIG_INLINE_SPIN_TRYLOCK is not set
+# CONFIG_INLINE_SPIN_TRYLOCK_BH is not set
+# CONFIG_INLINE_SPIN_LOCK is not set
+# CONFIG_INLINE_SPIN_LOCK_BH is not set
+# CONFIG_INLINE_SPIN_LOCK_IRQ is not set
+# CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set
+# CONFIG_INLINE_SPIN_UNLOCK_BH is not set
+CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
+# CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set
+# CONFIG_INLINE_READ_TRYLOCK is not set
+# CONFIG_INLINE_READ_LOCK is not set
+# CONFIG_INLINE_READ_LOCK_BH is not set
+# CONFIG_INLINE_READ_LOCK_IRQ is not set
+# CONFIG_INLINE_READ_LOCK_IRQSAVE is not set
+CONFIG_INLINE_READ_UNLOCK=y
+# CONFIG_INLINE_READ_UNLOCK_BH is not set
+CONFIG_INLINE_READ_UNLOCK_IRQ=y
+# CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set
+# CONFIG_INLINE_WRITE_TRYLOCK is not set
+# CONFIG_INLINE_WRITE_LOCK is not set
+# CONFIG_INLINE_WRITE_LOCK_BH is not set
+# CONFIG_INLINE_WRITE_LOCK_IRQ is not set
+# CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set
+CONFIG_INLINE_WRITE_UNLOCK=y
+# CONFIG_INLINE_WRITE_UNLOCK_BH is not set
+CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
+# CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set
+CONFIG_MUTEX_SPIN_ON_OWNER=y
+CONFIG_FREEZER=y
+
+#
+# Processor type and features
+#
+CONFIG_ZONE_DMA=y
+CONFIG_SMP=y
+CONFIG_X86_X2APIC=y
+CONFIG_X86_MPPARSE=y
+CONFIG_X86_EXTENDED_PLATFORM=y
+# CONFIG_X86_NUMACHIP is not set
+# CONFIG_X86_VSMP is not set
+# CONFIG_X86_UV is not set
+CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
+CONFIG_SCHED_OMIT_FRAME_POINTER=y
+CONFIG_PARAVIRT_GUEST=y
+# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
+CONFIG_XEN=y
+CONFIG_XEN_DOM0=y
+CONFIG_XEN_PRIVILEGED_GUEST=y
+CONFIG_XEN_PVHVM=y
+CONFIG_XEN_MAX_DOMAIN_MEMORY=500
+CONFIG_XEN_SAVE_RESTORE=y
+# CONFIG_XEN_DEBUG_FS is not set
+CONFIG_KVM_CLOCK=y
+CONFIG_KVM_GUEST=y
+CONFIG_PARAVIRT=y
+# CONFIG_PARAVIRT_SPINLOCKS is not set
+CONFIG_PARAVIRT_CLOCK=y
+# CONFIG_PARAVIRT_DEBUG is not set
+CONFIG_NO_BOOTMEM=y
+# CONFIG_MEMTEST is not set
+CONFIG_MK8=y
+# CONFIG_MPSC is not set
+# CONFIG_MCORE2 is not set
+# CONFIG_MATOM is not set
+# CONFIG_GENERIC_CPU is not set
+CONFIG_X86_INTERNODE_CACHE_SHIFT=6
+CONFIG_X86_CMPXCHG=y
+CONFIG_X86_L1_CACHE_SHIFT=6
+CONFIG_X86_XADD=y
+CONFIG_X86_WP_WORKS_OK=y
+CONFIG_X86_INTEL_USERCOPY=y
+CONFIG_X86_USE_PPRO_CHECKSUM=y
+CONFIG_X86_TSC=y
+CONFIG_X86_CMPXCHG64=y
+CONFIG_X86_CMOV=y
+CONFIG_X86_MINIMUM_CPU_FAMILY=64
+CONFIG_X86_DEBUGCTLMSR=y
+CONFIG_CPU_SUP_INTEL=y
+CONFIG_CPU_SUP_AMD=y
+CONFIG_CPU_SUP_CENTAUR=y
+CONFIG_HPET_TIMER=y
+CONFIG_HPET_EMULATE_RTC=y
+CONFIG_DMI=y
+CONFIG_GART_IOMMU=y
+CONFIG_CALGARY_IOMMU=y
+CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
+CONFIG_SWIOTLB=y
+CONFIG_IOMMU_HELPER=y
+# CONFIG_MAXSMP is not set
+CONFIG_NR_CPUS=64
+CONFIG_SCHED_SMT=y
+CONFIG_SCHED_MC=y
+# CONFIG_IRQ_TIME_ACCOUNTING is not set
+# CONFIG_PREEMPT_NONE is not set
+CONFIG_PREEMPT_VOLUNTARY=y
+# CONFIG_PREEMPT is not set
+CONFIG_X86_LOCAL_APIC=y
+CONFIG_X86_IO_APIC=y
+CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
+CONFIG_X86_MCE=y
+CONFIG_X86_MCE_INTEL=y
+CONFIG_X86_MCE_AMD=y
+CONFIG_X86_MCE_THRESHOLD=y
+# CONFIG_X86_MCE_INJECT is not set
+CONFIG_X86_THERMAL_VECTOR=y
+# CONFIG_I8K is not set
+CONFIG_MICROCODE=y
+CONFIG_MICROCODE_INTEL=y
+CONFIG_MICROCODE_AMD=y
+CONFIG_MICROCODE_OLD_INTERFACE=y
+CONFIG_X86_MSR=y
+CONFIG_X86_CPUID=y
+CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
+CONFIG_ARCH_DMA_ADDR_T_64BIT=y
+CONFIG_DIRECT_GBPAGES=y
+CONFIG_NUMA=y
+CONFIG_AMD_NUMA=y
+CONFIG_X86_64_ACPI_NUMA=y
+CONFIG_NODES_SPAN_OTHER_NODES=y
+# CONFIG_NUMA_EMU is not set
+CONFIG_NODES_SHIFT=6
+CONFIG_ARCH_SPARSEMEM_ENABLE=y
+CONFIG_ARCH_SPARSEMEM_DEFAULT=y
+CONFIG_ARCH_SELECT_MEMORY_MODEL=y
+CONFIG_ARCH_PROC_KCORE_TEXT=y
+CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
+CONFIG_SELECT_MEMORY_MODEL=y
+CONFIG_SPARSEMEM_MANUAL=y
+CONFIG_SPARSEMEM=y
+CONFIG_NEED_MULTIPLE_NODES=y
+CONFIG_HAVE_MEMORY_PRESENT=y
+CONFIG_SPARSEMEM_EXTREME=y
+CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
+CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
+CONFIG_SPARSEMEM_VMEMMAP=y
+CONFIG_HAVE_MEMBLOCK=y
+CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
+CONFIG_ARCH_DISCARD_MEMBLOCK=y
+# CONFIG_MEMORY_HOTPLUG is not set
+CONFIG_PAGEFLAGS_EXTENDED=y
+CONFIG_SPLIT_PTLOCK_CPUS=4
+# CONFIG_COMPACTION is not set
+CONFIG_MIGRATION=y
+CONFIG_PHYS_ADDR_T_64BIT=y
+CONFIG_ZONE_DMA_FLAG=1
+CONFIG_BOUNCE=y
+CONFIG_VIRT_TO_BUS=y
+CONFIG_MMU_NOTIFIER=y
+# CONFIG_KSM is not set
+CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
+CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
+# CONFIG_MEMORY_FAILURE is not set
+# CONFIG_TRANSPARENT_HUGEPAGE is not set
+CONFIG_CROSS_MEMORY_ATTACH=y
+# CONFIG_CLEANCACHE is not set
+CONFIG_FRONTSWAP=y
+CONFIG_X86_CHECK_BIOS_CORRUPTION=y
+CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
+CONFIG_X86_RESERVE_LOW=64
+CONFIG_MTRR=y
+# CONFIG_MTRR_SANITIZER is not set
+CONFIG_X86_PAT=y
+CONFIG_ARCH_USES_PG_UNCACHED=y
+CONFIG_ARCH_RANDOM=y
+CONFIG_EFI=y
+CONFIG_EFI_STUB=y
+CONFIG_SECCOMP=y
+# CONFIG_CC_STACKPROTECTOR is not set
+# CONFIG_HZ_100 is not set
+# CONFIG_HZ_250 is not set
+# CONFIG_HZ_300 is not set
+CONFIG_HZ_1000=y
+CONFIG_HZ=1000
+CONFIG_SCHED_HRTICK=y
+CONFIG_KEXEC=y
+CONFIG_CRASH_DUMP=y
+# CONFIG_KEXEC_JUMP is not set
+CONFIG_PHYSICAL_START=0x1000000
+CONFIG_RELOCATABLE=y
+CONFIG_PHYSICAL_ALIGN=0x1000000
+CONFIG_HOTPLUG_CPU=y
+# CONFIG_COMPAT_VDSO is not set
+# CONFIG_CMDLINE_BOOL is not set
+CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
+CONFIG_USE_PERCPU_NUMA_NODE_ID=y
+
+#
+# Power management and ACPI options
+#
+CONFIG_ARCH_HIBERNATION_HEADER=y
+CONFIG_SUSPEND=y
+CONFIG_SUSPEND_FREEZER=y
+CONFIG_HIBERNATE_CALLBACKS=y
+CONFIG_HIBERNATION=y
+CONFIG_PM_STD_PARTITION=""
+CONFIG_PM_SLEEP=y
+CONFIG_PM_SLEEP_SMP=y
+CONFIG_PM_AUTOSLEEP=y
+CONFIG_PM_WAKELOCKS=y
+CONFIG_PM_WAKELOCKS_LIMIT=100
+CONFIG_PM_WAKELOCKS_GC=y
+# CONFIG_PM_RUNTIME is not set
+CONFIG_PM=y
+CONFIG_PM_DEBUG=y
+# CONFIG_PM_ADVANCED_DEBUG is not set
+# CONFIG_PM_TEST_SUSPEND is not set
+CONFIG_PM_SLEEP_DEBUG=y
+CONFIG_PM_TRACE=y
+CONFIG_PM_TRACE_RTC=y
+CONFIG_ACPI=y
+CONFIG_ACPI_SLEEP=y
+CONFIG_ACPI_PROCFS=y
+# CONFIG_ACPI_PROCFS_POWER is not set
+CONFIG_ACPI_EC_DEBUGFS=y
+CONFIG_ACPI_PROC_EVENT=y
+CONFIG_ACPI_AC=y
+CONFIG_ACPI_BATTERY=m
+CONFIG_ACPI_BUTTON=y
+CONFIG_ACPI_VIDEO=m
+CONFIG_ACPI_FAN=y
+CONFIG_ACPI_DOCK=y
+CONFIG_ACPI_PROCESSOR=y
+CONFIG_ACPI_IPMI=m
+CONFIG_ACPI_HOTPLUG_CPU=y
+CONFIG_ACPI_PROCESSOR_AGGREGATOR=m
+CONFIG_ACPI_THERMAL=y
+CONFIG_ACPI_NUMA=y
+# CONFIG_ACPI_CUSTOM_DSDT is not set
+CONFIG_ACPI_BLACKLIST_YEAR=0
+# CONFIG_ACPI_DEBUG is not set
+CONFIG_ACPI_PCI_SLOT=m
+CONFIG_X86_PM_TIMER=y
+CONFIG_ACPI_CONTAINER=y
+# CONFIG_ACPI_SBS is not set
+CONFIG_ACPI_HED=m
+# CONFIG_ACPI_CUSTOM_METHOD is not set
+CONFIG_ACPI_BGRT=y
+# CONFIG_ACPI_APEI is not set
+# CONFIG_SFI is not set
+
+#
+# CPU Frequency scaling
+#
+CONFIG_CPU_FREQ=y
+CONFIG_CPU_FREQ_TABLE=y
+CONFIG_CPU_FREQ_STAT=m
+CONFIG_CPU_FREQ_STAT_DETAILS=y
+# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
+# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
+CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
+# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
+CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
+CONFIG_CPU_FREQ_GOV_POWERSAVE=m
+CONFIG_CPU_FREQ_GOV_USERSPACE=y
+CONFIG_CPU_FREQ_GOV_ONDEMAND=y
+CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m
+
+#
+# x86 CPU frequency scaling drivers
+#
+# CONFIG_X86_PCC_CPUFREQ is not set
+CONFIG_X86_ACPI_CPUFREQ=y
+CONFIG_X86_POWERNOW_K8=m
+# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
+# CONFIG_X86_P4_CLOCKMOD is not set
+
+#
+# shared options
+#
+# CONFIG_X86_SPEEDSTEP_LIB is not set
+CONFIG_CPU_IDLE=y
+CONFIG_CPU_IDLE_GOV_LADDER=y
+CONFIG_CPU_IDLE_GOV_MENU=y
+# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
+# CONFIG_INTEL_IDLE is not set
+
+#
+# Memory power savings
+#
+# CONFIG_I7300_IDLE is not set
+
+#
+# Bus options (PCI etc.)
+#
+CONFIG_PCI=y
+CONFIG_PCI_DIRECT=y
+CONFIG_PCI_MMCONFIG=y
+CONFIG_PCI_XEN=y
+CONFIG_PCI_DOMAINS=y
+# CONFIG_PCI_CNB20LE_QUIRK is not set
+CONFIG_PCIEPORTBUS=y
+# CONFIG_HOTPLUG_PCI_PCIE is not set
+CONFIG_PCIEAER=y
+# CONFIG_PCIE_ECRC is not set
+# CONFIG_PCIEAER_INJECT is not set
+CONFIG_PCIEASPM=y
+# CONFIG_PCIEASPM_DEBUG is not set
+CONFIG_PCIEASPM_DEFAULT=y
+# CONFIG_PCIEASPM_POWERSAVE is not set
+# CONFIG_PCIEASPM_PERFORMANCE is not set
+CONFIG_ARCH_SUPPORTS_MSI=y
+CONFIG_PCI_MSI=y
+# CONFIG_PCI_DEBUG is not set
+CONFIG_PCI_REALLOC_ENABLE_AUTO=y
+# CONFIG_PCI_STUB is not set
+CONFIG_XEN_PCIDEV_FRONTEND=y
+CONFIG_HT_IRQ=y
+CONFIG_PCI_ATS=y
+CONFIG_PCI_IOV=y
+CONFIG_PCI_PRI=y
+CONFIG_PCI_PASID=y
+CONFIG_PCI_IOAPIC=y
+CONFIG_PCI_LABEL=y
+CONFIG_ISA_DMA_API=y
+CONFIG_AMD_NB=y
+CONFIG_PCCARD=y
+CONFIG_PCMCIA=y
+CONFIG_PCMCIA_LOAD_CIS=y
+CONFIG_CARDBUS=y
+
+#
+# PC-card bridges
+#
+CONFIG_YENTA=y
+CONFIG_YENTA_O2=y
+CONFIG_YENTA_RICOH=y
+CONFIG_YENTA_TI=y
+CONFIG_YENTA_ENE_TUNE=y
+CONFIG_YENTA_TOSHIBA=y
+CONFIG_PD6729=m
+CONFIG_I82092=m
+CONFIG_PCCARD_NONSTATIC=y
+CONFIG_HOTPLUG_PCI=y
+CONFIG_HOTPLUG_PCI_FAKE=m
+CONFIG_HOTPLUG_PCI_ACPI=m
+CONFIG_HOTPLUG_PCI_ACPI_IBM=m
+# CONFIG_HOTPLUG_PCI_CPCI is not set
+CONFIG_HOTPLUG_PCI_SHPC=m
+# CONFIG_RAPIDIO is not set
+
+#
+# Executable file formats / Emulations
+#
+CONFIG_BINFMT_ELF=y
+CONFIG_COMPAT_BINFMT_ELF=y
+CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
+# CONFIG_HAVE_AOUT is not set
+CONFIG_BINFMT_MISC=y
+CONFIG_IA32_EMULATION=y
+CONFIG_IA32_AOUT=m
+# CONFIG_X86_X32 is not set
+CONFIG_COMPAT=y
+CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
+CONFIG_SYSVIPC_COMPAT=y
+CONFIG_KEYS_COMPAT=y
+CONFIG_HAVE_TEXT_POKE_SMP=y
+CONFIG_X86_DEV_DMA_OPS=y
+CONFIG_NET=y
+
+#
+# Networking options
+#
+CONFIG_PACKET=y
+CONFIG_UNIX=y
+CONFIG_UNIX_DIAG=y
+CONFIG_XFRM=y
+CONFIG_XFRM_ALGO=y
+CONFIG_XFRM_USER=y
+CONFIG_XFRM_SUB_POLICY=y
+CONFIG_XFRM_MIGRATE=y
+CONFIG_XFRM_STATISTICS=y
+CONFIG_XFRM_IPCOMP=m
+CONFIG_NET_KEY=m
+CONFIG_NET_KEY_MIGRATE=y
+CONFIG_INET=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_ADVANCED_ROUTER=y
+# CONFIG_IP_FIB_TRIE_STATS is not set
+CONFIG_IP_MULTIPLE_TABLES=y
+CONFIG_IP_ROUTE_MULTIPATH=y
+CONFIG_IP_ROUTE_VERBOSE=y
+CONFIG_IP_ROUTE_CLASSID=y
+CONFIG_IP_PNP=y
+CONFIG_IP_PNP_DHCP=y
+CONFIG_IP_PNP_BOOTP=y
+CONFIG_IP_PNP_RARP=y
+CONFIG_NET_IPIP=m
+CONFIG_NET_IPGRE_DEMUX=m
+CONFIG_NET_IPGRE=m
+CONFIG_NET_IPGRE_BROADCAST=y
+CONFIG_IP_MROUTE=y
+CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IP_PIMSM_V1=y
+CONFIG_IP_PIMSM_V2=y
+CONFIG_ARPD=y
+CONFIG_SYN_COOKIES=y
+CONFIG_NET_IPVTI=m
+CONFIG_INET_AH=m
+CONFIG_INET_ESP=m
+CONFIG_INET_IPCOMP=m
+CONFIG_INET_XFRM_TUNNEL=m
+CONFIG_INET_TUNNEL=y
+CONFIG_INET_XFRM_MODE_TRANSPORT=m
+CONFIG_INET_XFRM_MODE_TUNNEL=m
+CONFIG_INET_XFRM_MODE_BEET=m
+CONFIG_INET_LRO=y
+CONFIG_INET_DIAG=m
+CONFIG_INET_TCP_DIAG=m
+CONFIG_INET_UDP_DIAG=m
+CONFIG_TCP_CONG_ADVANCED=y
+CONFIG_TCP_CONG_BIC=m
+CONFIG_TCP_CONG_CUBIC=y
+CONFIG_TCP_CONG_WESTWOOD=m
+CONFIG_TCP_CONG_HTCP=m
+CONFIG_TCP_CONG_HSTCP=m
+CONFIG_TCP_CONG_HYBLA=m
+CONFIG_TCP_CONG_VEGAS=m
+CONFIG_TCP_CONG_SCALABLE=m
+CONFIG_TCP_CONG_LP=m
+CONFIG_TCP_CONG_VENO=m
+CONFIG_TCP_CONG_YEAH=m
+CONFIG_TCP_CONG_ILLINOIS=m
+CONFIG_DEFAULT_CUBIC=y
+# CONFIG_DEFAULT_RENO is not set
+CONFIG_DEFAULT_TCP_CONG="cubic"
+CONFIG_TCP_MD5SIG=y
+CONFIG_IPV6=y
+CONFIG_IPV6_PRIVACY=y
+CONFIG_IPV6_ROUTER_PREF=y
+CONFIG_IPV6_ROUTE_INFO=y
+# CONFIG_IPV6_OPTIMISTIC_DAD is not set
+CONFIG_INET6_AH=y
+CONFIG_INET6_ESP=y
+CONFIG_INET6_IPCOMP=m
+CONFIG_IPV6_MIP6=m
+CONFIG_INET6_XFRM_TUNNEL=m
+CONFIG_INET6_TUNNEL=m
+CONFIG_INET6_XFRM_MODE_TRANSPORT=y
+CONFIG_INET6_XFRM_MODE_TUNNEL=y
+CONFIG_INET6_XFRM_MODE_BEET=y
+CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
+CONFIG_IPV6_SIT=y
+# CONFIG_IPV6_SIT_6RD is not set
+CONFIG_IPV6_NDISC_NODETYPE=y
+CONFIG_IPV6_TUNNEL=m
+CONFIG_IPV6_MULTIPLE_TABLES=y
+CONFIG_IPV6_SUBTREES=y
+CONFIG_IPV6_MROUTE=y
+CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
+CONFIG_IPV6_PIMSM_V2=y
+CONFIG_NETLABEL=y
+CONFIG_NETWORK_SECMARK=y
+# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
+CONFIG_NETFILTER=y
+# CONFIG_NETFILTER_DEBUG is not set
+CONFIG_NETFILTER_ADVANCED=y
+CONFIG_BRIDGE_NETFILTER=y
+
+#
+# Core Netfilter Configuration
+#
+CONFIG_NETFILTER_NETLINK=y
+CONFIG_NETFILTER_NETLINK_ACCT=m
+CONFIG_NETFILTER_NETLINK_QUEUE=m
+CONFIG_NETFILTER_NETLINK_LOG=y
+CONFIG_NF_CONNTRACK=y
+CONFIG_NF_CONNTRACK_MARK=y
+CONFIG_NF_CONNTRACK_SECMARK=y
+# CONFIG_NF_CONNTRACK_ZONES is not set
+CONFIG_NF_CONNTRACK_PROCFS=y
+CONFIG_NF_CONNTRACK_EVENTS=y
+CONFIG_NF_CONNTRACK_TIMEOUT=y
+# CONFIG_NF_CONNTRACK_TIMESTAMP is not set
+CONFIG_NF_CT_PROTO_DCCP=m
+CONFIG_NF_CT_PROTO_GRE=m
+CONFIG_NF_CT_PROTO_SCTP=m
+CONFIG_NF_CT_PROTO_UDPLITE=m
+CONFIG_NF_CONNTRACK_AMANDA=m
+CONFIG_NF_CONNTRACK_FTP=y
+CONFIG_NF_CONNTRACK_H323=m
+CONFIG_NF_CONNTRACK_IRC=y
+CONFIG_NF_CONNTRACK_BROADCAST=m
+CONFIG_NF_CONNTRACK_NETBIOS_NS=m
+CONFIG_NF_CONNTRACK_SNMP=m
+CONFIG_NF_CONNTRACK_PPTP=m
+CONFIG_NF_CONNTRACK_SANE=m
+CONFIG_NF_CONNTRACK_SIP=y
+CONFIG_NF_CONNTRACK_TFTP=m
+CONFIG_NF_CT_NETLINK=y
+CONFIG_NF_CT_NETLINK_TIMEOUT=m
+CONFIG_NF_CT_NETLINK_HELPER=m
+CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
+CONFIG_NETFILTER_TPROXY=m
+CONFIG_NETFILTER_XTABLES=y
+
+#
+# Xtables combined modules
+#
+CONFIG_NETFILTER_XT_MARK=y
+CONFIG_NETFILTER_XT_CONNMARK=m
+CONFIG_NETFILTER_XT_SET=m
+
+#
+# Xtables targets
+#
+CONFIG_NETFILTER_XT_TARGET_AUDIT=m
+CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
+CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
+CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
+CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=y
+CONFIG_NETFILTER_XT_TARGET_CT=m
+CONFIG_NETFILTER_XT_TARGET_DSCP=m
+CONFIG_NETFILTER_XT_TARGET_HL=m
+CONFIG_NETFILTER_XT_TARGET_HMARK=m
+CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
+CONFIG_NETFILTER_XT_TARGET_LED=m
+CONFIG_NETFILTER_XT_TARGET_LOG=y
+CONFIG_NETFILTER_XT_TARGET_MARK=m
+CONFIG_NETFILTER_XT_TARGET_NFLOG=y
+CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
+CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
+CONFIG_NETFILTER_XT_TARGET_RATEEST=m
+CONFIG_NETFILTER_XT_TARGET_TEE=m
+CONFIG_NETFILTER_XT_TARGET_TPROXY=m
+CONFIG_NETFILTER_XT_TARGET_TRACE=m
+CONFIG_NETFILTER_XT_TARGET_SECMARK=y
+CONFIG_NETFILTER_XT_TARGET_TCPMSS=y
+CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
+
+#
+# Xtables matches
+#
+CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
+CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
+CONFIG_NETFILTER_XT_MATCH_COMMENT=m
+CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
+CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
+CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y
+CONFIG_NETFILTER_XT_MATCH_CPU=m
+CONFIG_NETFILTER_XT_MATCH_DCCP=m
+CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
+CONFIG_NETFILTER_XT_MATCH_DSCP=m
+CONFIG_NETFILTER_XT_MATCH_ECN=m
+CONFIG_NETFILTER_XT_MATCH_ESP=m
+CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
+CONFIG_NETFILTER_XT_MATCH_HELPER=m
+CONFIG_NETFILTER_XT_MATCH_HL=m
+CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
+CONFIG_NETFILTER_XT_MATCH_LENGTH=m
+CONFIG_NETFILTER_XT_MATCH_LIMIT=m
+CONFIG_NETFILTER_XT_MATCH_MAC=m
+CONFIG_NETFILTER_XT_MATCH_MARK=y
+CONFIG_NETFILTER_XT_MATCH_MULTIPORT=y
+CONFIG_NETFILTER_XT_MATCH_NFACCT=m
+CONFIG_NETFILTER_XT_MATCH_OSF=m
+CONFIG_NETFILTER_XT_MATCH_OWNER=m
+CONFIG_NETFILTER_XT_MATCH_POLICY=y
+CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
+CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
+CONFIG_NETFILTER_XT_MATCH_QUOTA=m
+CONFIG_NETFILTER_XT_MATCH_RATEEST=m
+CONFIG_NETFILTER_XT_MATCH_REALM=m
+CONFIG_NETFILTER_XT_MATCH_RECENT=m
+CONFIG_NETFILTER_XT_MATCH_SCTP=m
+CONFIG_NETFILTER_XT_MATCH_SOCKET=m
+CONFIG_NETFILTER_XT_MATCH_STATE=y
+CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
+CONFIG_NETFILTER_XT_MATCH_STRING=m
+CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
+CONFIG_NETFILTER_XT_MATCH_TIME=m
+CONFIG_NETFILTER_XT_MATCH_U32=m
+CONFIG_IP_SET=y
+CONFIG_IP_SET_MAX=256
+CONFIG_IP_SET_BITMAP_IP=y
+CONFIG_IP_SET_BITMAP_IPMAC=y
+CONFIG_IP_SET_BITMAP_PORT=y
+CONFIG_IP_SET_HASH_IP=y
+CONFIG_IP_SET_HASH_IPPORT=y
+CONFIG_IP_SET_HASH_IPPORTIP=y
+CONFIG_IP_SET_HASH_IPPORTNET=y
+CONFIG_IP_SET_HASH_NET=y
+CONFIG_IP_SET_HASH_NETPORT=y
+CONFIG_IP_SET_HASH_NETIFACE=y
+CONFIG_IP_SET_LIST_SET=y
+# CONFIG_IP_VS is not set
+
+#
+# IP: Netfilter Configuration
+#
+CONFIG_NF_DEFRAG_IPV4=y
+CONFIG_NF_CONNTRACK_IPV4=y
+CONFIG_NF_CONNTRACK_PROC_COMPAT=y
+CONFIG_IP_NF_QUEUE=m
+CONFIG_IP_NF_IPTABLES=y
+CONFIG_IP_NF_MATCH_AH=m
+CONFIG_IP_NF_MATCH_ECN=m
+CONFIG_IP_NF_MATCH_RPFILTER=m
+CONFIG_IP_NF_MATCH_TTL=m
+CONFIG_IP_NF_FILTER=y
+CONFIG_IP_NF_TARGET_REJECT=y
+CONFIG_IP_NF_TARGET_ULOG=y
+CONFIG_NF_NAT=y
+CONFIG_NF_NAT_NEEDED=y
+CONFIG_IP_NF_TARGET_MASQUERADE=y
+CONFIG_IP_NF_TARGET_NETMAP=m
+CONFIG_IP_NF_TARGET_REDIRECT=m
+CONFIG_NF_NAT_SNMP_BASIC=m
+CONFIG_NF_NAT_PROTO_DCCP=m
+CONFIG_NF_NAT_PROTO_GRE=m
+CONFIG_NF_NAT_PROTO_UDPLITE=m
+CONFIG_NF_NAT_PROTO_SCTP=m
+CONFIG_NF_NAT_FTP=y
+CONFIG_NF_NAT_IRC=y
+CONFIG_NF_NAT_TFTP=m
+CONFIG_NF_NAT_AMANDA=m
+CONFIG_NF_NAT_PPTP=m
+CONFIG_NF_NAT_H323=m
+CONFIG_NF_NAT_SIP=y
+CONFIG_IP_NF_MANGLE=y
+CONFIG_IP_NF_TARGET_CLUSTERIP=m
+CONFIG_IP_NF_TARGET_ECN=m
+CONFIG_IP_NF_TARGET_TTL=m
+CONFIG_IP_NF_RAW=m
+CONFIG_IP_NF_SECURITY=m
+CONFIG_IP_NF_ARPTABLES=m
+CONFIG_IP_NF_ARPFILTER=m
+CONFIG_IP_NF_ARP_MANGLE=m
+
+#
+# IPv6: Netfilter Configuration
+#
+CONFIG_NF_DEFRAG_IPV6=y
+CONFIG_NF_CONNTRACK_IPV6=y
+CONFIG_IP6_NF_IPTABLES=y
+CONFIG_IP6_NF_MATCH_AH=m
+CONFIG_IP6_NF_MATCH_EUI64=m
+CONFIG_IP6_NF_MATCH_FRAG=m
+CONFIG_IP6_NF_MATCH_OPTS=m
+CONFIG_IP6_NF_MATCH_HL=m
+CONFIG_IP6_NF_MATCH_IPV6HEADER=y
+CONFIG_IP6_NF_MATCH_MH=m
+CONFIG_IP6_NF_MATCH_RPFILTER=m
+CONFIG_IP6_NF_MATCH_RT=m
+CONFIG_IP6_NF_TARGET_HL=m
+CONFIG_IP6_NF_FILTER=y
+CONFIG_IP6_NF_TARGET_REJECT=y
+CONFIG_IP6_NF_MANGLE=y
+CONFIG_IP6_NF_RAW=m
+CONFIG_IP6_NF_SECURITY=m
+CONFIG_BRIDGE_NF_EBTABLES=m
+CONFIG_BRIDGE_EBT_BROUTE=m
+CONFIG_BRIDGE_EBT_T_FILTER=m
+CONFIG_BRIDGE_EBT_T_NAT=m
+CONFIG_BRIDGE_EBT_802_3=m
+CONFIG_BRIDGE_EBT_AMONG=m
+CONFIG_BRIDGE_EBT_ARP=m
+CONFIG_BRIDGE_EBT_IP=m
+CONFIG_BRIDGE_EBT_IP6=m
+CONFIG_BRIDGE_EBT_LIMIT=m
+CONFIG_BRIDGE_EBT_MARK=m
+CONFIG_BRIDGE_EBT_PKTTYPE=m
+CONFIG_BRIDGE_EBT_STP=m
+CONFIG_BRIDGE_EBT_VLAN=m
+CONFIG_BRIDGE_EBT_ARPREPLY=m
+CONFIG_BRIDGE_EBT_DNAT=m
+CONFIG_BRIDGE_EBT_MARK_T=m
+CONFIG_BRIDGE_EBT_REDIRECT=m
+CONFIG_BRIDGE_EBT_SNAT=m
+CONFIG_BRIDGE_EBT_LOG=m
+CONFIG_BRIDGE_EBT_ULOG=m
+CONFIG_BRIDGE_EBT_NFLOG=m
+CONFIG_IP_DCCP=m
+CONFIG_INET_DCCP_DIAG=m
+
+#
+# DCCP CCIDs Configuration (EXPERIMENTAL)
+#
+# CONFIG_IP_DCCP_CCID2_DEBUG is not set
+CONFIG_IP_DCCP_CCID3=y
+# CONFIG_IP_DCCP_CCID3_DEBUG is not set
+CONFIG_IP_DCCP_TFRC_LIB=y
+
+#
+# DCCP Kernel Hacking
+#
+# CONFIG_IP_DCCP_DEBUG is not set
+# CONFIG_NET_DCCPPROBE is not set
+CONFIG_IP_SCTP=m
+# CONFIG_NET_SCTPPROBE is not set
+# CONFIG_SCTP_DBG_MSG is not set
+# CONFIG_SCTP_DBG_OBJCNT is not set
+# CONFIG_SCTP_HMAC_NONE is not set
+# CONFIG_SCTP_HMAC_SHA1 is not set
+CONFIG_SCTP_HMAC_MD5=y
+CONFIG_RDS=m
+# CONFIG_RDS_RDMA is not set
+# CONFIG_RDS_TCP is not set
+# CONFIG_RDS_DEBUG is not set
+CONFIG_TIPC=m
+# CONFIG_TIPC_ADVANCED is not set
+# CONFIG_ATM is not set
+CONFIG_L2TP=m
+# CONFIG_L2TP_DEBUGFS is not set
+CONFIG_L2TP_V3=y
+CONFIG_L2TP_IP=m
+CONFIG_L2TP_ETH=m
+CONFIG_STP=y
+CONFIG_BRIDGE=y
+CONFIG_BRIDGE_IGMP_SNOOPING=y
+# CONFIG_NET_DSA is not set
+CONFIG_VLAN_8021Q=y
+# CONFIG_VLAN_8021Q_GVRP is not set
+# CONFIG_DECNET is not set
+CONFIG_LLC=y
+# CONFIG_LLC2 is not set
+# CONFIG_IPX is not set
+# CONFIG_ATALK is not set
+# CONFIG_X25 is not set
+# CONFIG_LAPB is not set
+# CONFIG_WAN_ROUTER is not set
+# CONFIG_PHONET is not set
+# CONFIG_IEEE802154 is not set
+CONFIG_NET_SCHED=y
+
+#
+# Queueing/Scheduling
+#
+CONFIG_NET_SCH_CBQ=m
+CONFIG_NET_SCH_HTB=m
+CONFIG_NET_SCH_HFSC=m
+CONFIG_NET_SCH_PRIO=m
+CONFIG_NET_SCH_MULTIQ=m
+CONFIG_NET_SCH_RED=m
+CONFIG_NET_SCH_SFB=m
+CONFIG_NET_SCH_SFQ=m
+CONFIG_NET_SCH_TEQL=m
+CONFIG_NET_SCH_TBF=m
+CONFIG_NET_SCH_GRED=m
+CONFIG_NET_SCH_DSMARK=m
+CONFIG_NET_SCH_NETEM=m
+CONFIG_NET_SCH_DRR=m
+CONFIG_NET_SCH_MQPRIO=m
+CONFIG_NET_SCH_CHOKE=m
+CONFIG_NET_SCH_QFQ=m
+CONFIG_NET_SCH_CODEL=m
+CONFIG_NET_SCH_FQ_CODEL=m
+CONFIG_NET_SCH_INGRESS=m
+CONFIG_NET_SCH_PLUG=m
+
+#
+# Classification
+#
+CONFIG_NET_CLS=y
+CONFIG_NET_CLS_BASIC=m
+CONFIG_NET_CLS_TCINDEX=m
+CONFIG_NET_CLS_ROUTE4=m
+CONFIG_NET_CLS_FW=m
+CONFIG_NET_CLS_U32=m
+CONFIG_CLS_U32_PERF=y
+CONFIG_CLS_U32_MARK=y
+CONFIG_NET_CLS_RSVP=m
+CONFIG_NET_CLS_RSVP6=m
+CONFIG_NET_CLS_FLOW=m
+CONFIG_NET_CLS_CGROUP=m
+CONFIG_NET_EMATCH=y
+CONFIG_NET_EMATCH_STACK=32
+CONFIG_NET_EMATCH_CMP=m
+CONFIG_NET_EMATCH_NBYTE=m
+CONFIG_NET_EMATCH_U32=m
+CONFIG_NET_EMATCH_META=m
+CONFIG_NET_EMATCH_TEXT=m
+CONFIG_NET_EMATCH_IPSET=m
+CONFIG_NET_CLS_ACT=y
+CONFIG_NET_ACT_POLICE=m
+CONFIG_NET_ACT_GACT=m
+CONFIG_GACT_PROB=y
+CONFIG_NET_ACT_MIRRED=m
+CONFIG_NET_ACT_IPT=m
+CONFIG_NET_ACT_NAT=m
+CONFIG_NET_ACT_PEDIT=m
+CONFIG_NET_ACT_SIMP=m
+CONFIG_NET_ACT_SKBEDIT=m
+CONFIG_NET_ACT_CSUM=m
+CONFIG_NET_CLS_IND=y
+CONFIG_NET_SCH_FIFO=y
+# CONFIG_DCB is not set
+CONFIG_DNS_RESOLVER=y
+# CONFIG_BATMAN_ADV is not set
+CONFIG_OPENVSWITCH=m
+CONFIG_RPS=y
+CONFIG_RFS_ACCEL=y
+CONFIG_XPS=y
+CONFIG_NETPRIO_CGROUP=m
+CONFIG_BQL=y
+# CONFIG_BPF_JIT is not set
+
+#
+# Network testing
+#
+CONFIG_NET_PKTGEN=m
+CONFIG_NET_TCPPROBE=m
+# CONFIG_NET_DROP_MONITOR is not set
+# CONFIG_HAMRADIO is not set
+# CONFIG_CAN is not set
+# CONFIG_IRDA is not set
+# CONFIG_BT is not set
+# CONFIG_AF_RXRPC is not set
+CONFIG_FIB_RULES=y
+# CONFIG_WIRELESS is not set
+# CONFIG_WIMAX is not set
+# CONFIG_RFKILL is not set
+# CONFIG_RFKILL_REGULATOR is not set
+# CONFIG_NET_9P is not set
+# CONFIG_CAIF is not set
+CONFIG_CEPH_LIB=m
+# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
+# CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set
+# CONFIG_NFC is not set
+CONFIG_HAVE_BPF_JIT=y
+
+#
+# Device Drivers
+#
+
+#
+# Generic Driver Options
+#
+CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
+CONFIG_DEVTMPFS=y
+# CONFIG_DEVTMPFS_MOUNT is not set
+CONFIG_STANDALONE=y
+CONFIG_PREVENT_FIRMWARE_BUILD=y
+CONFIG_FW_LOADER=y
+CONFIG_FIRMWARE_IN_KERNEL=y
+CONFIG_EXTRA_FIRMWARE="radeon/R700_rlc.bin"
+CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware"
+# CONFIG_DEBUG_DRIVER is not set
+CONFIG_DEBUG_DEVRES=y
+CONFIG_SYS_HYPERVISOR=y
+# CONFIG_GENERIC_CPU_DEVICES is not set
+CONFIG_REGMAP=y
+CONFIG_REGMAP_I2C=y
+CONFIG_REGMAP_IRQ=y
+CONFIG_DMA_SHARED_BUFFER=y
+CONFIG_CONNECTOR=y
+CONFIG_PROC_EVENTS=y
+# CONFIG_MTD is not set
+CONFIG_PARPORT=m
+CONFIG_PARPORT_PC=m
+CONFIG_PARPORT_SERIAL=m
+CONFIG_PARPORT_PC_FIFO=y
+CONFIG_PARPORT_PC_SUPERIO=y
+CONFIG_PARPORT_PC_PCMCIA=m
+# CONFIG_PARPORT_GSC is not set
+CONFIG_PARPORT_AX88796=m
+CONFIG_PARPORT_1284=y
+CONFIG_PARPORT_NOT_PC=y
+CONFIG_PNP=y
+CONFIG_PNP_DEBUG_MESSAGES=y
+
+#
+# Protocols
+#
+CONFIG_PNPACPI=y
+CONFIG_BLK_DEV=y
+CONFIG_BLK_DEV_FD=m
+CONFIG_PARIDE=m
+
+#
+# Parallel IDE high-level drivers
+#
+CONFIG_PARIDE_PD=m
+CONFIG_PARIDE_PCD=m
+CONFIG_PARIDE_PF=m
+CONFIG_PARIDE_PT=m
+CONFIG_PARIDE_PG=m
+
+#
+# Parallel IDE protocol modules
+#
+CONFIG_PARIDE_ATEN=m
+CONFIG_PARIDE_BPCK=m
+CONFIG_PARIDE_COMM=m
+CONFIG_PARIDE_DSTR=m
+CONFIG_PARIDE_FIT2=m
+CONFIG_PARIDE_FIT3=m
+CONFIG_PARIDE_EPAT=m
+CONFIG_PARIDE_EPATC8=y
+CONFIG_PARIDE_EPIA=m
+CONFIG_PARIDE_FRIQ=m
+CONFIG_PARIDE_FRPW=m
+CONFIG_PARIDE_KBIC=m
+CONFIG_PARIDE_KTTI=m
+CONFIG_PARIDE_ON20=m
+CONFIG_PARIDE_ON26=m
+CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m
+CONFIG_BLK_CPQ_DA=m
+CONFIG_BLK_CPQ_CISS_DA=m
+CONFIG_CISS_SCSI_TAPE=y
+CONFIG_BLK_DEV_DAC960=m
+CONFIG_BLK_DEV_UMEM=m
+# CONFIG_BLK_DEV_COW_COMMON is not set
+CONFIG_BLK_DEV_LOOP=y
+CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
+CONFIG_BLK_DEV_CRYPTOLOOP=m
+CONFIG_BLK_DEV_DRBD=m
+# CONFIG_DRBD_FAULT_INJECTION is not set
+CONFIG_BLK_DEV_NBD=m
+CONFIG_BLK_DEV_NVME=m
+CONFIG_BLK_DEV_SX8=m
+CONFIG_BLK_DEV_UB=m
+CONFIG_BLK_DEV_RAM=y
+CONFIG_BLK_DEV_RAM_COUNT=16
+CONFIG_BLK_DEV_RAM_SIZE=16384
+# CONFIG_BLK_DEV_XIP is not set
+CONFIG_CDROM_PKTCDVD=m
+CONFIG_CDROM_PKTCDVD_BUFFERS=8
+# CONFIG_CDROM_PKTCDVD_WCACHE is not set
+CONFIG_ATA_OVER_ETH=m
+CONFIG_XEN_BLKDEV_FRONTEND=y
+CONFIG_XEN_BLKDEV_BACKEND=m
+CONFIG_VIRTIO_BLK=m
+# CONFIG_BLK_DEV_HD is not set
+CONFIG_BLK_DEV_RBD=m
+
+#
+# Misc devices
+#
+# CONFIG_SENSORS_LIS3LV02D is not set
+# CONFIG_AD525X_DPOT is not set
+# CONFIG_IBM_ASM is not set
+# CONFIG_PHANTOM is not set
+# CONFIG_INTEL_MID_PTI is not set
+# CONFIG_SGI_IOC4 is not set
+CONFIG_TIFM_CORE=m
+CONFIG_TIFM_7XX1=m
+# CONFIG_ICS932S401 is not set
+# CONFIG_ENCLOSURE_SERVICES is not set
+# CONFIG_CS5535_MFGPT is not set
+# CONFIG_HP_ILO is not set
+# CONFIG_APDS9802ALS is not set
+# CONFIG_ISL29003 is not set
+# CONFIG_ISL29020 is not set
+# CONFIG_SENSORS_TSL2550 is not set
+# CONFIG_SENSORS_BH1780 is not set
+# CONFIG_SENSORS_BH1770 is not set
+# CONFIG_SENSORS_APDS990X is not set
+# CONFIG_HMC6352 is not set
+# CONFIG_DS1682 is not set
+# CONFIG_VMWARE_BALLOON is not set
+# CONFIG_BMP085_I2C is not set
+# CONFIG_PCH_PHUB is not set
+# CONFIG_USB_SWITCH_FSA9480 is not set
+# CONFIG_C2PORT is not set
+
+#
+# EEPROM support
+#
+CONFIG_EEPROM_AT24=m
+CONFIG_EEPROM_LEGACY=m
+CONFIG_EEPROM_MAX6875=m
+CONFIG_EEPROM_93CX6=m
+CONFIG_CB710_CORE=m
+# CONFIG_CB710_DEBUG is not set
+CONFIG_CB710_DEBUG_ASSUMPTIONS=y
+
+#
+# Texas Instruments shared transport line discipline
+#
+# CONFIG_SENSORS_LIS3_I2C is not set
+
+#
+# Altera FPGA firmware download module
+#
+CONFIG_ALTERA_STAPL=m
+# CONFIG_INTEL_MEI is not set
+CONFIG_HAVE_IDE=y
+# CONFIG_IDE is not set
+
+#
+# SCSI device support
+#
+CONFIG_SCSI_MOD=y
+CONFIG_RAID_ATTRS=m
+CONFIG_SCSI=y
+CONFIG_SCSI_DMA=y
+CONFIG_SCSI_TGT=m
+CONFIG_SCSI_NETLINK=y
+CONFIG_SCSI_PROC_FS=y
+
+#
+# SCSI support type (disk, tape, CD-ROM)
+#
+CONFIG_BLK_DEV_SD=y
+CONFIG_CHR_DEV_ST=m
+CONFIG_CHR_DEV_OSST=m
+CONFIG_BLK_DEV_SR=y
+CONFIG_BLK_DEV_SR_VENDOR=y
+CONFIG_CHR_DEV_SG=y
+CONFIG_CHR_DEV_SCH=m
+# CONFIG_SCSI_MULTI_LUN is not set
+CONFIG_SCSI_CONSTANTS=y
+CONFIG_SCSI_LOGGING=y
+# CONFIG_SCSI_SCAN_ASYNC is not set
+
+#
+# SCSI Transports
+#
+CONFIG_SCSI_SPI_ATTRS=y
+CONFIG_SCSI_FC_ATTRS=m
+# CONFIG_SCSI_FC_TGT_ATTRS is not set
+CONFIG_SCSI_ISCSI_ATTRS=m
+CONFIG_SCSI_SAS_ATTRS=m
+CONFIG_SCSI_SAS_LIBSAS=m
+CONFIG_SCSI_SAS_ATA=y
+CONFIG_SCSI_SAS_HOST_SMP=y
+CONFIG_SCSI_SRP_ATTRS=m
+# CONFIG_SCSI_SRP_TGT_ATTRS is not set
+CONFIG_SCSI_LOWLEVEL=y
+CONFIG_ISCSI_TCP=m
+CONFIG_ISCSI_BOOT_SYSFS=m
+CONFIG_SCSI_CXGB3_ISCSI=m
+CONFIG_SCSI_CXGB4_ISCSI=m
+CONFIG_SCSI_BNX2_ISCSI=m
+CONFIG_SCSI_BNX2X_FCOE=m
+CONFIG_BE2ISCSI=m
+CONFIG_BLK_DEV_3W_XXXX_RAID=m
+CONFIG_SCSI_HPSA=m
+CONFIG_SCSI_3W_9XXX=m
+CONFIG_SCSI_3W_SAS=m
+CONFIG_SCSI_ACARD=m
+CONFIG_SCSI_AACRAID=m
+CONFIG_SCSI_AIC7XXX=m
+CONFIG_AIC7XXX_CMDS_PER_DEVICE=32
+CONFIG_AIC7XXX_RESET_DELAY_MS=5000
+CONFIG_AIC7XXX_DEBUG_ENABLE=y
+CONFIG_AIC7XXX_DEBUG_MASK=0
+CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
+CONFIG_SCSI_AIC7XXX_OLD=m
+CONFIG_SCSI_AIC79XX=m
+CONFIG_AIC79XX_CMDS_PER_DEVICE=32
+CONFIG_AIC79XX_RESET_DELAY_MS=5000
+CONFIG_AIC79XX_DEBUG_ENABLE=y
+CONFIG_AIC79XX_DEBUG_MASK=0
+CONFIG_AIC79XX_REG_PRETTY_PRINT=y
+CONFIG_SCSI_AIC94XX=m
+CONFIG_AIC94XX_DEBUG=y
+CONFIG_SCSI_MVSAS=m
+CONFIG_SCSI_MVSAS_DEBUG=y
+CONFIG_SCSI_MVSAS_TASKLET=y
+CONFIG_SCSI_MVUMI=m
+CONFIG_SCSI_DPT_I2O=m
+CONFIG_SCSI_ADVANSYS=m
+CONFIG_SCSI_ARCMSR=m
+# CONFIG_MEGARAID_NEWGEN is not set
+CONFIG_MEGARAID_LEGACY=m
+CONFIG_MEGARAID_SAS=m
+CONFIG_SCSI_MPT2SAS=m
+CONFIG_SCSI_MPT2SAS_MAX_SGE=128
+CONFIG_SCSI_MPT2SAS_LOGGING=y
+CONFIG_SCSI_UFSHCD=m
+CONFIG_SCSI_HPTIOP=m
+CONFIG_SCSI_BUSLOGIC=m
+CONFIG_VMWARE_PVSCSI=m
+CONFIG_HYPERV_STORAGE=m
+CONFIG_LIBFC=m
+CONFIG_LIBFCOE=m
+CONFIG_FCOE=m
+CONFIG_FCOE_FNIC=m
+CONFIG_SCSI_DMX3191D=m
+CONFIG_SCSI_EATA=m
+CONFIG_SCSI_EATA_TAGGED_QUEUE=y
+CONFIG_SCSI_EATA_LINKED_COMMANDS=y
+CONFIG_SCSI_EATA_MAX_TAGS=16
+CONFIG_SCSI_FUTURE_DOMAIN=m
+CONFIG_SCSI_GDTH=m
+CONFIG_SCSI_ISCI=m
+CONFIG_SCSI_IPS=m
+CONFIG_SCSI_INITIO=m
+CONFIG_SCSI_INIA100=m
+CONFIG_SCSI_PPA=m
+CONFIG_SCSI_IMM=m
+# CONFIG_SCSI_IZIP_EPP16 is not set
+# CONFIG_SCSI_IZIP_SLOW_CTR is not set
+CONFIG_SCSI_STEX=m
+CONFIG_SCSI_SYM53C8XX_2=m
+CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1
+CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
+CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
+CONFIG_SCSI_SYM53C8XX_MMIO=y
+CONFIG_SCSI_IPR=m
+CONFIG_SCSI_IPR_TRACE=y
+CONFIG_SCSI_IPR_DUMP=y
+CONFIG_SCSI_QLOGIC_1280=m
+CONFIG_SCSI_QLA_FC=m
+CONFIG_SCSI_QLA_ISCSI=m
+CONFIG_SCSI_LPFC=m
+# CONFIG_SCSI_LPFC_DEBUG_FS is not set
+CONFIG_SCSI_DC395x=m
+CONFIG_SCSI_DC390T=m
+CONFIG_SCSI_DEBUG=m
+CONFIG_SCSI_PMCRAID=m
+CONFIG_SCSI_PM8001=m
+CONFIG_SCSI_SRP=m
+CONFIG_SCSI_BFA_FC=m
+# CONFIG_SCSI_VIRTIO is not set
+CONFIG_SCSI_LOWLEVEL_PCMCIA=y
+CONFIG_PCMCIA_AHA152X=m
+CONFIG_PCMCIA_FDOMAIN=m
+CONFIG_PCMCIA_QLOGIC=m
+CONFIG_PCMCIA_SYM53C500=m
+CONFIG_SCSI_DH=m
+CONFIG_SCSI_DH_RDAC=m
+CONFIG_SCSI_DH_HP_SW=m
+CONFIG_SCSI_DH_EMC=m
+CONFIG_SCSI_DH_ALUA=m
+# CONFIG_SCSI_OSD_INITIATOR is not set
+CONFIG_ATA=y
+# CONFIG_ATA_NONSTANDARD is not set
+CONFIG_ATA_VERBOSE_ERROR=y
+CONFIG_ATA_ACPI=y
+CONFIG_SATA_PMP=y
+
+#
+# Controllers with non-SFF native interface
+#
+CONFIG_SATA_AHCI=y
+CONFIG_SATA_AHCI_PLATFORM=y
+CONFIG_SATA_INIC162X=m
+CONFIG_SATA_ACARD_AHCI=m
+CONFIG_SATA_SIL24=m
+CONFIG_ATA_SFF=y
+
+#
+# SFF controllers with custom DMA interface
+#
+CONFIG_PDC_ADMA=m
+CONFIG_SATA_QSTOR=m
+CONFIG_SATA_SX4=m
+CONFIG_ATA_BMDMA=y
+
+#
+# SATA SFF controllers with BMDMA
+#
+CONFIG_ATA_PIIX=y
+CONFIG_SATA_MV=m
+CONFIG_SATA_NV=m
+CONFIG_SATA_PROMISE=m
+CONFIG_SATA_SIL=m
+CONFIG_SATA_SIS=m
+CONFIG_SATA_SVW=m
+CONFIG_SATA_ULI=m
+CONFIG_SATA_VIA=m
+CONFIG_SATA_VITESSE=m
+
+#
+# PATA SFF controllers with BMDMA
+#
+CONFIG_PATA_ALI=m
+CONFIG_PATA_AMD=y
+CONFIG_PATA_ARASAN_CF=m
+CONFIG_PATA_ARTOP=m
+CONFIG_PATA_ATIIXP=m
+CONFIG_PATA_ATP867X=m
+CONFIG_PATA_CMD64X=m
+CONFIG_PATA_CS5520=m
+CONFIG_PATA_CS5530=m
+CONFIG_PATA_CS5536=m
+CONFIG_PATA_CYPRESS=m
+CONFIG_PATA_EFAR=m
+CONFIG_PATA_HPT366=m
+CONFIG_PATA_HPT37X=m
+CONFIG_PATA_HPT3X2N=m
+CONFIG_PATA_HPT3X3=m
+CONFIG_PATA_HPT3X3_DMA=y
+CONFIG_PATA_IT8213=m
+CONFIG_PATA_IT821X=m
+CONFIG_PATA_JMICRON=m
+CONFIG_PATA_MARVELL=m
+CONFIG_PATA_NETCELL=m
+CONFIG_PATA_NINJA32=m
+CONFIG_PATA_NS87415=m
+CONFIG_PATA_OLDPIIX=y
+CONFIG_PATA_OPTIDMA=m
+CONFIG_PATA_PDC2027X=m
+CONFIG_PATA_PDC_OLD=m
+CONFIG_PATA_RADISYS=m
+CONFIG_PATA_RDC=m
+CONFIG_PATA_SC1200=m
+CONFIG_PATA_SCH=y
+CONFIG_PATA_SERVERWORKS=m
+CONFIG_PATA_SIL680=m
+CONFIG_PATA_SIS=m
+CONFIG_PATA_TOSHIBA=m
+CONFIG_PATA_TRIFLEX=m
+CONFIG_PATA_VIA=m
+CONFIG_PATA_WINBOND=m
+
+#
+# PIO-only SFF controllers
+#
+CONFIG_PATA_CMD640_PCI=m
+CONFIG_PATA_MPIIX=m
+CONFIG_PATA_NS87410=m
+CONFIG_PATA_OPTI=m
+CONFIG_PATA_PCMCIA=m
+CONFIG_PATA_RZ1000=m
+
+#
+# Generic fallback / legacy drivers
+#
+CONFIG_PATA_ACPI=m
+CONFIG_ATA_GENERIC=m
+CONFIG_PATA_LEGACY=m
+CONFIG_MD=y
+CONFIG_BLK_DEV_MD=y
+CONFIG_MD_AUTODETECT=y
+CONFIG_MD_LINEAR=y
+CONFIG_MD_RAID0=y
+CONFIG_MD_RAID1=y
+CONFIG_MD_RAID10=y
+CONFIG_MD_RAID456=m
+CONFIG_MULTICORE_RAID456=y
+CONFIG_MD_MULTIPATH=m
+CONFIG_MD_FAULTY=m
+CONFIG_BLK_DEV_DM=y
+# CONFIG_DM_DEBUG is not set
+CONFIG_DM_BUFIO=m
+CONFIG_DM_PERSISTENT_DATA=m
+CONFIG_DM_CRYPT=m
+CONFIG_DM_SNAPSHOT=m
+CONFIG_DM_THIN_PROVISIONING=m
+CONFIG_DM_DEBUG_BLOCK_STACK_TRACING=y
+CONFIG_DM_MIRROR=y
+CONFIG_DM_RAID=m
+CONFIG_DM_LOG_USERSPACE=m
+CONFIG_DM_ZERO=y
+CONFIG_DM_MULTIPATH=m
+CONFIG_DM_MULTIPATH_QL=m
+CONFIG_DM_MULTIPATH_ST=m
+# CONFIG_DM_DELAY is not set
+# CONFIG_DM_UEVENT is not set
+CONFIG_DM_FLAKEY=m
+CONFIG_DM_VERITY=m
+# CONFIG_TARGET_CORE is not set
+# CONFIG_FUSION is not set
+
+#
+# IEEE 1394 (FireWire) support
+#
+# CONFIG_FIREWIRE is not set
+# CONFIG_FIREWIRE_NOSY is not set
+# CONFIG_I2O is not set
+CONFIG_MACINTOSH_DRIVERS=y
+CONFIG_MAC_EMUMOUSEBTN=y
+CONFIG_NETDEVICES=y
+CONFIG_NET_CORE=y
+CONFIG_BONDING=m
+CONFIG_DUMMY=m
+CONFIG_EQUALIZER=m
+# CONFIG_NET_FC is not set
+CONFIG_MII=y
+CONFIG_IFB=m
+CONFIG_NET_TEAM=m
+CONFIG_NET_TEAM_MODE_BROADCAST=m
+CONFIG_NET_TEAM_MODE_ROUNDROBIN=m
+CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m
+CONFIG_NET_TEAM_MODE_LOADBALANCE=m
+CONFIG_MACVLAN=m
+CONFIG_MACVTAP=m
+CONFIG_NETCONSOLE=y
+CONFIG_NETPOLL=y
+# CONFIG_NETPOLL_TRAP is not set
+CONFIG_NET_POLL_CONTROLLER=y
+CONFIG_TUN=y
+CONFIG_VETH=m
+CONFIG_VIRTIO_NET=m
+CONFIG_SUNGEM_PHY=m
+CONFIG_ARCNET=m
+CONFIG_ARCNET_1201=m
+CONFIG_ARCNET_1051=m
+CONFIG_ARCNET_RAW=m
+CONFIG_ARCNET_CAP=m
+CONFIG_ARCNET_COM90xx=m
+CONFIG_ARCNET_COM90xxIO=m
+CONFIG_ARCNET_RIM_I=m
+CONFIG_ARCNET_COM20020=m
+CONFIG_ARCNET_COM20020_PCI=m
+CONFIG_ARCNET_COM20020_CS=m
+
+#
+# CAIF transport drivers
+#
+CONFIG_ETHERNET=y
+CONFIG_MDIO=m
+CONFIG_NET_VENDOR_3COM=y
+CONFIG_PCMCIA_3C574=m
+CONFIG_PCMCIA_3C589=m
+CONFIG_VORTEX=m
+CONFIG_TYPHOON=m
+CONFIG_NET_VENDOR_ADAPTEC=y
+CONFIG_ADAPTEC_STARFIRE=m
+CONFIG_NET_VENDOR_ALTEON=y
+CONFIG_ACENIC=m
+# CONFIG_ACENIC_OMIT_TIGON_I is not set
+CONFIG_NET_VENDOR_AMD=y
+CONFIG_AMD8111_ETH=m
+CONFIG_PCNET32=m
+CONFIG_PCMCIA_NMCLAN=m
+CONFIG_NET_VENDOR_ATHEROS=y
+CONFIG_ATL2=m
+CONFIG_ATL1=m
+CONFIG_ATL1E=m
+CONFIG_ATL1C=m
+CONFIG_NET_VENDOR_BROADCOM=y
+CONFIG_B44=m
+CONFIG_B44_PCI_AUTOSELECT=y
+CONFIG_B44_PCICORE_AUTOSELECT=y
+CONFIG_B44_PCI=y
+CONFIG_BNX2=m
+CONFIG_CNIC=m
+CONFIG_TIGON3=y
+CONFIG_BNX2X=m
+CONFIG_NET_VENDOR_BROCADE=y
+CONFIG_BNA=m
+CONFIG_NET_CALXEDA_XGMAC=m
+CONFIG_NET_VENDOR_CHELSIO=y
+CONFIG_CHELSIO_T1=m
+CONFIG_CHELSIO_T1_1G=y
+CONFIG_CHELSIO_T3=m
+CONFIG_CHELSIO_T4=m
+CONFIG_CHELSIO_T4VF=m
+CONFIG_NET_VENDOR_CISCO=y
+CONFIG_ENIC=m
+CONFIG_DNET=m
+CONFIG_NET_VENDOR_DEC=y
+CONFIG_NET_TULIP=y
+CONFIG_DE2104X=m
+CONFIG_DE2104X_DSL=0
+CONFIG_TULIP=m
+CONFIG_TULIP_MWI=y
+CONFIG_TULIP_MMIO=y
+# CONFIG_TULIP_NAPI is not set
+CONFIG_DE4X5=m
+CONFIG_WINBOND_840=m
+CONFIG_DM9102=m
+CONFIG_ULI526X=m
+CONFIG_PCMCIA_XIRCOM=m
+CONFIG_NET_VENDOR_DLINK=y
+CONFIG_DE600=m
+CONFIG_DE620=m
+CONFIG_DL2K=m
+CONFIG_SUNDANCE=m
+# CONFIG_SUNDANCE_MMIO is not set
+CONFIG_NET_VENDOR_EMULEX=y
+CONFIG_BE2NET=m
+CONFIG_NET_VENDOR_EXAR=y
+CONFIG_S2IO=m
+CONFIG_VXGE=m
+# CONFIG_VXGE_DEBUG_TRACE_ALL is not set
+CONFIG_NET_VENDOR_FUJITSU=y
+CONFIG_PCMCIA_FMVJ18X=m
+CONFIG_NET_VENDOR_HP=y
+CONFIG_HP100=m
+CONFIG_NET_VENDOR_INTEL=y
+CONFIG_E100=y
+CONFIG_E1000=y
+CONFIG_E1000E=m
+CONFIG_IGB=m
+CONFIG_IGB_PTP=y
+CONFIG_IGBVF=m
+CONFIG_IXGB=m
+CONFIG_IXGBE=m
+CONFIG_IXGBE_HWMON=y
+CONFIG_IXGBE_PTP=y
+CONFIG_IXGBEVF=m
+CONFIG_NET_VENDOR_I825XX=y
+CONFIG_ZNET=m
+CONFIG_IP1000=m
+CONFIG_JME=m
+CONFIG_NET_VENDOR_MARVELL=y
+CONFIG_SKGE=m
+# CONFIG_SKGE_DEBUG is not set
+# CONFIG_SKGE_GENESIS is not set
+CONFIG_SKY2=y
+# CONFIG_SKY2_DEBUG is not set
+CONFIG_NET_VENDOR_MELLANOX=y
+CONFIG_MLX4_EN=m
+CONFIG_MLX4_CORE=m
+CONFIG_MLX4_DEBUG=y
+CONFIG_NET_VENDOR_MICREL=y
+# CONFIG_KS8842 is not set
+CONFIG_KS8851_MLL=m
+CONFIG_KSZ884X_PCI=m
+CONFIG_NET_VENDOR_MYRI=y
+CONFIG_MYRI10GE=m
+CONFIG_FEALNX=m
+CONFIG_NET_VENDOR_NATSEMI=y
+CONFIG_NATSEMI=m
+CONFIG_NS83820=m
+CONFIG_NET_VENDOR_8390=y
+CONFIG_PCMCIA_AXNET=m
+CONFIG_NE2K_PCI=m
+CONFIG_PCMCIA_PCNET=m
+CONFIG_NET_VENDOR_NVIDIA=y
+CONFIG_FORCEDETH=y
+CONFIG_NET_VENDOR_OKI=y
+CONFIG_PCH_GBE=m
+CONFIG_PCH_PTP=y
+CONFIG_ETHOC=m
+CONFIG_NET_PACKET_ENGINE=y
+CONFIG_HAMACHI=m
+CONFIG_YELLOWFIN=m
+CONFIG_NET_VENDOR_QLOGIC=y
+CONFIG_QLA3XXX=m
+CONFIG_QLCNIC=m
+CONFIG_QLGE=m
+CONFIG_NETXEN_NIC=m
+CONFIG_NET_VENDOR_REALTEK=y
+CONFIG_ATP=m
+CONFIG_8139CP=m
+CONFIG_8139TOO=y
+CONFIG_8139TOO_PIO=y
+CONFIG_8139TOO_TUNE_TWISTER=y
+# CONFIG_8139TOO_8129 is not set
+# CONFIG_8139_OLD_RX_RESET is not set
+CONFIG_R8169=y
+CONFIG_NET_VENDOR_RDC=y
+CONFIG_R6040=m
+CONFIG_NET_VENDOR_SEEQ=y
+CONFIG_SEEQ8005=m
+CONFIG_NET_VENDOR_SILAN=y
+CONFIG_SC92031=m
+CONFIG_NET_VENDOR_SIS=y
+CONFIG_SIS900=m
+CONFIG_SIS190=m
+CONFIG_SFC=m
+CONFIG_SFC_MCDI_MON=y
+CONFIG_SFC_SRIOV=y
+CONFIG_NET_VENDOR_SMSC=y
+CONFIG_PCMCIA_SMC91C92=m
+CONFIG_EPIC100=m
+CONFIG_SMSC9420=m
+CONFIG_NET_VENDOR_STMICRO=y
+CONFIG_STMMAC_ETH=m
+CONFIG_STMMAC_PLATFORM=y
+CONFIG_STMMAC_PCI=y
+CONFIG_STMMAC_DEBUG_FS=y
+# CONFIG_STMMAC_DA is not set
+CONFIG_STMMAC_RING=y
+# CONFIG_STMMAC_CHAINED is not set
+CONFIG_NET_VENDOR_SUN=y
+CONFIG_HAPPYMEAL=m
+CONFIG_SUNGEM=m
+# CONFIG_CASSINI is not set
+CONFIG_NIU=m
+CONFIG_NET_VENDOR_TEHUTI=y
+CONFIG_TEHUTI=m
+CONFIG_NET_VENDOR_TI=y
+CONFIG_TLAN=m
+CONFIG_NET_VENDOR_VIA=y
+CONFIG_VIA_RHINE=m
+# CONFIG_VIA_RHINE_MMIO is not set
+CONFIG_VIA_VELOCITY=m
+CONFIG_NET_VENDOR_WIZNET=y
+CONFIG_WIZNET_W5100=m
+CONFIG_WIZNET_W5300=m
+# CONFIG_WIZNET_BUS_DIRECT is not set
+# CONFIG_WIZNET_BUS_INDIRECT is not set
+CONFIG_WIZNET_BUS_ANY=y
+CONFIG_NET_VENDOR_XIRCOM=y
+CONFIG_PCMCIA_XIRC2PS=m
+CONFIG_FDDI=y
+# CONFIG_DEFXX is not set
+# CONFIG_SKFP is not set
+# CONFIG_HIPPI is not set
+# CONFIG_NET_SB1000 is not set
+CONFIG_PHYLIB=y
+
+#
+# MII PHY device drivers
+#
+CONFIG_AMD_PHY=m
+CONFIG_MARVELL_PHY=m
+CONFIG_DAVICOM_PHY=m
+CONFIG_QSEMI_PHY=m
+CONFIG_LXT_PHY=m
+CONFIG_CICADA_PHY=m
+CONFIG_VITESSE_PHY=m
+CONFIG_SMSC_PHY=m
+CONFIG_BROADCOM_PHY=m
+CONFIG_BCM87XX_PHY=m
+CONFIG_ICPLUS_PHY=m
+CONFIG_REALTEK_PHY=m
+CONFIG_NATIONAL_PHY=m
+CONFIG_STE10XP=m
+CONFIG_LSI_ET1011C_PHY=m
+CONFIG_MICREL_PHY=m
+# CONFIG_FIXED_PHY is not set
+CONFIG_MDIO_BITBANG=m
+# CONFIG_PLIP is not set
+CONFIG_PPP=m
+CONFIG_PPP_BSDCOMP=m
+CONFIG_PPP_DEFLATE=m
+CONFIG_PPP_FILTER=y
+CONFIG_PPP_MPPE=m
+CONFIG_PPP_MULTILINK=y
+CONFIG_PPPOE=m
+CONFIG_PPTP=m
+CONFIG_PPPOL2TP=m
+CONFIG_PPP_ASYNC=m
+CONFIG_PPP_SYNC_TTY=m
+CONFIG_SLIP=m
+CONFIG_SLHC=m
+CONFIG_SLIP_COMPRESSED=y
+# CONFIG_SLIP_SMART is not set
+# CONFIG_SLIP_MODE_SLIP6 is not set
+
+#
+# USB Network Adapters
+#
+CONFIG_USB_CATC=m
+CONFIG_USB_KAWETH=m
+CONFIG_USB_PEGASUS=m
+CONFIG_USB_RTL8150=m
+CONFIG_USB_USBNET=m
+CONFIG_USB_NET_AX8817X=m
+CONFIG_USB_NET_CDCETHER=m
+CONFIG_USB_NET_CDC_EEM=m
+CONFIG_USB_NET_CDC_NCM=m
+CONFIG_USB_NET_DM9601=m
+CONFIG_USB_NET_SMSC75XX=m
+CONFIG_USB_NET_SMSC95XX=m
+CONFIG_USB_NET_GL620A=m
+CONFIG_USB_NET_NET1080=m
+CONFIG_USB_NET_PLUSB=m
+CONFIG_USB_NET_MCS7830=m
+CONFIG_USB_NET_RNDIS_HOST=m
+CONFIG_USB_NET_CDC_SUBSET=m
+CONFIG_USB_ALI_M5632=y
+CONFIG_USB_AN2720=y
+CONFIG_USB_BELKIN=y
+CONFIG_USB_ARMLINUX=y
+CONFIG_USB_EPSON2888=y
+CONFIG_USB_KC2190=y
+CONFIG_USB_NET_ZAURUS=m
+CONFIG_USB_NET_CX82310_ETH=m
+CONFIG_USB_NET_KALMIA=m
+CONFIG_USB_NET_QMI_WWAN=m
+CONFIG_USB_NET_INT51X1=m
+CONFIG_USB_IPHETH=m
+CONFIG_USB_SIERRA_NET=m
+CONFIG_USB_VL600=m
+# CONFIG_WLAN is not set
+
+#
+# Enable WiMAX (Networking options) to see the WiMAX drivers
+#
+# CONFIG_WAN is not set
+CONFIG_XEN_NETDEV_FRONTEND=y
+# CONFIG_XEN_NETDEV_BACKEND is not set
+# CONFIG_VMXNET3 is not set
+# CONFIG_HYPERV_NET is not set
+# CONFIG_ISDN is not set
+
+#
+# Input device support
+#
+CONFIG_INPUT=y
+CONFIG_INPUT_FF_MEMLESS=y
+CONFIG_INPUT_POLLDEV=y
+CONFIG_INPUT_SPARSEKMAP=y
+CONFIG_INPUT_MATRIXKMAP=m
+
+#
+# Userland interfaces
+#
+CONFIG_INPUT_MOUSEDEV=y
+# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
+CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
+CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
+# CONFIG_INPUT_JOYDEV is not set
+CONFIG_INPUT_EVDEV=y
+# CONFIG_INPUT_EVBUG is not set
+
+#
+# Input Device Drivers
+#
+CONFIG_INPUT_KEYBOARD=y
+CONFIG_KEYBOARD_ADP5520=m
+CONFIG_KEYBOARD_ADP5588=m
+CONFIG_KEYBOARD_ADP5589=m
+CONFIG_KEYBOARD_ATKBD=y
+CONFIG_KEYBOARD_QT1070=m
+CONFIG_KEYBOARD_QT2160=m
+CONFIG_KEYBOARD_LKKBD=m
+CONFIG_KEYBOARD_TCA6416=m
+CONFIG_KEYBOARD_TCA8418=m
+CONFIG_KEYBOARD_LM8323=m
+CONFIG_KEYBOARD_LM8333=m
+CONFIG_KEYBOARD_MAX7359=m
+CONFIG_KEYBOARD_MCS=m
+CONFIG_KEYBOARD_MPR121=m
+CONFIG_KEYBOARD_NEWTON=m
+CONFIG_KEYBOARD_OPENCORES=m
+CONFIG_KEYBOARD_STOWAWAY=m
+CONFIG_KEYBOARD_SUNKBD=m
+CONFIG_KEYBOARD_STMPE=m
+CONFIG_KEYBOARD_OMAP4=m
+CONFIG_KEYBOARD_TC3589X=m
+CONFIG_KEYBOARD_TWL4030=m
+CONFIG_KEYBOARD_XTKBD=m
+CONFIG_INPUT_MOUSE=y
+CONFIG_MOUSE_PS2=y
+CONFIG_MOUSE_PS2_ALPS=y
+CONFIG_MOUSE_PS2_LOGIPS2PP=y
+CONFIG_MOUSE_PS2_SYNAPTICS=y
+CONFIG_MOUSE_PS2_LIFEBOOK=y
+CONFIG_MOUSE_PS2_TRACKPOINT=y
+# CONFIG_MOUSE_PS2_ELANTECH is not set
+# CONFIG_MOUSE_PS2_SENTELIC is not set
+# CONFIG_MOUSE_PS2_TOUCHKIT is not set
+CONFIG_MOUSE_SERIAL=m
+CONFIG_MOUSE_APPLETOUCH=m
+CONFIG_MOUSE_BCM5974=m
+CONFIG_MOUSE_VSXXXAA=m
+CONFIG_MOUSE_SYNAPTICS_I2C=m
+CONFIG_MOUSE_SYNAPTICS_USB=m
+CONFIG_INPUT_JOYSTICK=y
+CONFIG_JOYSTICK_ANALOG=m
+CONFIG_JOYSTICK_A3D=m
+CONFIG_JOYSTICK_ADI=m
+CONFIG_JOYSTICK_COBRA=m
+CONFIG_JOYSTICK_GF2K=m
+CONFIG_JOYSTICK_GRIP=m
+CONFIG_JOYSTICK_GRIP_MP=m
+CONFIG_JOYSTICK_GUILLEMOT=m
+CONFIG_JOYSTICK_INTERACT=m
+CONFIG_JOYSTICK_SIDEWINDER=m
+CONFIG_JOYSTICK_TMDC=m
+CONFIG_JOYSTICK_IFORCE=m
+CONFIG_JOYSTICK_IFORCE_USB=y
+CONFIG_JOYSTICK_IFORCE_232=y
+CONFIG_JOYSTICK_WARRIOR=m
+CONFIG_JOYSTICK_MAGELLAN=m
+CONFIG_JOYSTICK_SPACEORB=m
+CONFIG_JOYSTICK_SPACEBALL=m
+CONFIG_JOYSTICK_STINGER=m
+CONFIG_JOYSTICK_TWIDJOY=m
+CONFIG_JOYSTICK_ZHENHUA=m
+CONFIG_JOYSTICK_DB9=m
+CONFIG_JOYSTICK_GAMECON=m
+CONFIG_JOYSTICK_TURBOGRAFX=m
+CONFIG_JOYSTICK_AS5011=m
+CONFIG_JOYSTICK_JOYDUMP=m
+CONFIG_JOYSTICK_XPAD=m
+CONFIG_JOYSTICK_XPAD_FF=y
+CONFIG_JOYSTICK_XPAD_LEDS=y
+CONFIG_JOYSTICK_WALKERA0701=m
+CONFIG_INPUT_TABLET=y
+CONFIG_TABLET_USB_ACECAD=m
+CONFIG_TABLET_USB_AIPTEK=m
+CONFIG_TABLET_USB_GTCO=m
+CONFIG_TABLET_USB_HANWANG=m
+CONFIG_TABLET_USB_KBTAB=m
+CONFIG_TABLET_USB_WACOM=m
+CONFIG_INPUT_TOUCHSCREEN=y
+CONFIG_TOUCHSCREEN_88PM860X=m
+CONFIG_TOUCHSCREEN_AD7879=m
+CONFIG_TOUCHSCREEN_AD7879_I2C=m
+CONFIG_TOUCHSCREEN_ATMEL_MXT=m
+CONFIG_TOUCHSCREEN_BU21013=m
+CONFIG_TOUCHSCREEN_CYTTSP_CORE=m
+CONFIG_TOUCHSCREEN_CYTTSP_I2C=m
+CONFIG_TOUCHSCREEN_DA9034=y
+CONFIG_TOUCHSCREEN_DA9052=m
+CONFIG_TOUCHSCREEN_DYNAPRO=m
+CONFIG_TOUCHSCREEN_HAMPSHIRE=m
+CONFIG_TOUCHSCREEN_EETI=m
+CONFIG_TOUCHSCREEN_EGALAX=m
+CONFIG_TOUCHSCREEN_FUJITSU=m
+CONFIG_TOUCHSCREEN_ILI210X=m
+CONFIG_TOUCHSCREEN_GUNZE=m
+CONFIG_TOUCHSCREEN_ELO=m
+CONFIG_TOUCHSCREEN_WACOM_W8001=m
+CONFIG_TOUCHSCREEN_WACOM_I2C=m
+CONFIG_TOUCHSCREEN_MAX11801=m
+CONFIG_TOUCHSCREEN_MCS5000=m
+CONFIG_TOUCHSCREEN_MMS114=m
+CONFIG_TOUCHSCREEN_MTOUCH=m
+CONFIG_TOUCHSCREEN_INEXIO=m
+CONFIG_TOUCHSCREEN_MK712=m
+CONFIG_TOUCHSCREEN_PENMOUNT=m
+CONFIG_TOUCHSCREEN_EDT_FT5X06=m
+CONFIG_TOUCHSCREEN_TOUCHRIGHT=m
+CONFIG_TOUCHSCREEN_TOUCHWIN=m
+CONFIG_TOUCHSCREEN_PIXCIR=m
+CONFIG_TOUCHSCREEN_WM831X=m
+CONFIG_TOUCHSCREEN_WM97XX=m
+CONFIG_TOUCHSCREEN_WM9705=y
+CONFIG_TOUCHSCREEN_WM9712=y
+CONFIG_TOUCHSCREEN_WM9713=y
+CONFIG_TOUCHSCREEN_USB_COMPOSITE=m
+CONFIG_TOUCHSCREEN_MC13783=m
+CONFIG_TOUCHSCREEN_USB_EGALAX=y
+CONFIG_TOUCHSCREEN_USB_PANJIT=y
+CONFIG_TOUCHSCREEN_USB_3M=y
+CONFIG_TOUCHSCREEN_USB_ITM=y
+CONFIG_TOUCHSCREEN_USB_ETURBO=y
+CONFIG_TOUCHSCREEN_USB_GUNZE=y
+CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y
+CONFIG_TOUCHSCREEN_USB_IRTOUCH=y
+CONFIG_TOUCHSCREEN_USB_IDEALTEK=y
+CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y
+CONFIG_TOUCHSCREEN_USB_GOTOP=y
+CONFIG_TOUCHSCREEN_USB_JASTEC=y
+CONFIG_TOUCHSCREEN_USB_ELO=y
+CONFIG_TOUCHSCREEN_USB_E2I=y
+CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y
+CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y
+CONFIG_TOUCHSCREEN_USB_NEXIO=y
+CONFIG_TOUCHSCREEN_USB_EASYTOUCH=y
+CONFIG_TOUCHSCREEN_TOUCHIT213=m
+CONFIG_TOUCHSCREEN_TSC_SERIO=m
+CONFIG_TOUCHSCREEN_TSC2007=m
+CONFIG_TOUCHSCREEN_ST1232=m
+CONFIG_TOUCHSCREEN_STMPE=m
+CONFIG_TOUCHSCREEN_TPS6507X=m
+CONFIG_INPUT_MISC=y
+CONFIG_INPUT_88PM860X_ONKEY=m
+CONFIG_INPUT_88PM80X_ONKEY=m
+CONFIG_INPUT_AD714X=m
+CONFIG_INPUT_AD714X_I2C=m
+CONFIG_INPUT_BMA150=m
+CONFIG_INPUT_PCSPKR=m
+# CONFIG_INPUT_MAX8925_ONKEY is not set
+CONFIG_INPUT_MC13783_PWRBUTTON=m
+CONFIG_INPUT_MMA8450=m
+CONFIG_INPUT_MPU3050=m
+CONFIG_INPUT_APANEL=m
+CONFIG_INPUT_ATLAS_BTNS=m
+CONFIG_INPUT_ATI_REMOTE2=m
+CONFIG_INPUT_KEYSPAN_REMOTE=m
+CONFIG_INPUT_KXTJ9=m
+# CONFIG_INPUT_KXTJ9_POLLED_MODE is not set
+CONFIG_INPUT_POWERMATE=m
+CONFIG_INPUT_YEALINK=m
+CONFIG_INPUT_CM109=m
+CONFIG_INPUT_TWL4030_PWRBUTTON=m
+CONFIG_INPUT_TWL4030_VIBRA=m
+# CONFIG_INPUT_TWL6040_VIBRA is not set
+CONFIG_INPUT_UINPUT=m
+CONFIG_INPUT_PCF50633_PMU=m
+CONFIG_INPUT_PCF8574=m
+CONFIG_INPUT_DA9052_ONKEY=m
+CONFIG_INPUT_WM831X_ON=m
+CONFIG_INPUT_ADXL34X=m
+CONFIG_INPUT_ADXL34X_I2C=m
+CONFIG_INPUT_CMA3000=m
+CONFIG_INPUT_CMA3000_I2C=m
+CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y
+
+#
+# Hardware I/O ports
+#
+CONFIG_SERIO=y
+CONFIG_SERIO_I8042=y
+CONFIG_SERIO_SERPORT=y
+CONFIG_SERIO_CT82C710=m
+CONFIG_SERIO_PARKBD=m
+CONFIG_SERIO_PCIPS2=m
+CONFIG_SERIO_LIBPS2=y
+CONFIG_SERIO_RAW=m
+CONFIG_SERIO_ALTERA_PS2=m
+CONFIG_SERIO_PS2MULT=m
+CONFIG_GAMEPORT=y
+CONFIG_GAMEPORT_NS558=m
+CONFIG_GAMEPORT_L4=m
+CONFIG_GAMEPORT_EMU10K1=m
+CONFIG_GAMEPORT_FM801=m
+
+#
+# Character devices
+#
+CONFIG_VT=y
+CONFIG_CONSOLE_TRANSLATIONS=y
+CONFIG_VT_CONSOLE=y
+CONFIG_VT_CONSOLE_SLEEP=y
+CONFIG_HW_CONSOLE=y
+CONFIG_VT_HW_CONSOLE_BINDING=y
+CONFIG_UNIX98_PTYS=y
+# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
+# CONFIG_LEGACY_PTYS is not set
+CONFIG_SERIAL_NONSTANDARD=y
+CONFIG_ROCKETPORT=m
+CONFIG_CYCLADES=m
+# CONFIG_CYZ_INTR is not set
+CONFIG_MOXA_INTELLIO=m
+CONFIG_MOXA_SMARTIO=m
+CONFIG_SYNCLINK=m
+CONFIG_SYNCLINKMP=m
+CONFIG_SYNCLINK_GT=m
+CONFIG_NOZOMI=m
+CONFIG_ISI=m
+CONFIG_N_HDLC=m
+CONFIG_N_GSM=m
+# CONFIG_TRACE_ROUTER is not set
+CONFIG_TRACE_SINK=m
+
+#
+# KCopy
+#
+CONFIG_KCOPY=m
+CONFIG_DEVKMEM=y
+# CONFIG_STALDRV is not set
+
+#
+# Serial drivers
+#
+CONFIG_SERIAL_8250=y
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_FIX_EARLYCON_MEM=y
+CONFIG_SERIAL_8250_PCI=y
+CONFIG_SERIAL_8250_PNP=y
+CONFIG_SERIAL_8250_CS=m
+CONFIG_SERIAL_8250_NR_UARTS=32
+CONFIG_SERIAL_8250_RUNTIME_UARTS=4
+CONFIG_SERIAL_8250_EXTENDED=y
+CONFIG_SERIAL_8250_MANY_PORTS=y
+CONFIG_SERIAL_8250_SHARE_IRQ=y
+CONFIG_SERIAL_8250_DETECT_IRQ=y
+CONFIG_SERIAL_8250_RSA=y
+
+#
+# Non-8250 serial port support
+#
+CONFIG_SERIAL_MFD_HSU=m
+CONFIG_SERIAL_CORE=y
+CONFIG_SERIAL_CORE_CONSOLE=y
+CONFIG_SERIAL_JSM=m
+CONFIG_SERIAL_TIMBERDALE=m
+CONFIG_SERIAL_ALTERA_JTAGUART=m
+CONFIG_SERIAL_ALTERA_UART=m
+CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4
+CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200
+CONFIG_SERIAL_PCH_UART=m
+CONFIG_SERIAL_XILINX_PS_UART=m
+CONFIG_PRINTER=m
+# CONFIG_LP_CONSOLE is not set
+CONFIG_PPDEV=m
+CONFIG_HVC_DRIVER=y
+CONFIG_HVC_IRQ=y
+CONFIG_HVC_XEN=y
+CONFIG_HVC_XEN_FRONTEND=y
+CONFIG_VIRTIO_CONSOLE=m
+CONFIG_IPMI_HANDLER=m
+# CONFIG_IPMI_PANIC_EVENT is not set
+CONFIG_IPMI_DEVICE_INTERFACE=m
+CONFIG_IPMI_SI=m
+CONFIG_IPMI_WATCHDOG=m
+CONFIG_IPMI_POWEROFF=m
+CONFIG_HW_RANDOM=y
+CONFIG_HW_RANDOM_TIMERIOMEM=m
+CONFIG_HW_RANDOM_INTEL=m
+CONFIG_HW_RANDOM_AMD=m
+CONFIG_HW_RANDOM_VIA=y
+CONFIG_HW_RANDOM_VIRTIO=m
+CONFIG_NVRAM=y
+CONFIG_R3964=m
+CONFIG_APPLICOM=m
+
+#
+# PCMCIA character devices
+#
+CONFIG_SYNCLINK_CS=m
+CONFIG_CARDMAN_4000=m
+CONFIG_CARDMAN_4040=m
+CONFIG_IPWIRELESS=m
+# CONFIG_MWAVE is not set
+CONFIG_RAW_DRIVER=m
+CONFIG_MAX_RAW_DEVS=256
+CONFIG_HPET=y
+# CONFIG_HPET_MMAP is not set
+CONFIG_HANGCHECK_TIMER=m
+CONFIG_TCG_TPM=m
+CONFIG_TCG_TIS=m
+CONFIG_TCG_NSC=m
+CONFIG_TCG_ATMEL=m
+CONFIG_TCG_INFINEON=m
+# CONFIG_TELCLOCK is not set
+CONFIG_DEVPORT=y
+CONFIG_I2C=y
+CONFIG_I2C_BOARDINFO=y
+CONFIG_I2C_COMPAT=y
+CONFIG_I2C_CHARDEV=m
+CONFIG_I2C_MUX=m
+
+#
+# Multiplexer I2C Chip support
+#
+CONFIG_I2C_MUX_PCA9541=m
+CONFIG_I2C_MUX_PCA954x=m
+CONFIG_I2C_HELPER_AUTO=y
+CONFIG_I2C_SMBUS=m
+CONFIG_I2C_ALGOBIT=y
+CONFIG_I2C_ALGOPCA=m
+
+#
+# I2C Hardware Bus support
+#
+
+#
+# PC SMBus host controller drivers
+#
+CONFIG_I2C_ALI1535=m
+CONFIG_I2C_ALI1563=m
+CONFIG_I2C_ALI15X3=m
+CONFIG_I2C_AMD756=m
+CONFIG_I2C_AMD756_S4882=m
+CONFIG_I2C_AMD8111=m
+CONFIG_I2C_I801=y
+CONFIG_I2C_ISCH=m
+CONFIG_I2C_PIIX4=m
+CONFIG_I2C_NFORCE2=m
+CONFIG_I2C_NFORCE2_S4985=m
+CONFIG_I2C_SIS5595=m
+CONFIG_I2C_SIS630=m
+CONFIG_I2C_SIS96X=m
+CONFIG_I2C_VIA=m
+CONFIG_I2C_VIAPRO=m
+
+#
+# ACPI drivers
+#
+CONFIG_I2C_SCMI=m
+
+#
+# I2C system bus drivers (mostly embedded / system-on-chip)
+#
+CONFIG_I2C_DESIGNWARE_CORE=m
+CONFIG_I2C_DESIGNWARE_PCI=m
+CONFIG_I2C_EG20T=m
+CONFIG_I2C_INTEL_MID=m
+CONFIG_I2C_OCORES=m
+CONFIG_I2C_PCA_PLATFORM=m
+# CONFIG_I2C_PXA_PCI is not set
+CONFIG_I2C_SIMTEC=m
+CONFIG_I2C_XILINX=m
+
+#
+# External I2C/SMBus adapter drivers
+#
+CONFIG_I2C_DIOLAN_U2C=m
+CONFIG_I2C_PARPORT=m
+CONFIG_I2C_PARPORT_LIGHT=m
+CONFIG_I2C_TAOS_EVM=m
+CONFIG_I2C_TINY_USB=m
+
+#
+# Other I2C/SMBus bus drivers
+#
+CONFIG_I2C_STUB=m
+# CONFIG_I2C_DEBUG_CORE is not set
+# CONFIG_I2C_DEBUG_ALGO is not set
+# CONFIG_I2C_DEBUG_BUS is not set
+# CONFIG_SPI is not set
+# CONFIG_HSI is not set
+
+#
+# PPS support
+#
+CONFIG_PPS=m
+# CONFIG_PPS_DEBUG is not set
+
+#
+# PPS clients support
+#
+CONFIG_PPS_CLIENT_KTIMER=m
+CONFIG_PPS_CLIENT_LDISC=m
+CONFIG_PPS_CLIENT_PARPORT=m
+CONFIG_PPS_CLIENT_GPIO=m
+
+#
+# PPS generators support
+#
+
+#
+# PTP clock support
+#
+CONFIG_PTP_1588_CLOCK=m
+
+#
+# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
+#
+CONFIG_PTP_1588_CLOCK_PCH=m
+CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
+# CONFIG_GPIOLIB is not set
+CONFIG_W1=m
+CONFIG_W1_CON=y
+
+#
+# 1-wire Bus Masters
+#
+# CONFIG_W1_MASTER_MATROX is not set
+# CONFIG_W1_MASTER_DS2490 is not set
+# CONFIG_W1_MASTER_DS2482 is not set
+# CONFIG_W1_MASTER_DS1WM is not set
+
+#
+# 1-wire Slaves
+#
+# CONFIG_W1_SLAVE_THERM is not set
+# CONFIG_W1_SLAVE_SMEM is not set
+# CONFIG_W1_SLAVE_DS2408 is not set
+# CONFIG_W1_SLAVE_DS2423 is not set
+# CONFIG_W1_SLAVE_DS2431 is not set
+# CONFIG_W1_SLAVE_DS2433 is not set
+# CONFIG_W1_SLAVE_DS2760 is not set
+CONFIG_W1_SLAVE_DS2780=m
+CONFIG_W1_SLAVE_DS2781=m
+CONFIG_W1_SLAVE_DS28E04=m
+# CONFIG_W1_SLAVE_BQ27000 is not set
+CONFIG_POWER_SUPPLY=y
+# CONFIG_POWER_SUPPLY_DEBUG is not set
+CONFIG_PDA_POWER=m
+# CONFIG_MAX8925_POWER is not set
+# CONFIG_WM831X_BACKUP is not set
+# CONFIG_WM831X_POWER is not set
+# CONFIG_WM8350_POWER is not set
+CONFIG_TEST_POWER=m
+CONFIG_BATTERY_DS2780=m
+CONFIG_BATTERY_DS2781=m
+CONFIG_BATTERY_DS2782=m
+CONFIG_BATTERY_SBS=m
+CONFIG_BATTERY_BQ27x00=m
+CONFIG_BATTERY_BQ27X00_I2C=y
+CONFIG_BATTERY_BQ27X00_PLATFORM=y
+# CONFIG_BATTERY_DA9030 is not set
+CONFIG_BATTERY_MAX17040=m
+CONFIG_BATTERY_MAX17042=m
+# CONFIG_CHARGER_PCF50633 is not set
+CONFIG_CHARGER_ISP1704=m
+CONFIG_CHARGER_MAX8903=m
+# CONFIG_CHARGER_TWL4030 is not set
+CONFIG_CHARGER_LP8727=m
+CONFIG_CHARGER_MANAGER=y
+# CONFIG_CHARGER_MAX8997 is not set
+# CONFIG_CHARGER_MAX8998 is not set
+# CONFIG_CHARGER_SMB347 is not set
+CONFIG_POWER_AVS=y
+CONFIG_HWMON=y
+CONFIG_HWMON_VID=m
+# CONFIG_HWMON_DEBUG_CHIP is not set
+
+#
+# Native drivers
+#
+CONFIG_SENSORS_ABITUGURU=m
+CONFIG_SENSORS_ABITUGURU3=m
+CONFIG_SENSORS_AD7414=m
+CONFIG_SENSORS_AD7418=m
+CONFIG_SENSORS_ADM1021=m
+CONFIG_SENSORS_ADM1025=m
+CONFIG_SENSORS_ADM1026=m
+CONFIG_SENSORS_ADM1029=m
+CONFIG_SENSORS_ADM1031=m
+CONFIG_SENSORS_ADM9240=m
+CONFIG_SENSORS_ADT7411=m
+CONFIG_SENSORS_ADT7462=m
+CONFIG_SENSORS_ADT7470=m
+CONFIG_SENSORS_ADT7475=m
+CONFIG_SENSORS_ASC7621=m
+CONFIG_SENSORS_K8TEMP=m
+CONFIG_SENSORS_K10TEMP=m
+CONFIG_SENSORS_FAM15H_POWER=m
+CONFIG_SENSORS_ASB100=m
+CONFIG_SENSORS_ATXP1=m
+CONFIG_SENSORS_DS620=m
+CONFIG_SENSORS_DS1621=m
+CONFIG_SENSORS_DA9052_ADC=m
+CONFIG_SENSORS_I5K_AMB=m
+CONFIG_SENSORS_F71805F=m
+CONFIG_SENSORS_F71882FG=m
+CONFIG_SENSORS_F75375S=m
+CONFIG_SENSORS_FSCHMD=m
+CONFIG_SENSORS_G760A=m
+CONFIG_SENSORS_GL518SM=m
+CONFIG_SENSORS_GL520SM=m
+CONFIG_SENSORS_HIH6130=m
+CONFIG_SENSORS_CORETEMP=m
+CONFIG_SENSORS_IBMAEM=m
+CONFIG_SENSORS_IBMPEX=m
+CONFIG_SENSORS_IT87=m
+CONFIG_SENSORS_JC42=m
+CONFIG_SENSORS_LINEAGE=m
+CONFIG_SENSORS_LM63=m
+CONFIG_SENSORS_LM73=m
+CONFIG_SENSORS_LM75=m
+CONFIG_SENSORS_LM77=m
+CONFIG_SENSORS_LM78=m
+CONFIG_SENSORS_LM80=m
+CONFIG_SENSORS_LM83=m
+CONFIG_SENSORS_LM85=m
+CONFIG_SENSORS_LM87=m
+CONFIG_SENSORS_LM90=m
+CONFIG_SENSORS_LM92=m
+CONFIG_SENSORS_LM93=m
+CONFIG_SENSORS_LTC4151=m
+CONFIG_SENSORS_LTC4215=m
+CONFIG_SENSORS_LTC4245=m
+CONFIG_SENSORS_LTC4261=m
+CONFIG_SENSORS_LM95241=m
+CONFIG_SENSORS_LM95245=m
+CONFIG_SENSORS_MAX16065=m
+CONFIG_SENSORS_MAX1619=m
+CONFIG_SENSORS_MAX1668=m
+CONFIG_SENSORS_MAX6639=m
+CONFIG_SENSORS_MAX6642=m
+CONFIG_SENSORS_MAX6650=m
+CONFIG_SENSORS_MCP3021=m
+CONFIG_SENSORS_NTC_THERMISTOR=m
+CONFIG_SENSORS_PC87360=m
+CONFIG_SENSORS_PC87427=m
+CONFIG_SENSORS_PCF8591=m
+CONFIG_PMBUS=m
+CONFIG_SENSORS_PMBUS=m
+CONFIG_SENSORS_ADM1275=m
+CONFIG_SENSORS_LM25066=m
+CONFIG_SENSORS_LTC2978=m
+CONFIG_SENSORS_MAX16064=m
+CONFIG_SENSORS_MAX34440=m
+CONFIG_SENSORS_MAX8688=m
+CONFIG_SENSORS_UCD9000=m
+CONFIG_SENSORS_UCD9200=m
+CONFIG_SENSORS_ZL6100=m
+CONFIG_SENSORS_SHT21=m
+CONFIG_SENSORS_SIS5595=m
+CONFIG_SENSORS_SMM665=m
+CONFIG_SENSORS_DME1737=m
+CONFIG_SENSORS_EMC1403=m
+CONFIG_SENSORS_EMC2103=m
+CONFIG_SENSORS_EMC6W201=m
+CONFIG_SENSORS_SMSC47M1=m
+CONFIG_SENSORS_SMSC47M192=m
+CONFIG_SENSORS_SMSC47B397=m
+CONFIG_SENSORS_SCH56XX_COMMON=m
+CONFIG_SENSORS_SCH5627=m
+CONFIG_SENSORS_SCH5636=m
+CONFIG_SENSORS_ADS1015=m
+CONFIG_SENSORS_ADS7828=m
+CONFIG_SENSORS_AMC6821=m
+CONFIG_SENSORS_INA2XX=m
+CONFIG_SENSORS_THMC50=m
+CONFIG_SENSORS_TMP102=m
+CONFIG_SENSORS_TMP401=m
+CONFIG_SENSORS_TMP421=m
+# CONFIG_SENSORS_TWL4030_MADC is not set
+CONFIG_SENSORS_VIA_CPUTEMP=m
+CONFIG_SENSORS_VIA686A=m
+CONFIG_SENSORS_VT1211=m
+CONFIG_SENSORS_VT8231=m
+CONFIG_SENSORS_W83781D=m
+CONFIG_SENSORS_W83791D=m
+CONFIG_SENSORS_W83792D=m
+CONFIG_SENSORS_W83793=m
+CONFIG_SENSORS_W83795=m
+# CONFIG_SENSORS_W83795_FANCTRL is not set
+CONFIG_SENSORS_W83L785TS=m
+CONFIG_SENSORS_W83L786NG=m
+CONFIG_SENSORS_W83627HF=m
+CONFIG_SENSORS_W83627EHF=m
+# CONFIG_SENSORS_WM831X is not set
+# CONFIG_SENSORS_WM8350 is not set
+CONFIG_SENSORS_APPLESMC=m
+CONFIG_SENSORS_MC13783_ADC=m
+
+#
+# ACPI drivers
+#
+CONFIG_SENSORS_ACPI_POWER=m
+CONFIG_SENSORS_ATK0110=m
+CONFIG_THERMAL=y
+CONFIG_THERMAL_HWMON=y
+CONFIG_WATCHDOG=y
+CONFIG_WATCHDOG_CORE=y
+# CONFIG_WATCHDOG_NOWAYOUT is not set
+
+#
+# Watchdog Device Drivers
+#
+CONFIG_SOFT_WATCHDOG=m
+CONFIG_DA9052_WATCHDOG=m
+# CONFIG_WM831X_WATCHDOG is not set
+# CONFIG_WM8350_WATCHDOG is not set
+# CONFIG_TWL4030_WATCHDOG is not set
+CONFIG_ACQUIRE_WDT=m
+CONFIG_ADVANTECH_WDT=m
+CONFIG_ALIM1535_WDT=m
+CONFIG_ALIM7101_WDT=m
+CONFIG_F71808E_WDT=m
+CONFIG_SP5100_TCO=m
+CONFIG_SC520_WDT=m
+CONFIG_SBC_FITPC2_WATCHDOG=m
+CONFIG_EUROTECH_WDT=m
+CONFIG_IB700_WDT=m
+CONFIG_IBMASR=m
+CONFIG_WAFER_WDT=m
+CONFIG_I6300ESB_WDT=m
+CONFIG_IE6XX_WDT=m
+CONFIG_ITCO_WDT=m
+CONFIG_ITCO_VENDOR_SUPPORT=y
+CONFIG_IT8712F_WDT=m
+CONFIG_IT87_WDT=m
+CONFIG_HP_WATCHDOG=m
+CONFIG_HPWDT_NMI_DECODING=y
+CONFIG_SC1200_WDT=m
+CONFIG_PC87413_WDT=m
+CONFIG_NV_TCO=m
+CONFIG_60XX_WDT=m
+CONFIG_SBC8360_WDT=m
+CONFIG_CPU5_WDT=m
+CONFIG_SMSC_SCH311X_WDT=m
+CONFIG_SMSC37B787_WDT=m
+CONFIG_VIA_WDT=m
+CONFIG_W83627HF_WDT=m
+CONFIG_W83697HF_WDT=m
+CONFIG_W83697UG_WDT=m
+CONFIG_W83877F_WDT=m
+CONFIG_W83977F_WDT=m
+CONFIG_MACHZ_WDT=m
+CONFIG_SBC_EPX_C3_WATCHDOG=m
+CONFIG_XEN_WDT=m
+
+#
+# PCI-based Watchdog Cards
+#
+CONFIG_PCIPCWATCHDOG=m
+CONFIG_WDTPCI=m
+
+#
+# USB-based Watchdog Cards
+#
+CONFIG_USBPCWATCHDOG=m
+CONFIG_SSB_POSSIBLE=y
+
+#
+# Sonics Silicon Backplane
+#
+CONFIG_SSB=m
+CONFIG_SSB_SPROM=y
+CONFIG_SSB_PCIHOST_POSSIBLE=y
+CONFIG_SSB_PCIHOST=y
+# CONFIG_SSB_B43_PCI_BRIDGE is not set
+CONFIG_SSB_PCMCIAHOST_POSSIBLE=y
+CONFIG_SSB_PCMCIAHOST=y
+CONFIG_SSB_SDIOHOST_POSSIBLE=y
+CONFIG_SSB_SDIOHOST=y
+CONFIG_SSB_DEBUG=y
+CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
+CONFIG_SSB_DRIVER_PCICORE=y
+CONFIG_BCMA_POSSIBLE=y
+
+#
+# Broadcom specific AMBA
+#
+# CONFIG_BCMA is not set
+
+#
+# Multifunction device drivers
+#
+CONFIG_MFD_CORE=y
+CONFIG_MFD_88PM860X=y
+CONFIG_MFD_88PM800=m
+CONFIG_MFD_88PM805=m
+CONFIG_MFD_SM501=m
+CONFIG_HTC_PASIC3=m
+CONFIG_MFD_LM3533=m
+CONFIG_TPS6105X=m
+CONFIG_TPS6507X=m
+CONFIG_MFD_TPS65217=m
+CONFIG_MFD_TPS6586X=y
+CONFIG_TWL4030_CORE=y
+CONFIG_TWL4030_MADC=m
+CONFIG_MFD_TWL4030_AUDIO=y
+CONFIG_TWL6040_CORE=y
+CONFIG_MFD_STMPE=y
+
+#
+# STMPE Interface Drivers
+#
+CONFIG_STMPE_I2C=y
+CONFIG_MFD_TC3589X=y
+# CONFIG_MFD_TMIO is not set
+CONFIG_PMIC_DA903X=y
+CONFIG_PMIC_DA9052=y
+CONFIG_MFD_DA9052_I2C=y
+CONFIG_PMIC_ADP5520=y
+CONFIG_MFD_MAX77686=y
+# CONFIG_MFD_MAX77693 is not set
+CONFIG_MFD_MAX8925=y
+CONFIG_MFD_MAX8997=y
+CONFIG_MFD_MAX8998=y
+CONFIG_MFD_SEC_CORE=y
+CONFIG_MFD_ARIZONA=y
+CONFIG_MFD_ARIZONA_I2C=m
+CONFIG_MFD_WM5102=y
+CONFIG_MFD_WM5110=y
+CONFIG_MFD_WM8400=y
+CONFIG_MFD_WM831X=y
+CONFIG_MFD_WM831X_I2C=y
+CONFIG_MFD_WM8350=y
+CONFIG_MFD_WM8350_I2C=y
+CONFIG_MFD_WM8994=y
+CONFIG_MFD_PCF50633=m
+CONFIG_PCF50633_ADC=m
+CONFIG_PCF50633_GPIO=m
+CONFIG_MFD_MC13783=m
+CONFIG_MFD_MC13XXX=m
+CONFIG_MFD_MC13XXX_I2C=m
+CONFIG_ABX500_CORE=y
+CONFIG_AB3100_CORE=y
+CONFIG_AB3100_OTP=m
+CONFIG_MFD_CS5535=m
+CONFIG_LPC_SCH=m
+CONFIG_LPC_ICH=m
+CONFIG_MFD_RDC321X=m
+CONFIG_MFD_JANZ_CMODIO=m
+CONFIG_MFD_VX855=m
+CONFIG_MFD_WL1273_CORE=m
+CONFIG_MFD_TPS65090=y
+CONFIG_MFD_RC5T583=y
+CONFIG_MFD_PALMAS=y
+CONFIG_REGULATOR=y
+# CONFIG_REGULATOR_DEBUG is not set
+# CONFIG_REGULATOR_DUMMY is not set
+CONFIG_REGULATOR_FIXED_VOLTAGE=m
+CONFIG_REGULATOR_VIRTUAL_CONSUMER=m
+CONFIG_REGULATOR_USERSPACE_CONSUMER=m
+CONFIG_REGULATOR_AD5398=m
+CONFIG_REGULATOR_ARIZONA=m
+CONFIG_REGULATOR_DA903X=m
+CONFIG_REGULATOR_DA9052=m
+CONFIG_REGULATOR_MC13XXX_CORE=m
+CONFIG_REGULATOR_MC13783=m
+CONFIG_REGULATOR_MC13892=m
+CONFIG_REGULATOR_ISL6271A=m
+CONFIG_REGULATOR_88PM8607=y
+CONFIG_REGULATOR_MAX1586=m
+CONFIG_REGULATOR_MAX8649=m
+CONFIG_REGULATOR_MAX8660=m
+CONFIG_REGULATOR_MAX8925=m
+CONFIG_REGULATOR_MAX8952=m
+CONFIG_REGULATOR_MAX8997=m
+CONFIG_REGULATOR_MAX8998=m
+CONFIG_REGULATOR_MAX77686=m
+CONFIG_REGULATOR_LP3971=m
+CONFIG_REGULATOR_LP3972=m
+CONFIG_REGULATOR_LP872X=y
+CONFIG_REGULATOR_PCF50633=m
+CONFIG_REGULATOR_RC5T583=m
+CONFIG_REGULATOR_S2MPS11=m
+CONFIG_REGULATOR_S5M8767=m
+CONFIG_REGULATOR_AB3100=y
+CONFIG_REGULATOR_PALMAS=m
+CONFIG_REGULATOR_TPS6105X=m
+CONFIG_REGULATOR_TPS62360=m
+CONFIG_REGULATOR_TPS65023=m
+CONFIG_REGULATOR_TPS6507X=m
+CONFIG_REGULATOR_TPS65090=m
+CONFIG_REGULATOR_TPS65217=m
+CONFIG_REGULATOR_TPS6586X=m
+CONFIG_REGULATOR_TWL4030=y
+CONFIG_REGULATOR_WM831X=m
+CONFIG_REGULATOR_WM8350=m
+CONFIG_REGULATOR_WM8400=m
+CONFIG_REGULATOR_WM8994=m
+CONFIG_MEDIA_SUPPORT=y
+
+#
+# Multimedia core support
+#
+CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
+CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
+CONFIG_MEDIA_RADIO_SUPPORT=y
+CONFIG_MEDIA_RC_SUPPORT=y
+# CONFIG_MEDIA_CONTROLLER is not set
+CONFIG_VIDEO_DEV=y
+CONFIG_VIDEO_V4L2_COMMON=y
+CONFIG_DVB_CORE=y
+CONFIG_DVB_NET=y
+
+#
+# Media drivers
+#
+CONFIG_VIDEO_SAA7146=m
+CONFIG_VIDEO_SAA7146_VV=m
+CONFIG_RC_CORE=y
+CONFIG_RC_MAP=y
+CONFIG_RC_DECODERS=y
+CONFIG_LIRC=y
+CONFIG_IR_LIRC_CODEC=y
+CONFIG_IR_NEC_DECODER=y
+CONFIG_IR_RC5_DECODER=y
+CONFIG_IR_RC6_DECODER=y
+CONFIG_IR_JVC_DECODER=y
+CONFIG_IR_SONY_DECODER=y
+CONFIG_IR_RC5_SZ_DECODER=y
+CONFIG_IR_SANYO_DECODER=y
+CONFIG_IR_MCE_KBD_DECODER=y
+CONFIG_RC_DEVICES=y
+CONFIG_RC_ATI_REMOTE=m
+CONFIG_IR_ENE=m
+CONFIG_IR_IMON=m
+CONFIG_IR_MCEUSB=m
+CONFIG_IR_ITE_CIR=m
+CONFIG_IR_FINTEK=m
+CONFIG_IR_NUVOTON=m
+CONFIG_IR_REDRAT3=m
+CONFIG_IR_STREAMZAP=m
+CONFIG_IR_WINBOND_CIR=m
+CONFIG_IR_IGUANA=m
+CONFIG_RC_LOOPBACK=m
+CONFIG_IR_GPIO_CIR=m
+# CONFIG_MEDIA_ATTACH is not set
+CONFIG_MEDIA_TUNER=y
+# CONFIG_MEDIA_TUNER_CUSTOMISE is not set
+CONFIG_MEDIA_TUNER_SIMPLE=y
+CONFIG_MEDIA_TUNER_TDA8290=y
+CONFIG_MEDIA_TUNER_TDA827X=y
+CONFIG_MEDIA_TUNER_TDA18271=y
+CONFIG_MEDIA_TUNER_TDA9887=y
+CONFIG_MEDIA_TUNER_TEA5761=y
+CONFIG_MEDIA_TUNER_TEA5767=y
+CONFIG_MEDIA_TUNER_MT20XX=y
+CONFIG_MEDIA_TUNER_MT2060=m
+CONFIG_MEDIA_TUNER_MT2063=m
+CONFIG_MEDIA_TUNER_MT2266=m
+CONFIG_MEDIA_TUNER_MT2131=m
+CONFIG_MEDIA_TUNER_QT1010=m
+CONFIG_MEDIA_TUNER_XC2028=y
+CONFIG_MEDIA_TUNER_XC5000=y
+CONFIG_MEDIA_TUNER_XC4000=y
+CONFIG_MEDIA_TUNER_MXL5005S=m
+CONFIG_MEDIA_TUNER_MXL5007T=m
+CONFIG_MEDIA_TUNER_MC44S803=y
+CONFIG_MEDIA_TUNER_MAX2165=m
+CONFIG_MEDIA_TUNER_TDA18218=m
+CONFIG_MEDIA_TUNER_FC0011=m
+CONFIG_MEDIA_TUNER_FC0012=m
+CONFIG_MEDIA_TUNER_FC0013=m
+CONFIG_MEDIA_TUNER_TDA18212=m
+CONFIG_MEDIA_TUNER_TUA9001=m
+CONFIG_VIDEO_V4L2=y
+CONFIG_VIDEOBUF_GEN=m
+CONFIG_VIDEOBUF_DMA_SG=m
+CONFIG_VIDEOBUF_VMALLOC=m
+CONFIG_VIDEOBUF_DMA_CONTIG=m
+CONFIG_VIDEOBUF_DVB=m
+CONFIG_VIDEO_BTCX=m
+CONFIG_VIDEO_TVEEPROM=m
+CONFIG_VIDEO_TUNER=m
+CONFIG_VIDEOBUF2_CORE=m
+CONFIG_VIDEOBUF2_MEMOPS=m
+CONFIG_VIDEOBUF2_DMA_CONTIG=m
+CONFIG_VIDEOBUF2_VMALLOC=m
+CONFIG_VIDEO_CAPTURE_DRIVERS=y
+# CONFIG_VIDEO_ADV_DEBUG is not set
+# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
+CONFIG_VIDEO_HELPER_CHIPS_AUTO=y
+CONFIG_VIDEO_IR_I2C=y
+
+#
+# Audio decoders, processors and mixers
+#
+CONFIG_VIDEO_TVAUDIO=m
+CONFIG_VIDEO_TDA7432=m
+CONFIG_VIDEO_TDA9840=m
+CONFIG_VIDEO_TEA6415C=m
+CONFIG_VIDEO_TEA6420=m
+CONFIG_VIDEO_MSP3400=m
+CONFIG_VIDEO_CS5345=m
+CONFIG_VIDEO_CS53L32A=m
+CONFIG_VIDEO_WM8775=m
+CONFIG_VIDEO_WM8739=m
+CONFIG_VIDEO_VP27SMPX=m
+
+#
+# RDS decoders
+#
+CONFIG_VIDEO_SAA6588=m
+
+#
+# Video decoders
+#
+CONFIG_VIDEO_ADV7180=m
+CONFIG_VIDEO_BT819=m
+CONFIG_VIDEO_BT856=m
+CONFIG_VIDEO_BT866=m
+CONFIG_VIDEO_KS0127=m
+CONFIG_VIDEO_SAA7110=m
+CONFIG_VIDEO_SAA711X=m
+CONFIG_VIDEO_TVP5150=m
+CONFIG_VIDEO_VPX3220=m
+
+#
+# Video and audio decoders
+#
+CONFIG_VIDEO_SAA717X=m
+CONFIG_VIDEO_CX25840=m
+
+#
+# MPEG video encoders
+#
+CONFIG_VIDEO_CX2341X=m
+
+#
+# Video encoders
+#
+CONFIG_VIDEO_SAA7127=m
+CONFIG_VIDEO_SAA7185=m
+CONFIG_VIDEO_ADV7170=m
+CONFIG_VIDEO_ADV7175=m
+
+#
+# Camera sensor devices
+#
+CONFIG_VIDEO_OV7670=m
+CONFIG_VIDEO_MT9V011=m
+
+#
+# Flash devices
+#
+
+#
+# Video improvement chips
+#
+CONFIG_VIDEO_UPD64031A=m
+CONFIG_VIDEO_UPD64083=m
+
+#
+# Miscelaneous helper chips
+#
+CONFIG_VIDEO_M52790=m
+CONFIG_VIDEO_VIVI=m
+CONFIG_V4L_USB_DRIVERS=y
+
+#
+# Webcam devices
+#
+CONFIG_USB_VIDEO_CLASS=m
+CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
+CONFIG_USB_GSPCA=m
+CONFIG_USB_M5602=m
+CONFIG_USB_STV06XX=m
+CONFIG_USB_GL860=m
+CONFIG_USB_GSPCA_BENQ=m
+CONFIG_USB_GSPCA_CONEX=m
+CONFIG_USB_GSPCA_CPIA1=m
+CONFIG_USB_GSPCA_ETOMS=m
+CONFIG_USB_GSPCA_FINEPIX=m
+CONFIG_USB_GSPCA_JEILINJ=m
+CONFIG_USB_GSPCA_JL2005BCD=m
+CONFIG_USB_GSPCA_KINECT=m
+CONFIG_USB_GSPCA_KONICA=m
+CONFIG_USB_GSPCA_MARS=m
+CONFIG_USB_GSPCA_MR97310A=m
+CONFIG_USB_GSPCA_NW80X=m
+CONFIG_USB_GSPCA_OV519=m
+CONFIG_USB_GSPCA_OV534=m
+CONFIG_USB_GSPCA_OV534_9=m
+CONFIG_USB_GSPCA_PAC207=m
+CONFIG_USB_GSPCA_PAC7302=m
+CONFIG_USB_GSPCA_PAC7311=m
+CONFIG_USB_GSPCA_SE401=m
+CONFIG_USB_GSPCA_SN9C2028=m
+CONFIG_USB_GSPCA_SN9C20X=m
+CONFIG_USB_GSPCA_SONIXB=m
+CONFIG_USB_GSPCA_SONIXJ=m
+CONFIG_USB_GSPCA_SPCA500=m
+CONFIG_USB_GSPCA_SPCA501=m
+CONFIG_USB_GSPCA_SPCA505=m
+CONFIG_USB_GSPCA_SPCA506=m
+CONFIG_USB_GSPCA_SPCA508=m
+CONFIG_USB_GSPCA_SPCA561=m
+CONFIG_USB_GSPCA_SPCA1528=m
+CONFIG_USB_GSPCA_SQ905=m
+CONFIG_USB_GSPCA_SQ905C=m
+CONFIG_USB_GSPCA_SQ930X=m
+CONFIG_USB_GSPCA_STK014=m
+CONFIG_USB_GSPCA_STV0680=m
+CONFIG_USB_GSPCA_SUNPLUS=m
+CONFIG_USB_GSPCA_T613=m
+CONFIG_USB_GSPCA_TOPRO=m
+CONFIG_USB_GSPCA_TV8532=m
+CONFIG_USB_GSPCA_VC032X=m
+CONFIG_USB_GSPCA_VICAM=m
+CONFIG_USB_GSPCA_XIRLINK_CIT=m
+CONFIG_USB_GSPCA_ZC3XX=m
+CONFIG_USB_PWC=m
+# CONFIG_USB_PWC_DEBUG is not set
+CONFIG_USB_PWC_INPUT_EVDEV=y
+CONFIG_VIDEO_CPIA2=m
+CONFIG_USB_ZR364XX=m
+CONFIG_USB_STKWEBCAM=m
+CONFIG_USB_S2255=m
+CONFIG_USB_SN9C102=m
+
+#
+# Webcam and/or TV USB devices
+#
+CONFIG_VIDEO_EM28XX=m
+CONFIG_VIDEO_EM28XX_ALSA=m
+CONFIG_VIDEO_EM28XX_DVB=m
+CONFIG_VIDEO_EM28XX_RC=m
+
+#
+# TV USB devices
+#
+CONFIG_VIDEO_AU0828=m
+CONFIG_VIDEO_PVRUSB2=m
+CONFIG_VIDEO_PVRUSB2_SYSFS=y
+CONFIG_VIDEO_PVRUSB2_DVB=y
+# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
+CONFIG_VIDEO_HDPVR=m
+CONFIG_VIDEO_TLG2300=m
+CONFIG_VIDEO_CX231XX=m
+CONFIG_VIDEO_CX231XX_RC=y
+CONFIG_VIDEO_CX231XX_ALSA=m
+CONFIG_VIDEO_CX231XX_DVB=m
+CONFIG_VIDEO_TM6000=m
+CONFIG_VIDEO_TM6000_ALSA=m
+CONFIG_VIDEO_TM6000_DVB=m
+CONFIG_VIDEO_USBVISION=m
+CONFIG_V4L_PCI_DRIVERS=y
+CONFIG_VIDEO_BT848=m
+# CONFIG_VIDEO_BT848_DVB is not set
+CONFIG_VIDEO_CX18=m
+CONFIG_VIDEO_CX18_ALSA=m
+CONFIG_VIDEO_CX23885=m
+CONFIG_MEDIA_ALTERA_CI=m
+CONFIG_VIDEO_CX25821=m
+CONFIG_VIDEO_CX25821_ALSA=m
+CONFIG_VIDEO_CX88=m
+CONFIG_VIDEO_CX88_ALSA=m
+CONFIG_VIDEO_CX88_BLACKBIRD=m
+CONFIG_VIDEO_CX88_DVB=m
+CONFIG_VIDEO_CX88_VP3054=m
+CONFIG_VIDEO_CX88_MPEG=m
+CONFIG_VIDEO_HEXIUM_GEMINI=m
+CONFIG_VIDEO_HEXIUM_ORION=m
+CONFIG_VIDEO_IVTV=m
+CONFIG_VIDEO_FB_IVTV=m
+CONFIG_VIDEO_MXB=m
+CONFIG_VIDEO_SAA7134=m
+CONFIG_VIDEO_SAA7134_ALSA=m
+CONFIG_VIDEO_SAA7134_RC=y
+CONFIG_VIDEO_SAA7134_DVB=m
+CONFIG_VIDEO_SAA7164=m
+CONFIG_VIDEO_ZORAN=m
+CONFIG_VIDEO_ZORAN_DC30=m
+CONFIG_VIDEO_ZORAN_ZR36060=m
+CONFIG_VIDEO_ZORAN_BUZ=m
+CONFIG_VIDEO_ZORAN_DC10=m
+CONFIG_VIDEO_ZORAN_LML33=m
+CONFIG_VIDEO_ZORAN_LML33R10=m
+CONFIG_VIDEO_ZORAN_AVS6EYES=m
+# CONFIG_V4L_ISA_PARPORT_DRIVERS is not set
+CONFIG_V4L_PLATFORM_DRIVERS=y
+CONFIG_VIDEO_CAFE_CCIC=m
+CONFIG_VIDEO_TIMBERDALE=m
+CONFIG_SOC_CAMERA=m
+CONFIG_SOC_CAMERA_IMX074=m
+CONFIG_SOC_CAMERA_MT9M001=m
+CONFIG_SOC_CAMERA_MT9M111=m
+CONFIG_SOC_CAMERA_MT9T031=m
+CONFIG_SOC_CAMERA_MT9T112=m
+CONFIG_SOC_CAMERA_MT9V022=m
+CONFIG_SOC_CAMERA_RJ54N1=m
+CONFIG_SOC_CAMERA_TW9910=m
+CONFIG_SOC_CAMERA_PLATFORM=m
+CONFIG_SOC_CAMERA_OV2640=m
+CONFIG_SOC_CAMERA_OV5642=m
+CONFIG_SOC_CAMERA_OV6650=m
+CONFIG_SOC_CAMERA_OV772X=m
+CONFIG_SOC_CAMERA_OV9640=m
+CONFIG_SOC_CAMERA_OV9740=m
+# CONFIG_V4L_MEM2MEM_DRIVERS is not set
+CONFIG_RADIO_ADAPTERS=y
+CONFIG_RADIO_SI470X=y
+CONFIG_USB_SI470X=m
+CONFIG_I2C_SI470X=m
+CONFIG_USB_MR800=m
+CONFIG_USB_DSBR=m
+CONFIG_RADIO_MAXIRADIO=m
+CONFIG_RADIO_SHARK=m
+CONFIG_RADIO_SHARK2=m
+CONFIG_I2C_SI4713=m
+CONFIG_RADIO_SI4713=m
+CONFIG_USB_KEENE=m
+CONFIG_RADIO_TEA5764=m
+CONFIG_RADIO_SAA7706H=m
+CONFIG_RADIO_TEF6862=m
+CONFIG_RADIO_WL1273=m
+
+#
+# Texas Instruments WL128x FM driver (ST based)
+#
+CONFIG_DVB_MAX_ADAPTERS=8
+# CONFIG_DVB_DYNAMIC_MINORS is not set
+CONFIG_DVB_CAPTURE_DRIVERS=y
+
+#
+# Supported SAA7146 based PCI Adapters
+#
+CONFIG_TTPCI_EEPROM=m
+CONFIG_DVB_AV7110=m
+CONFIG_DVB_AV7110_OSD=y
+CONFIG_DVB_BUDGET_CORE=m
+CONFIG_DVB_BUDGET=m
+CONFIG_DVB_BUDGET_CI=m
+CONFIG_DVB_BUDGET_AV=m
+CONFIG_DVB_BUDGET_PATCH=m
+
+#
+# Supported USB Adapters
+#
+CONFIG_DVB_USB=m
+# CONFIG_DVB_USB_DEBUG is not set
+# CONFIG_DVB_USB_A800 is not set
+CONFIG_DVB_USB_DIBUSB_MB=m
+CONFIG_DVB_USB_DIBUSB_MB_FAULTY=y
+CONFIG_DVB_USB_DIBUSB_MC=m
+CONFIG_DVB_USB_DIB0700=m
+CONFIG_DVB_USB_UMT_010=m
+CONFIG_DVB_USB_CXUSB=m
+CONFIG_DVB_USB_M920X=m
+CONFIG_DVB_USB_GL861=m
+CONFIG_DVB_USB_AU6610=m
+CONFIG_DVB_USB_DIGITV=m
+CONFIG_DVB_USB_VP7045=m
+CONFIG_DVB_USB_VP702X=m
+CONFIG_DVB_USB_GP8PSK=m
+CONFIG_DVB_USB_NOVA_T_USB2=m
+CONFIG_DVB_USB_TTUSB2=m
+CONFIG_DVB_USB_DTT200U=m
+CONFIG_DVB_USB_OPERA1=m
+CONFIG_DVB_USB_AF9005=m
+CONFIG_DVB_USB_AF9005_REMOTE=m
+CONFIG_DVB_USB_PCTV452E=m
+CONFIG_DVB_USB_DW2102=m
+CONFIG_DVB_USB_CINERGY_T2=m
+CONFIG_DVB_USB_ANYSEE=m
+CONFIG_DVB_USB_DTV5100=m
+CONFIG_DVB_USB_AF9015=m
+CONFIG_DVB_USB_CE6230=m
+CONFIG_DVB_USB_FRIIO=m
+CONFIG_DVB_USB_EC168=m
+CONFIG_DVB_USB_AZ6007=m
+CONFIG_DVB_USB_AZ6027=m
+CONFIG_DVB_USB_LME2510=m
+CONFIG_DVB_USB_TECHNISAT_USB2=m
+CONFIG_DVB_USB_IT913X=m
+CONFIG_DVB_USB_MXL111SF=m
+CONFIG_DVB_USB_RTL28XXU=m
+CONFIG_DVB_USB_AF9035=m
+CONFIG_DVB_TTUSB_BUDGET=m
+CONFIG_DVB_TTUSB_DEC=m
+CONFIG_SMS_SIANO_MDTV=m
+
+#
+# Siano module components
+#
+CONFIG_SMS_USB_DRV=m
+CONFIG_SMS_SDIO_DRV=m
+
+#
+# Supported FlexCopII (B2C2) Adapters
+#
+CONFIG_DVB_B2C2_FLEXCOP=m
+CONFIG_DVB_B2C2_FLEXCOP_PCI=m
+CONFIG_DVB_B2C2_FLEXCOP_USB=m
+# CONFIG_DVB_B2C2_FLEXCOP_DEBUG is not set
+
+#
+# Supported BT878 Adapters
+#
+CONFIG_DVB_BT8XX=m
+
+#
+# Supported Pluto2 Adapters
+#
+CONFIG_DVB_PLUTO2=m
+
+#
+# Supported SDMC DM1105 Adapters
+#
+CONFIG_DVB_DM1105=m
+
+#
+# Supported Earthsoft PT1 Adapters
+#
+CONFIG_DVB_PT1=m
+
+#
+# Supported Mantis Adapters
+#
+CONFIG_MANTIS_CORE=m
+CONFIG_DVB_MANTIS=m
+CONFIG_DVB_HOPPER=m
+
+#
+# Supported nGene Adapters
+#
+CONFIG_DVB_NGENE=m
+
+#
+# Supported ddbridge ('Octopus') Adapters
+#
+CONFIG_DVB_DDBRIDGE=m
+
+#
+# Supported DVB Frontends
+#
+
+#
+# Multistandard (satellite) frontends
+#
+CONFIG_DVB_STB0899=m
+CONFIG_DVB_STB6100=m
+CONFIG_DVB_STV090x=m
+CONFIG_DVB_STV6110x=m
+
+#
+# Multistandard (cable + terrestrial) frontends
+#
+CONFIG_DVB_DRXK=m
+CONFIG_DVB_TDA18271C2DD=m
+
+#
+# DVB-S (satellite) frontends
+#
+CONFIG_DVB_CX24110=m
+CONFIG_DVB_CX24123=m
+CONFIG_DVB_MT312=m
+CONFIG_DVB_ZL10036=m
+CONFIG_DVB_ZL10039=m
+CONFIG_DVB_S5H1420=m
+CONFIG_DVB_STV0288=m
+CONFIG_DVB_STB6000=m
+CONFIG_DVB_STV0299=m
+CONFIG_DVB_STV6110=m
+CONFIG_DVB_STV0900=m
+CONFIG_DVB_TDA8083=m
+CONFIG_DVB_TDA10086=m
+CONFIG_DVB_TDA8261=m
+CONFIG_DVB_VES1X93=m
+CONFIG_DVB_TUNER_ITD1000=m
+CONFIG_DVB_TUNER_CX24113=m
+CONFIG_DVB_TDA826X=m
+CONFIG_DVB_TUA6100=m
+CONFIG_DVB_CX24116=m
+CONFIG_DVB_SI21XX=m
+CONFIG_DVB_DS3000=m
+CONFIG_DVB_MB86A16=m
+CONFIG_DVB_TDA10071=m
+
+#
+# DVB-T (terrestrial) frontends
+#
+CONFIG_DVB_SP8870=m
+CONFIG_DVB_SP887X=m
+CONFIG_DVB_CX22700=m
+CONFIG_DVB_CX22702=m
+CONFIG_DVB_DRXD=m
+CONFIG_DVB_L64781=m
+CONFIG_DVB_TDA1004X=m
+CONFIG_DVB_NXT6000=m
+CONFIG_DVB_MT352=m
+CONFIG_DVB_ZL10353=m
+CONFIG_DVB_DIB3000MB=m
+CONFIG_DVB_DIB3000MC=m
+CONFIG_DVB_DIB7000M=m
+CONFIG_DVB_DIB7000P=m
+CONFIG_DVB_TDA10048=m
+CONFIG_DVB_AF9013=m
+CONFIG_DVB_EC100=m
+CONFIG_DVB_STV0367=m
+CONFIG_DVB_CXD2820R=m
+CONFIG_DVB_RTL2830=m
+CONFIG_DVB_RTL2832=m
+
+#
+# DVB-C (cable) frontends
+#
+CONFIG_DVB_VES1820=m
+CONFIG_DVB_TDA10021=m
+CONFIG_DVB_TDA10023=m
+CONFIG_DVB_STV0297=m
+
+#
+# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
+#
+CONFIG_DVB_NXT200X=m
+CONFIG_DVB_OR51211=m
+CONFIG_DVB_OR51132=m
+CONFIG_DVB_BCM3510=m
+CONFIG_DVB_LGDT330X=m
+CONFIG_DVB_LGDT3305=m
+CONFIG_DVB_LG2160=m
+CONFIG_DVB_S5H1409=m
+CONFIG_DVB_AU8522=m
+CONFIG_DVB_AU8522_DTV=m
+CONFIG_DVB_AU8522_V4L=m
+CONFIG_DVB_S5H1411=m
+
+#
+# ISDB-T (terrestrial) frontends
+#
+CONFIG_DVB_S921=m
+CONFIG_DVB_DIB8000=m
+CONFIG_DVB_MB86A20S=m
+
+#
+# Digital terrestrial only tuners/PLL
+#
+CONFIG_DVB_PLL=m
+CONFIG_DVB_TUNER_DIB0070=m
+CONFIG_DVB_TUNER_DIB0090=m
+
+#
+# SEC control devices for DVB-S
+#
+CONFIG_DVB_LNBP21=m
+CONFIG_DVB_LNBP22=m
+CONFIG_DVB_ISL6405=m
+CONFIG_DVB_ISL6421=m
+CONFIG_DVB_ISL6423=m
+CONFIG_DVB_A8293=m
+CONFIG_DVB_LGS8GXX=m
+CONFIG_DVB_ATBM8830=m
+CONFIG_DVB_TDA665x=m
+CONFIG_DVB_IX2505V=m
+CONFIG_DVB_IT913X_FE=m
+CONFIG_DVB_M88RS2000=m
+CONFIG_DVB_AF9033=m
+
+#
+# Tools to develop new frontends
+#
+# CONFIG_DVB_DUMMY_FE is not set
+
+#
+# Graphics support
+#
+CONFIG_AGP=y
+CONFIG_AGP_AMD64=y
+CONFIG_AGP_INTEL=m
+# CONFIG_AGP_SIS is not set
+# CONFIG_AGP_VIA is not set
+CONFIG_VGA_ARB=y
+CONFIG_VGA_ARB_MAX_GPUS=16
+# CONFIG_VGA_SWITCHEROO is not set
+CONFIG_DRM=y
+CONFIG_DRM_USB=m
+CONFIG_DRM_KMS_HELPER=y
+# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
+CONFIG_DRM_TTM=y
+# CONFIG_DRM_TDFX is not set
+# CONFIG_DRM_R128 is not set
+CONFIG_DRM_RADEON=y
+CONFIG_DRM_RADEON_KMS=y
+# CONFIG_DRM_NOUVEAU is not set
+
+#
+# I2C encoder or helper chips
+#
+# CONFIG_DRM_I2C_CH7006 is not set
+# CONFIG_DRM_I2C_SIL164 is not set
+# CONFIG_DRM_I810 is not set
+CONFIG_DRM_I915=m
+CONFIG_DRM_I915_KMS=y
+# CONFIG_DRM_MGA is not set
+# CONFIG_DRM_SIS is not set
+# CONFIG_DRM_VIA is not set
+# CONFIG_DRM_SAVAGE is not set
+# CONFIG_DRM_VMWGFX is not set
+# CONFIG_DRM_GMA500 is not set
+CONFIG_DRM_UDL=m
+CONFIG_DRM_AST=m
+CONFIG_DRM_MGAG200=m
+CONFIG_DRM_CIRRUS_QEMU=m
+# CONFIG_STUB_POULSBO is not set
+# CONFIG_VGASTATE is not set
+CONFIG_VIDEO_OUTPUT_CONTROL=m
+CONFIG_FB=y
+# CONFIG_FIRMWARE_EDID is not set
+# CONFIG_FB_DDC is not set
+# CONFIG_FB_BOOT_VESA_SUPPORT is not set
+CONFIG_FB_CFB_FILLRECT=y
+CONFIG_FB_CFB_COPYAREA=y
+CONFIG_FB_CFB_IMAGEBLIT=y
+# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
+CONFIG_FB_SYS_FILLRECT=y
+CONFIG_FB_SYS_COPYAREA=y
+CONFIG_FB_SYS_IMAGEBLIT=y
+# CONFIG_FB_FOREIGN_ENDIAN is not set
+CONFIG_FB_SYS_FOPS=y
+# CONFIG_FB_WMT_GE_ROPS is not set
+CONFIG_FB_DEFERRED_IO=y
+# CONFIG_FB_SVGALIB is not set
+# CONFIG_FB_MACMODES is not set
+# CONFIG_FB_BACKLIGHT is not set
+CONFIG_FB_MODE_HELPERS=y
+CONFIG_FB_TILEBLITTING=y
+
+#
+# Frame buffer hardware drivers
+#
+# CONFIG_FB_CIRRUS is not set
+# CONFIG_FB_PM2 is not set
+# CONFIG_FB_CYBER2000 is not set
+# CONFIG_FB_ARC is not set
+# CONFIG_FB_ASILIANT is not set
+# CONFIG_FB_IMSTT is not set
+# CONFIG_FB_VGA16 is not set
+# CONFIG_FB_UVESA is not set
+# CONFIG_FB_VESA is not set
+# CONFIG_FB_EFI is not set
+# CONFIG_FB_N411 is not set
+# CONFIG_FB_HGA is not set
+# CONFIG_FB_S1D13XXX is not set
+# CONFIG_FB_NVIDIA is not set
+# CONFIG_FB_RIVA is not set
+# CONFIG_FB_I740 is not set
+# CONFIG_FB_LE80578 is not set
+# CONFIG_FB_MATROX is not set
+# CONFIG_FB_RADEON is not set
+# CONFIG_FB_ATY128 is not set
+# CONFIG_FB_ATY is not set
+# CONFIG_FB_S3 is not set
+# CONFIG_FB_SAVAGE is not set
+# CONFIG_FB_SIS is not set
+# CONFIG_FB_VIA is not set
+# CONFIG_FB_NEOMAGIC is not set
+# CONFIG_FB_KYRO is not set
+# CONFIG_FB_3DFX is not set
+# CONFIG_FB_VOODOO1 is not set
+# CONFIG_FB_VT8623 is not set
+# CONFIG_FB_TRIDENT is not set
+# CONFIG_FB_ARK is not set
+# CONFIG_FB_PM3 is not set
+# CONFIG_FB_CARMINE is not set
+# CONFIG_FB_GEODE is not set
+# CONFIG_FB_TMIO is not set
+# CONFIG_FB_SM501 is not set
+# CONFIG_FB_SMSCUFX is not set
+# CONFIG_FB_UDL is not set
+# CONFIG_FB_VIRTUAL is not set
+CONFIG_XEN_FBDEV_FRONTEND=y
+# CONFIG_FB_METRONOME is not set
+# CONFIG_FB_MB862XX is not set
+# CONFIG_FB_BROADSHEET is not set
+CONFIG_FB_AUO_K190X=m
+CONFIG_FB_AUO_K1900=m
+CONFIG_FB_AUO_K1901=m
+# CONFIG_EXYNOS_VIDEO is not set
+CONFIG_BACKLIGHT_LCD_SUPPORT=y
+# CONFIG_LCD_CLASS_DEVICE is not set
+CONFIG_BACKLIGHT_CLASS_DEVICE=y
+CONFIG_BACKLIGHT_GENERIC=y
+CONFIG_BACKLIGHT_LM3533=m
+# CONFIG_BACKLIGHT_PROGEAR is not set
+CONFIG_BACKLIGHT_PWM=m
+# CONFIG_BACKLIGHT_DA903X is not set
+CONFIG_BACKLIGHT_DA9052=m
+# CONFIG_BACKLIGHT_MAX8925 is not set
+# CONFIG_BACKLIGHT_APPLE is not set
+# CONFIG_BACKLIGHT_SAHARA is not set
+# CONFIG_BACKLIGHT_WM831X is not set
+# CONFIG_BACKLIGHT_ADP5520 is not set
+# CONFIG_BACKLIGHT_ADP8860 is not set
+# CONFIG_BACKLIGHT_ADP8870 is not set
+# CONFIG_BACKLIGHT_88PM860X is not set
+# CONFIG_BACKLIGHT_PCF50633 is not set
+CONFIG_BACKLIGHT_LP855X=m
+CONFIG_BACKLIGHT_PANDORA=m
+
+#
+# Console display driver support
+#
+CONFIG_VGA_CONSOLE=y
+CONFIG_VGACON_SOFT_SCROLLBACK=y
+CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
+CONFIG_DUMMY_CONSOLE=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
+# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
+# CONFIG_FONTS is not set
+CONFIG_FONT_8x8=y
+CONFIG_FONT_8x16=y
+CONFIG_LOGO=y
+# CONFIG_LOGO_LINUX_MONO is not set
+# CONFIG_LOGO_LINUX_VGA16 is not set
+CONFIG_LOGO_LINUX_CLUT224=y
+CONFIG_SOUND=y
+CONFIG_SOUND_OSS_CORE=y
+CONFIG_SOUND_OSS_CORE_PRECLAIM=y
+CONFIG_SND=y
+CONFIG_SND_TIMER=y
+CONFIG_SND_PCM=y
+CONFIG_SND_HWDEP=y
+CONFIG_SND_RAWMIDI=m
+CONFIG_SND_JACK=y
+CONFIG_SND_SEQUENCER=y
+CONFIG_SND_SEQ_DUMMY=y
+CONFIG_SND_OSSEMUL=y
+CONFIG_SND_MIXER_OSS=y
+CONFIG_SND_PCM_OSS=y
+CONFIG_SND_PCM_OSS_PLUGINS=y
+CONFIG_SND_SEQUENCER_OSS=y
+CONFIG_SND_HRTIMER=y
+CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
+CONFIG_SND_DYNAMIC_MINORS=y
+CONFIG_SND_SUPPORT_OLD_API=y
+CONFIG_SND_VERBOSE_PROCFS=y
+# CONFIG_SND_VERBOSE_PRINTK is not set
+# CONFIG_SND_DEBUG is not set
+CONFIG_SND_VMASTER=y
+CONFIG_SND_KCTL_JACK=y
+CONFIG_SND_DMA_SGBUF=y
+CONFIG_SND_RAWMIDI_SEQ=m
+CONFIG_SND_OPL3_LIB_SEQ=m
+# CONFIG_SND_OPL4_LIB_SEQ is not set
+# CONFIG_SND_SBAWE_SEQ is not set
+CONFIG_SND_EMU10K1_SEQ=m
+CONFIG_SND_MPU401_UART=m
+CONFIG_SND_OPL3_LIB=m
+CONFIG_SND_VX_LIB=m
+CONFIG_SND_AC97_CODEC=y
+CONFIG_SND_DRIVERS=y
+CONFIG_SND_PCSP=m
+CONFIG_SND_DUMMY=m
+CONFIG_SND_ALOOP=m
+CONFIG_SND_VIRMIDI=m
+CONFIG_SND_MTPAV=m
+CONFIG_SND_MTS64=m
+CONFIG_SND_SERIAL_U16550=m
+CONFIG_SND_MPU401=m
+CONFIG_SND_PORTMAN2X4=m
+# CONFIG_SND_AC97_POWER_SAVE is not set
+CONFIG_SND_SB_COMMON=m
+CONFIG_SND_SB16_DSP=m
+CONFIG_SND_TEA575X=m
+CONFIG_SND_PCI=y
+CONFIG_SND_AD1889=m
+CONFIG_SND_ALS300=m
+CONFIG_SND_ALS4000=m
+CONFIG_SND_ALI5451=m
+CONFIG_SND_ASIHPI=m
+CONFIG_SND_ATIIXP=y
+CONFIG_SND_ATIIXP_MODEM=y
+CONFIG_SND_AU8810=m
+CONFIG_SND_AU8820=m
+CONFIG_SND_AU8830=m
+CONFIG_SND_AW2=m
+CONFIG_SND_AZT3328=m
+CONFIG_SND_BT87X=m
+# CONFIG_SND_BT87X_OVERCLOCK is not set
+CONFIG_SND_CA0106=m
+CONFIG_SND_CMIPCI=m
+CONFIG_SND_OXYGEN_LIB=m
+CONFIG_SND_OXYGEN=m
+CONFIG_SND_CS4281=m
+CONFIG_SND_CS46XX=m
+CONFIG_SND_CS46XX_NEW_DSP=y
+CONFIG_SND_CS5530=m
+CONFIG_SND_CS5535AUDIO=m
+CONFIG_SND_CTXFI=m
+CONFIG_SND_DARLA20=m
+CONFIG_SND_GINA20=m
+CONFIG_SND_LAYLA20=m
+CONFIG_SND_DARLA24=m
+CONFIG_SND_GINA24=m
+CONFIG_SND_LAYLA24=m
+CONFIG_SND_MONA=m
+CONFIG_SND_MIA=m
+CONFIG_SND_ECHO3G=m
+CONFIG_SND_INDIGO=m
+CONFIG_SND_INDIGOIO=m
+CONFIG_SND_INDIGODJ=m
+CONFIG_SND_INDIGOIOX=m
+CONFIG_SND_INDIGODJX=m
+CONFIG_SND_EMU10K1=m
+CONFIG_SND_EMU10K1X=m
+CONFIG_SND_ENS1370=m
+CONFIG_SND_ENS1371=m
+CONFIG_SND_ES1938=m
+CONFIG_SND_ES1968=m
+# CONFIG_SND_ES1968_INPUT is not set
+# CONFIG_SND_ES1968_RADIO is not set
+CONFIG_SND_FM801=m
+CONFIG_SND_FM801_TEA575X_BOOL=y
+CONFIG_SND_HDA_INTEL=y
+CONFIG_SND_HDA_PREALLOC_SIZE=64
+CONFIG_SND_HDA_HWDEP=y
+# CONFIG_SND_HDA_RECONFIG is not set
+# CONFIG_SND_HDA_INPUT_BEEP is not set
+# CONFIG_SND_HDA_INPUT_JACK is not set
+# CONFIG_SND_HDA_PATCH_LOADER is not set
+CONFIG_SND_HDA_CODEC_REALTEK=y
+CONFIG_SND_HDA_CODEC_ANALOG=y
+CONFIG_SND_HDA_CODEC_SIGMATEL=y
+CONFIG_SND_HDA_CODEC_VIA=y
+CONFIG_SND_HDA_CODEC_HDMI=y
+CONFIG_SND_HDA_CODEC_CIRRUS=y
+CONFIG_SND_HDA_CODEC_CONEXANT=y
+CONFIG_SND_HDA_CODEC_CA0110=y
+CONFIG_SND_HDA_CODEC_CA0132=y
+CONFIG_SND_HDA_CODEC_CMEDIA=y
+CONFIG_SND_HDA_CODEC_SI3054=y
+CONFIG_SND_HDA_GENERIC=y
+# CONFIG_SND_HDA_POWER_SAVE is not set
+CONFIG_SND_HDSP=m
+CONFIG_SND_HDSPM=m
+CONFIG_SND_ICE1712=m
+CONFIG_SND_ICE1724=m
+CONFIG_SND_INTEL8X0=m
+CONFIG_SND_INTEL8X0M=m
+CONFIG_SND_KORG1212=m
+CONFIG_SND_LOLA=m
+CONFIG_SND_LX6464ES=m
+CONFIG_SND_MAESTRO3=m
+# CONFIG_SND_MAESTRO3_INPUT is not set
+CONFIG_SND_MIXART=m
+CONFIG_SND_NM256=m
+CONFIG_SND_PCXHR=m
+CONFIG_SND_RIPTIDE=m
+CONFIG_SND_RME32=m
+CONFIG_SND_RME96=m
+CONFIG_SND_RME9652=m
+CONFIG_SND_SONICVIBES=m
+CONFIG_SND_TRIDENT=m
+CONFIG_SND_VIA82XX=m
+CONFIG_SND_VIA82XX_MODEM=m
+CONFIG_SND_VIRTUOSO=m
+CONFIG_SND_VX222=m
+CONFIG_SND_YMFPCI=m
+CONFIG_SND_USB=y
+CONFIG_SND_USB_AUDIO=m
+CONFIG_SND_USB_UA101=m
+CONFIG_SND_USB_USX2Y=m
+CONFIG_SND_USB_CAIAQ=m
+# CONFIG_SND_USB_CAIAQ_INPUT is not set
+CONFIG_SND_USB_US122L=m
+CONFIG_SND_USB_6FIRE=m
+# CONFIG_SND_PCMCIA is not set
+# CONFIG_SND_SOC is not set
+# CONFIG_SOUND_PRIME is not set
+CONFIG_AC97_BUS=y
+
+#
+# HID support
+#
+CONFIG_HID=y
+CONFIG_HID_BATTERY_STRENGTH=y
+CONFIG_HIDRAW=y
+CONFIG_UHID=m
+CONFIG_HID_GENERIC=y
+
+#
+# Special HID drivers
+#
+CONFIG_HID_A4TECH=y
+CONFIG_HID_ACRUX=m
+CONFIG_HID_ACRUX_FF=y
+CONFIG_HID_APPLE=y
+CONFIG_HID_AUREAL=m
+CONFIG_HID_BELKIN=y
+CONFIG_HID_CHERRY=y
+CONFIG_HID_CHICONY=y
+CONFIG_HID_PRODIKEYS=m
+CONFIG_HID_CYPRESS=y
+CONFIG_HID_DRAGONRISE=m
+CONFIG_DRAGONRISE_FF=y
+CONFIG_HID_EMS_FF=m
+CONFIG_HID_EZKEY=y
+CONFIG_HID_HOLTEK=m
+CONFIG_HOLTEK_FF=y
+CONFIG_HID_KEYTOUCH=m
+CONFIG_HID_KYE=y
+CONFIG_HID_UCLOGIC=m
+CONFIG_HID_WALTOP=m
+CONFIG_HID_GYRATION=y
+CONFIG_HID_TWINHAN=m
+CONFIG_HID_KENSINGTON=y
+CONFIG_HID_LCPOWER=m
+CONFIG_HID_LENOVO_TPKBD=m
+CONFIG_HID_LOGITECH=y
+CONFIG_HID_LOGITECH_DJ=m
+CONFIG_LOGITECH_FF=y
+CONFIG_LOGIRUMBLEPAD2_FF=y
+CONFIG_LOGIG940_FF=y
+CONFIG_LOGIWHEELS_FF=y
+CONFIG_HID_MICROSOFT=y
+CONFIG_HID_MONTEREY=y
+CONFIG_HID_MULTITOUCH=m
+CONFIG_HID_NTRIG=y
+CONFIG_HID_ORTEK=m
+CONFIG_HID_PANTHERLORD=y
+CONFIG_PANTHERLORD_FF=y
+CONFIG_HID_PETALYNX=y
+CONFIG_HID_PICOLCD=m
+CONFIG_HID_PICOLCD_FB=y
+CONFIG_HID_PICOLCD_BACKLIGHT=y
+CONFIG_HID_PICOLCD_LEDS=y
+CONFIG_HID_PRIMAX=m
+CONFIG_HID_ROCCAT=m
+CONFIG_HID_SAITEK=m
+CONFIG_HID_SAMSUNG=y
+CONFIG_HID_SONY=y
+CONFIG_HID_SPEEDLINK=m
+CONFIG_HID_SUNPLUS=y
+CONFIG_HID_GREENASIA=m
+CONFIG_GREENASIA_FF=y
+# CONFIG_HID_HYPERV_MOUSE is not set
+CONFIG_HID_SMARTJOYPLUS=m
+# CONFIG_SMARTJOYPLUS_FF is not set
+CONFIG_HID_TIVO=m
+CONFIG_HID_TOPSEED=y
+CONFIG_HID_THRUSTMASTER=m
+CONFIG_THRUSTMASTER_FF=y
+CONFIG_HID_ZEROPLUS=m
+CONFIG_ZEROPLUS_FF=y
+CONFIG_HID_ZYDACRON=m
+
+#
+# USB HID support
+#
+CONFIG_USB_HID=y
+CONFIG_HID_PID=y
+CONFIG_USB_HIDDEV=y
+CONFIG_USB_ARCH_HAS_OHCI=y
+CONFIG_USB_ARCH_HAS_EHCI=y
+CONFIG_USB_ARCH_HAS_XHCI=y
+CONFIG_USB_SUPPORT=y
+CONFIG_USB_COMMON=y
+CONFIG_USB_ARCH_HAS_HCD=y
+CONFIG_USB=y
+CONFIG_USB_DEBUG=y
+CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
+
+#
+# Miscellaneous USB options
+#
+# CONFIG_USB_DYNAMIC_MINORS is not set
+CONFIG_USB_DWC3=m
+# CONFIG_USB_DWC3_DEBUG is not set
+CONFIG_USB_MON=y
+CONFIG_USB_WUSB=m
+CONFIG_USB_WUSB_CBAF=m
+# CONFIG_USB_WUSB_CBAF_DEBUG is not set
+
+#
+# USB Host Controller Drivers
+#
+CONFIG_USB_C67X00_HCD=m
+CONFIG_USB_XHCI_HCD=y
+CONFIG_USB_XHCI_PLATFORM=m
+# CONFIG_USB_XHCI_HCD_DEBUGGING is not set
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_ROOT_HUB_TT=y
+CONFIG_USB_EHCI_TT_NEWSCHED=y
+CONFIG_USB_OXU210HP_HCD=m
+CONFIG_USB_ISP116X_HCD=m
+CONFIG_USB_ISP1760_HCD=m
+CONFIG_USB_ISP1362_HCD=m
+CONFIG_USB_OHCI_HCD=y
+CONFIG_USB_OHCI_HCD_PLATFORM=y
+CONFIG_USB_EHCI_HCD_PLATFORM=y
+# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set
+# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set
+CONFIG_USB_OHCI_LITTLE_ENDIAN=y
+CONFIG_USB_UHCI_HCD=y
+CONFIG_USB_U132_HCD=m
+CONFIG_USB_SL811_HCD=m
+# CONFIG_USB_SL811_HCD_ISO is not set
+CONFIG_USB_SL811_CS=m
+CONFIG_USB_R8A66597_HCD=m
+CONFIG_USB_RENESAS_USBHS_HCD=m
+CONFIG_USB_WHCI_HCD=m
+CONFIG_USB_HWA_HCD=m
+CONFIG_USB_HCD_SSB=m
+CONFIG_USB_MUSB_HDRC=m
+CONFIG_USB_MUSB_TUSB6010=m
+CONFIG_MUSB_PIO_ONLY=y
+CONFIG_USB_CHIPIDEA=m
+CONFIG_USB_CHIPIDEA_UDC=y
+CONFIG_USB_CHIPIDEA_HOST=y
+# CONFIG_USB_CHIPIDEA_DEBUG is not set
+CONFIG_USB_RENESAS_USBHS=m
+
+#
+# USB Device Class drivers
+#
+CONFIG_USB_ACM=m
+CONFIG_USB_PRINTER=y
+CONFIG_USB_WDM=m
+CONFIG_USB_TMC=m
+
+#
+# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
+#
+
+#
+# also be needed; see USB_STORAGE Help for more info
+#
+CONFIG_USB_STORAGE=y
+# CONFIG_USB_STORAGE_DEBUG is not set
+CONFIG_USB_STORAGE_REALTEK=m
+CONFIG_USB_STORAGE_DATAFAB=m
+CONFIG_USB_STORAGE_FREECOM=m
+CONFIG_USB_STORAGE_ISD200=m
+CONFIG_USB_STORAGE_USBAT=m
+CONFIG_USB_STORAGE_SDDR09=m
+CONFIG_USB_STORAGE_SDDR55=m
+CONFIG_USB_STORAGE_JUMPSHOT=m
+CONFIG_USB_STORAGE_ALAUDA=m
+CONFIG_USB_STORAGE_ONETOUCH=m
+CONFIG_USB_STORAGE_KARMA=m
+CONFIG_USB_STORAGE_CYPRESS_ATACB=m
+CONFIG_USB_STORAGE_ENE_UB6250=m
+CONFIG_USB_LIBUSUAL=y
+
+#
+# USB Imaging devices
+#
+CONFIG_USB_MDC800=m
+CONFIG_USB_MICROTEK=m
+
+#
+# USB port drivers
+#
+CONFIG_USB_USS720=m
+CONFIG_USB_SERIAL=m
+CONFIG_USB_EZUSB=y
+CONFIG_USB_SERIAL_GENERIC=y
+CONFIG_USB_SERIAL_AIRCABLE=m
+CONFIG_USB_SERIAL_ARK3116=m
+CONFIG_USB_SERIAL_BELKIN=m
+CONFIG_USB_SERIAL_CH341=m
+CONFIG_USB_SERIAL_WHITEHEAT=m
+CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
+CONFIG_USB_SERIAL_CP210X=m
+CONFIG_USB_SERIAL_CYPRESS_M8=m
+CONFIG_USB_SERIAL_EMPEG=m
+CONFIG_USB_SERIAL_FTDI_SIO=m
+CONFIG_USB_SERIAL_FUNSOFT=m
+CONFIG_USB_SERIAL_VISOR=m
+CONFIG_USB_SERIAL_IPAQ=m
+CONFIG_USB_SERIAL_IR=m
+CONFIG_USB_SERIAL_EDGEPORT=m
+CONFIG_USB_SERIAL_EDGEPORT_TI=m
+CONFIG_USB_SERIAL_F81232=m
+CONFIG_USB_SERIAL_GARMIN=m
+CONFIG_USB_SERIAL_IPW=m
+CONFIG_USB_SERIAL_IUU=m
+CONFIG_USB_SERIAL_KEYSPAN_PDA=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_KOBIL_SCT=m
+CONFIG_USB_SERIAL_MCT_U232=m
+CONFIG_USB_SERIAL_METRO=m
+CONFIG_USB_SERIAL_MOS7720=m
+# CONFIG_USB_SERIAL_MOS7715_PARPORT is not set
+CONFIG_USB_SERIAL_MOS7840=m
+CONFIG_USB_SERIAL_MOTOROLA=m
+CONFIG_USB_SERIAL_NAVMAN=m
+CONFIG_USB_SERIAL_PL2303=m
+CONFIG_USB_SERIAL_OTI6858=m
+CONFIG_USB_SERIAL_QCAUX=m
+CONFIG_USB_SERIAL_QUALCOMM=m
+CONFIG_USB_SERIAL_SPCP8X5=m
+CONFIG_USB_SERIAL_HP4X=m
+CONFIG_USB_SERIAL_SAFE=m
+# CONFIG_USB_SERIAL_SAFE_PADDED is not set
+CONFIG_USB_SERIAL_SIEMENS_MPI=m
+CONFIG_USB_SERIAL_SIERRAWIRELESS=m
+CONFIG_USB_SERIAL_SYMBOL=m
+CONFIG_USB_SERIAL_TI=m
+CONFIG_USB_SERIAL_CYBERJACK=m
+CONFIG_USB_SERIAL_XIRCOM=m
+CONFIG_USB_SERIAL_WWAN=m
+CONFIG_USB_SERIAL_OPTION=m
+CONFIG_USB_SERIAL_OMNINET=m
+CONFIG_USB_SERIAL_OPTICON=m
+CONFIG_USB_SERIAL_VIVOPAY_SERIAL=m
+CONFIG_USB_SERIAL_ZIO=m
+CONFIG_USB_SERIAL_SSU100=m
+CONFIG_USB_SERIAL_QT2=m
+CONFIG_USB_SERIAL_DEBUG=m
+
+#
+# USB Miscellaneous drivers
+#
+CONFIG_USB_EMI62=m
+CONFIG_USB_EMI26=m
+CONFIG_USB_ADUTUX=m
+CONFIG_USB_SEVSEG=m
+CONFIG_USB_RIO500=m
+CONFIG_USB_LEGOTOWER=m
+CONFIG_USB_LCD=m
+CONFIG_USB_LED=m
+CONFIG_USB_CYPRESS_CY7C63=m
+CONFIG_USB_CYTHERM=m
+CONFIG_USB_IDMOUSE=m
+CONFIG_USB_FTDI_ELAN=m
+CONFIG_USB_APPLEDISPLAY=m
+CONFIG_USB_SISUSBVGA=m
+# CONFIG_USB_SISUSBVGA_CON is not set
+CONFIG_USB_LD=m
+CONFIG_USB_TRANCEVIBRATOR=m
+CONFIG_USB_IOWARRIOR=m
+CONFIG_USB_TEST=m
+CONFIG_USB_ISIGHTFW=m
+CONFIG_USB_YUREX=m
+
+#
+# USB Physical Layer drivers
+#
+CONFIG_USB_ISP1301=m
+CONFIG_USB_GADGET=m
+# CONFIG_USB_GADGET_DEBUG is not set
+# CONFIG_USB_GADGET_DEBUG_FILES is not set
+# CONFIG_USB_GADGET_DEBUG_FS is not set
+CONFIG_USB_GADGET_VBUS_DRAW=2
+CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2
+
+#
+# USB Peripheral Controller
+#
+CONFIG_USB_R8A66597=m
+CONFIG_USB_RENESAS_USBHS_UDC=m
+CONFIG_USB_MV_UDC=m
+CONFIG_USB_GADGET_MUSB_HDRC=m
+CONFIG_USB_M66592=m
+CONFIG_USB_AMD5536UDC=m
+CONFIG_USB_NET2272=m
+CONFIG_USB_NET2272_DMA=y
+CONFIG_USB_NET2280=m
+CONFIG_USB_GOKU=m
+CONFIG_USB_EG20T=m
+CONFIG_USB_DUMMY_HCD=m
+CONFIG_USB_GADGET_DUALSPEED=y
+CONFIG_USB_GADGET_SUPERSPEED=y
+CONFIG_USB_ZERO=m
+CONFIG_USB_AUDIO=m
+# CONFIG_GADGET_UAC1 is not set
+CONFIG_USB_ETH=m
+CONFIG_USB_ETH_RNDIS=y
+# CONFIG_USB_ETH_EEM is not set
+CONFIG_USB_G_NCM=m
+CONFIG_USB_GADGETFS=m
+CONFIG_USB_FUNCTIONFS=m
+# CONFIG_USB_FUNCTIONFS_ETH is not set
+# CONFIG_USB_FUNCTIONFS_RNDIS is not set
+CONFIG_USB_FUNCTIONFS_GENERIC=y
+CONFIG_USB_FILE_STORAGE=m
+# CONFIG_USB_FILE_STORAGE_TEST is not set
+CONFIG_USB_MASS_STORAGE=m
+CONFIG_USB_G_SERIAL=m
+CONFIG_USB_MIDI_GADGET=m
+CONFIG_USB_G_PRINTER=m
+CONFIG_USB_CDC_COMPOSITE=m
+CONFIG_USB_G_ACM_MS=m
+CONFIG_USB_G_MULTI=m
+CONFIG_USB_G_MULTI_RNDIS=y
+# CONFIG_USB_G_MULTI_CDC is not set
+CONFIG_USB_G_HID=m
+CONFIG_USB_G_DBGP=m
+# CONFIG_USB_G_DBGP_PRINTK is not set
+CONFIG_USB_G_DBGP_SERIAL=y
+CONFIG_USB_G_WEBCAM=m
+
+#
+# OTG and related infrastructure
+#
+CONFIG_USB_OTG_UTILS=y
+CONFIG_TWL4030_USB=m
+CONFIG_TWL6030_USB=m
+CONFIG_NOP_USB_XCEIV=m
+CONFIG_UWB=m
+CONFIG_UWB_HWA=m
+CONFIG_UWB_WHCI=m
+# CONFIG_UWB_I1480U is not set
+CONFIG_MMC=y
+# CONFIG_MMC_DEBUG is not set
+# CONFIG_MMC_UNSAFE_RESUME is not set
+# CONFIG_MMC_CLKGATE is not set
+
+#
+# MMC/SD/SDIO Card Drivers
+#
+CONFIG_MMC_BLOCK=y
+CONFIG_MMC_BLOCK_MINORS=8
+CONFIG_MMC_BLOCK_BOUNCE=y
+CONFIG_SDIO_UART=m
+CONFIG_MMC_TEST=m
+
+#
+# MMC/SD/SDIO Host Controller Drivers
+#
+CONFIG_MMC_SDHCI=m
+CONFIG_MMC_SDHCI_PCI=m
+# CONFIG_MMC_RICOH_MMC is not set
+CONFIG_MMC_SDHCI_PLTFM=m
+CONFIG_MMC_WBSD=m
+CONFIG_MMC_TIFM_SD=m
+CONFIG_MMC_SDRICOH_CS=m
+CONFIG_MMC_CB710=m
+CONFIG_MMC_VIA_SDMMC=m
+CONFIG_MMC_VUB300=m
+CONFIG_MMC_USHC=m
+CONFIG_MEMSTICK=m
+# CONFIG_MEMSTICK_DEBUG is not set
+
+#
+# MemoryStick drivers
+#
+# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
+CONFIG_MSPRO_BLOCK=m
+
+#
+# MemoryStick Host Controller Drivers
+#
+CONFIG_MEMSTICK_TIFM_MS=m
+CONFIG_MEMSTICK_JMICRON_38X=m
+CONFIG_MEMSTICK_R592=m
+CONFIG_NEW_LEDS=y
+CONFIG_LEDS_CLASS=y
+
+#
+# LED drivers
+#
+# CONFIG_LEDS_88PM860X is not set
+CONFIG_LEDS_LM3530=m
+CONFIG_LEDS_LM3533=m
+CONFIG_LEDS_PCA9532=m
+CONFIG_LEDS_LP3944=m
+CONFIG_LEDS_LP5521=m
+CONFIG_LEDS_LP5523=m
+CONFIG_LEDS_CLEVO_MAIL=m
+CONFIG_LEDS_PCA955X=m
+CONFIG_LEDS_PCA9633=m
+CONFIG_LEDS_WM831X_STATUS=m
+CONFIG_LEDS_WM8350=m
+CONFIG_LEDS_DA903X=m
+CONFIG_LEDS_DA9052=m
+CONFIG_LEDS_REGULATOR=m
+CONFIG_LEDS_BD2802=m
+CONFIG_LEDS_INTEL_SS4200=m
+CONFIG_LEDS_ADP5520=m
+CONFIG_LEDS_DELL_NETBOOKS=m
+CONFIG_LEDS_MC13783=m
+CONFIG_LEDS_TCA6507=m
+CONFIG_LEDS_MAX8997=m
+CONFIG_LEDS_LM3556=m
+CONFIG_LEDS_OT200=m
+CONFIG_LEDS_BLINKM=m
+CONFIG_LEDS_TRIGGERS=y
+
+#
+# LED Triggers
+#
+CONFIG_LEDS_TRIGGER_TIMER=m
+CONFIG_LEDS_TRIGGER_ONESHOT=m
+CONFIG_LEDS_TRIGGER_HEARTBEAT=m
+CONFIG_LEDS_TRIGGER_BACKLIGHT=m
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
+
+#
+# iptables trigger is under Netfilter config (LED target)
+#
+CONFIG_LEDS_TRIGGER_TRANSIENT=m
+# CONFIG_ACCESSIBILITY is not set
+CONFIG_INFINIBAND=m
+CONFIG_INFINIBAND_USER_MAD=m
+CONFIG_INFINIBAND_USER_ACCESS=m
+CONFIG_INFINIBAND_USER_MEM=y
+CONFIG_INFINIBAND_ADDR_TRANS=y
+CONFIG_INFINIBAND_MTHCA=m
+CONFIG_INFINIBAND_MTHCA_DEBUG=y
+CONFIG_INFINIBAND_IPATH=m
+CONFIG_INFINIBAND_QIB=m
+CONFIG_INFINIBAND_AMSO1100=m
+# CONFIG_INFINIBAND_AMSO1100_DEBUG is not set
+CONFIG_INFINIBAND_CXGB3=m
+# CONFIG_INFINIBAND_CXGB3_DEBUG is not set
+CONFIG_INFINIBAND_CXGB4=m
+CONFIG_MLX4_INFINIBAND=m
+CONFIG_INFINIBAND_NES=m
+# CONFIG_INFINIBAND_NES_DEBUG is not set
+CONFIG_INFINIBAND_OCRDMA=m
+CONFIG_INFINIBAND_IPOIB=m
+CONFIG_INFINIBAND_IPOIB_CM=y
+CONFIG_INFINIBAND_IPOIB_DEBUG=y
+CONFIG_INFINIBAND_IPOIB_DEBUG_DATA=y
+CONFIG_INFINIBAND_SRP=m
+CONFIG_INFINIBAND_ISER=m
+CONFIG_EDAC=y
+
+#
+# Reporting subsystems
+#
+CONFIG_EDAC_LEGACY_SYSFS=y
+# CONFIG_EDAC_DEBUG is not set
+CONFIG_EDAC_DECODE_MCE=y
+# CONFIG_EDAC_MCE_INJ is not set
+# CONFIG_EDAC_MM_EDAC is not set
+CONFIG_RTC_LIB=y
+CONFIG_RTC_CLASS=y
+# CONFIG_RTC_HCTOSYS is not set
+# CONFIG_RTC_DEBUG is not set
+
+#
+# RTC interfaces
+#
+CONFIG_RTC_INTF_SYSFS=y
+CONFIG_RTC_INTF_PROC=y
+CONFIG_RTC_INTF_DEV=y
+# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
+CONFIG_RTC_DRV_TEST=m
+
+#
+# I2C RTC drivers
+#
+CONFIG_RTC_DRV_88PM860X=m
+CONFIG_RTC_DRV_88PM80X=m
+CONFIG_RTC_DRV_DS1307=m
+CONFIG_RTC_DRV_DS1374=m
+CONFIG_RTC_DRV_DS1672=m
+CONFIG_RTC_DRV_DS3232=m
+CONFIG_RTC_DRV_MAX6900=m
+CONFIG_RTC_DRV_MAX8925=m
+CONFIG_RTC_DRV_MAX8998=m
+CONFIG_RTC_DRV_RS5C372=m
+CONFIG_RTC_DRV_ISL1208=m
+CONFIG_RTC_DRV_ISL12022=m
+CONFIG_RTC_DRV_X1205=m
+CONFIG_RTC_DRV_PCF8563=m
+CONFIG_RTC_DRV_PCF8583=m
+CONFIG_RTC_DRV_M41T80=m
+# CONFIG_RTC_DRV_M41T80_WDT is not set
+CONFIG_RTC_DRV_BQ32K=m
+CONFIG_RTC_DRV_TWL4030=m
+CONFIG_RTC_DRV_S35390A=m
+CONFIG_RTC_DRV_FM3130=m
+CONFIG_RTC_DRV_RX8581=m
+CONFIG_RTC_DRV_RX8025=m
+CONFIG_RTC_DRV_EM3027=m
+CONFIG_RTC_DRV_RV3029C2=m
+
+#
+# SPI RTC drivers
+#
+
+#
+# Platform RTC drivers
+#
+CONFIG_RTC_DRV_CMOS=y
+CONFIG_RTC_DRV_DS1286=m
+CONFIG_RTC_DRV_DS1511=m
+CONFIG_RTC_DRV_DS1553=m
+CONFIG_RTC_DRV_DS1742=m
+CONFIG_RTC_DRV_DA9052=m
+CONFIG_RTC_DRV_STK17TA8=m
+CONFIG_RTC_DRV_M48T86=m
+CONFIG_RTC_DRV_M48T35=m
+CONFIG_RTC_DRV_M48T59=m
+CONFIG_RTC_DRV_MSM6242=m
+CONFIG_RTC_DRV_BQ4802=m
+CONFIG_RTC_DRV_RP5C01=m
+CONFIG_RTC_DRV_V3020=m
+CONFIG_RTC_DRV_WM831X=m
+CONFIG_RTC_DRV_WM8350=m
+# CONFIG_RTC_DRV_PCF50633 is not set
+CONFIG_RTC_DRV_AB3100=y
+
+#
+# on-CPU RTC drivers
+#
+CONFIG_RTC_DRV_MC13XXX=m
+CONFIG_DMADEVICES=y
+# CONFIG_DMADEVICES_DEBUG is not set
+
+#
+# DMA Devices
+#
+# CONFIG_INTEL_MID_DMAC is not set
+# CONFIG_INTEL_IOATDMA is not set
+CONFIG_TIMB_DMA=m
+# CONFIG_PCH_DMA is not set
+CONFIG_DMA_ENGINE=y
+
+#
+# DMA Clients
+#
+# CONFIG_NET_DMA is not set
+# CONFIG_ASYNC_TX_DMA is not set
+# CONFIG_DMATEST is not set
+# CONFIG_AUXDISPLAY is not set
+CONFIG_UIO=m
+# CONFIG_UIO_CIF is not set
+# CONFIG_UIO_PDRV is not set
+# CONFIG_UIO_PDRV_GENIRQ is not set
+# CONFIG_UIO_AEC is not set
+# CONFIG_UIO_SERCOS3 is not set
+# CONFIG_UIO_PCI_GENERIC is not set
+# CONFIG_UIO_NETX is not set
+CONFIG_VFIO_IOMMU_TYPE1=m
+CONFIG_VFIO=m
+CONFIG_VFIO_PCI=m
+CONFIG_VIRTIO=m
+CONFIG_VIRTIO_RING=m
+
+#
+# Virtio drivers
+#
+CONFIG_VIRTIO_PCI=m
+CONFIG_VIRTIO_BALLOON=m
+CONFIG_VIRTIO_MMIO=m
+# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
+
+#
+# Microsoft Hyper-V guest support
+#
+CONFIG_HYPERV=m
+CONFIG_HYPERV_UTILS=m
+
+#
+# Xen driver support
+#
+CONFIG_XEN_BALLOON=y
+CONFIG_XEN_SCRUB_PAGES=y
+CONFIG_XEN_DEV_EVTCHN=y
+CONFIG_XEN_BACKEND=y
+CONFIG_XENFS=y
+CONFIG_XEN_COMPAT_XENFS=y
+CONFIG_XEN_SYS_HYPERVISOR=y
+CONFIG_XEN_XENBUS_FRONTEND=y
+CONFIG_XEN_GNTDEV=m
+CONFIG_XEN_GRANT_DEV_ALLOC=m
+CONFIG_SWIOTLB_XEN=y
+CONFIG_XEN_TMEM=y
+CONFIG_XEN_PCIDEV_BACKEND=m
+CONFIG_XEN_PRIVCMD=y
+CONFIG_XEN_ACPI_PROCESSOR=m
+CONFIG_XEN_MCE_LOG=y
+CONFIG_STAGING=y
+# CONFIG_ET131X is not set
+# CONFIG_SLICOSS is not set
+# CONFIG_USBIP_CORE is not set
+# CONFIG_ECHO is not set
+# CONFIG_COMEDI is not set
+# CONFIG_ASUS_OLED is not set
+# CONFIG_PANEL is not set
+# CONFIG_RTS_PSTOR is not set
+CONFIG_RTS5139=m
+# CONFIG_RTS5139_DEBUG is not set
+# CONFIG_TRANZPORT is not set
+# CONFIG_IDE_PHISON is not set
+# CONFIG_LINE6_USB is not set
+# CONFIG_USB_SERIAL_QUATECH2 is not set
+# CONFIG_DX_SEP is not set
+
+#
+# IIO staging drivers
+#
+# CONFIG_IIO_ST_HWMON is not set
+CONFIG_IIO_SW_RING=m
+
+#
+# Accelerometers
+#
+
+#
+# Analog to digital converters
+#
+# CONFIG_AD7291 is not set
+# CONFIG_AD799X is not set
+# CONFIG_ADT7410 is not set
+# CONFIG_MAX1363 is not set
+
+#
+# Analog digital bi-direction converters
+#
+
+#
+# Capacitance to digital converters
+#
+# CONFIG_AD7150 is not set
+# CONFIG_AD7152 is not set
+# CONFIG_AD7746 is not set
+
+#
+# Direct Digital Synthesis
+#
+
+#
+# Digital gyroscope sensors
+#
+
+#
+# Network Analyzer, Impedance Converters
+#
+# CONFIG_AD5933 is not set
+
+#
+# Inertial measurement units
+#
+
+#
+# Light sensors
+#
+# CONFIG_SENSORS_ISL29018 is not set
+# CONFIG_SENSORS_ISL29028 is not set
+# CONFIG_SENSORS_TSL2563 is not set
+# CONFIG_TSL2583 is not set
+# CONFIG_TSL2x7x is not set
+
+#
+# Magnetometer sensors
+#
+# CONFIG_SENSORS_HMC5843 is not set
+
+#
+# Active energy metering IC
+#
+# CONFIG_ADE7854 is not set
+
+#
+# Resolver to digital converters
+#
+
+#
+# Triggers - standalone
+#
+CONFIG_IIO_PERIODIC_RTC_TRIGGER=m
+CONFIG_IIO_SYSFS_TRIGGER=m
+# CONFIG_IIO_SIMPLE_DUMMY is not set
+# CONFIG_ZRAM is not set
+CONFIG_ZSMALLOC=m
+# CONFIG_FB_SM7XX is not set
+# CONFIG_CRYSTALHD is not set
+# CONFIG_FB_XGI is not set
+# CONFIG_ACPI_QUICKSTART is not set
+# CONFIG_USB_ENESTORAGE is not set
+# CONFIG_BCM_WIMAX is not set
+# CONFIG_FT1000 is not set
+
+#
+# Speakup console speech
+#
+# CONFIG_SPEAKUP is not set
+# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
+CONFIG_STAGING_MEDIA=y
+CONFIG_DVB_AS102=m
+# CONFIG_DVB_CXD2099 is not set
+# CONFIG_VIDEO_DT3155 is not set
+# CONFIG_EASYCAP is not set
+# CONFIG_VIDEO_GO7007 is not set
+# CONFIG_SOLO6X10 is not set
+# CONFIG_LIRC_STAGING is not set
+
+#
+# Android
+#
+# CONFIG_ANDROID is not set
+# CONFIG_PHONE is not set
+# CONFIG_USB_WPAN_HCD is not set
+CONFIG_IPACK_BUS=m
+CONFIG_BOARD_TPCI200=m
+CONFIG_SERIAL_IPOCTAL=m
+CONFIG_WIMAX_GDM72XX=m
+CONFIG_WIMAX_GDM72XX_QOS=y
+CONFIG_WIMAX_GDM72XX_K_MODE=y
+CONFIG_WIMAX_GDM72XX_WIMAX2=y
+CONFIG_WIMAX_GDM72XX_USB=y
+# CONFIG_WIMAX_GDM72XX_SDIO is not set
+CONFIG_X86_PLATFORM_DEVICES=y
+# CONFIG_ACER_WMI is not set
+CONFIG_ACERHDF=m
+CONFIG_ASUS_LAPTOP=y
+CONFIG_DELL_WMI=m
+CONFIG_DELL_WMI_AIO=m
+CONFIG_FUJITSU_LAPTOP=y
+# CONFIG_FUJITSU_LAPTOP_DEBUG is not set
+# CONFIG_FUJITSU_TABLET is not set
+# CONFIG_HP_ACCEL is not set
+CONFIG_HP_WMI=m
+# CONFIG_PANASONIC_LAPTOP is not set
+# CONFIG_THINKPAD_ACPI is not set
+# CONFIG_SENSORS_HDAPS is not set
+CONFIG_INTEL_MENLOW=m
+# CONFIG_EEEPC_LAPTOP is not set
+CONFIG_ASUS_WMI=m
+# CONFIG_ASUS_NB_WMI is not set
+# CONFIG_EEEPC_WMI is not set
+CONFIG_ACPI_WMI=m
+CONFIG_MSI_WMI=m
+# CONFIG_TOPSTAR_LAPTOP is not set
+# CONFIG_ACPI_TOSHIBA is not set
+CONFIG_TOSHIBA_BT_RFKILL=m
+# CONFIG_ACPI_CMPC is not set
+CONFIG_INTEL_IPS=m
+CONFIG_IBM_RTL=m
+# CONFIG_XO15_EBOOK is not set
+# CONFIG_SAMSUNG_LAPTOP is not set
+# CONFIG_MXM_WMI is not set
+CONFIG_SAMSUNG_Q10=m
+# CONFIG_APPLE_GMUX is not set
+
+#
+# Hardware Spinlock drivers
+#
+CONFIG_CLKEVT_I8253=y
+CONFIG_I8253_LOCK=y
+CONFIG_CLKBLD_I8253=y
+CONFIG_IOMMU_API=y
+CONFIG_IOMMU_SUPPORT=y
+CONFIG_AMD_IOMMU=y
+CONFIG_AMD_IOMMU_STATS=y
+CONFIG_AMD_IOMMU_V2=y
+CONFIG_DMAR_TABLE=y
+CONFIG_INTEL_IOMMU=y
+CONFIG_INTEL_IOMMU_DEFAULT_ON=y
+CONFIG_INTEL_IOMMU_FLOPPY_WA=y
+CONFIG_IRQ_REMAP=y
+
+#
+# Remoteproc drivers (EXPERIMENTAL)
+#
+
+#
+# Rpmsg drivers (EXPERIMENTAL)
+#
+CONFIG_VIRT_DRIVERS=y
+# CONFIG_PM_DEVFREQ is not set
+CONFIG_EXTCON=y
+
+#
+# Extcon Device Drivers
+#
+CONFIG_EXTCON_MAX8997=m
+CONFIG_EXTCON_ARIZONA=m
+CONFIG_MEMORY=y
+CONFIG_IIO=m
+CONFIG_IIO_BUFFER=y
+CONFIG_IIO_KFIFO_BUF=m
+CONFIG_IIO_TRIGGERED_BUFFER=m
+CONFIG_IIO_TRIGGER=y
+CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
+
+#
+# Analog to digital converters
+#
+
+#
+# Amplifiers
+#
+
+#
+# Light sensors
+#
+CONFIG_ADJD_S311=m
+CONFIG_SENSORS_LM3533=m
+CONFIG_VCNL4000=m
+
+#
+# Frequency Synthesizers DDS/PLL
+#
+
+#
+# Clock Generator/Distribution
+#
+
+#
+# Phase-Locked Loop (PLL) frequency synthesizers
+#
+
+#
+# Digital to analog converters
+#
+CONFIG_AD5064=m
+# CONFIG_AD5380 is not set
+# CONFIG_MAX517 is not set
+CONFIG_MCP4725=m
+CONFIG_VME_BUS=m
+
+#
+# VME Bridge Drivers
+#
+CONFIG_VME_CA91CX42=m
+CONFIG_VME_TSI148=m
+
+#
+# VME Board Drivers
+#
+CONFIG_VMIVME_7805=m
+
+#
+# VME Device Drivers
+#
+CONFIG_VME_USER=m
+CONFIG_PWM=y
+
+#
+# Firmware Drivers
+#
+# CONFIG_EDD is not set
+CONFIG_FIRMWARE_MEMMAP=y
+CONFIG_EFI_VARS=y
+# CONFIG_DELL_RBU is not set
+# CONFIG_DCDBAS is not set
+CONFIG_DMIID=y
+# CONFIG_DMI_SYSFS is not set
+# CONFIG_ISCSI_IBFT_FIND is not set
+# CONFIG_GOOGLE_FIRMWARE is not set
+
+#
+# File systems
+#
+CONFIG_DCACHE_WORD_ACCESS=y
+CONFIG_EXT2_FS=m
+CONFIG_EXT2_FS_XATTR=y
+CONFIG_EXT2_FS_POSIX_ACL=y
+CONFIG_EXT2_FS_SECURITY=y
+# CONFIG_EXT2_FS_XIP is not set
+CONFIG_EXT3_FS=y
+# CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set
+CONFIG_EXT3_FS_XATTR=y
+CONFIG_EXT3_FS_POSIX_ACL=y
+CONFIG_EXT3_FS_SECURITY=y
+CONFIG_EXT4_FS=y
+CONFIG_EXT4_FS_XATTR=y
+CONFIG_EXT4_FS_POSIX_ACL=y
+CONFIG_EXT4_FS_SECURITY=y
+# CONFIG_EXT4_DEBUG is not set
+CONFIG_JBD=y
+# CONFIG_JBD_DEBUG is not set
+CONFIG_JBD2=y
+# CONFIG_JBD2_DEBUG is not set
+CONFIG_FS_MBCACHE=y
+CONFIG_REISERFS_FS=m
+# CONFIG_REISERFS_CHECK is not set
+CONFIG_REISERFS_PROC_INFO=y
+CONFIG_REISERFS_FS_XATTR=y
+CONFIG_REISERFS_FS_POSIX_ACL=y
+CONFIG_REISERFS_FS_SECURITY=y
+CONFIG_JFS_FS=m
+CONFIG_JFS_POSIX_ACL=y
+CONFIG_JFS_SECURITY=y
+# CONFIG_JFS_DEBUG is not set
+CONFIG_JFS_STATISTICS=y
+CONFIG_XFS_FS=m
+CONFIG_XFS_QUOTA=y
+CONFIG_XFS_POSIX_ACL=y
+CONFIG_XFS_RT=y
+# CONFIG_XFS_DEBUG is not set
+CONFIG_GFS2_FS=m
+# CONFIG_GFS2_FS_LOCKING_DLM is not set
+CONFIG_OCFS2_FS=m
+CONFIG_OCFS2_FS_O2CB=m
+CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m
+CONFIG_OCFS2_FS_STATS=y
+CONFIG_OCFS2_DEBUG_MASKLOG=y
+# CONFIG_OCFS2_DEBUG_FS is not set
+CONFIG_BTRFS_FS=m
+CONFIG_BTRFS_FS_POSIX_ACL=y
+# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
+CONFIG_NILFS2_FS=m
+CONFIG_FS_POSIX_ACL=y
+CONFIG_EXPORTFS=m
+CONFIG_FILE_LOCKING=y
+CONFIG_FSNOTIFY=y
+CONFIG_DNOTIFY=y
+CONFIG_INOTIFY_USER=y
+# CONFIG_FANOTIFY is not set
+CONFIG_QUOTA=y
+CONFIG_QUOTA_NETLINK_INTERFACE=y
+# CONFIG_PRINT_QUOTA_WARNING is not set
+# CONFIG_QUOTA_DEBUG is not set
+CONFIG_QUOTA_TREE=y
+# CONFIG_QFMT_V1 is not set
+CONFIG_QFMT_V2=y
+CONFIG_QUOTACTL=y
+CONFIG_QUOTACTL_COMPAT=y
+CONFIG_AUTOFS4_FS=y
+CONFIG_FUSE_FS=m
+CONFIG_CUSE=m
+CONFIG_GENERIC_ACL=y
+
+#
+# Caches
+#
+CONFIG_FSCACHE=m
+CONFIG_FSCACHE_STATS=y
+CONFIG_FSCACHE_HISTOGRAM=y
+# CONFIG_FSCACHE_DEBUG is not set
+# CONFIG_FSCACHE_OBJECT_LIST is not set
+CONFIG_CACHEFILES=m
+# CONFIG_CACHEFILES_DEBUG is not set
+CONFIG_CACHEFILES_HISTOGRAM=y
+
+#
+# CD-ROM/DVD Filesystems
+#
+CONFIG_ISO9660_FS=y
+CONFIG_JOLIET=y
+CONFIG_ZISOFS=y
+CONFIG_UDF_FS=y
+CONFIG_UDF_NLS=y
+
+#
+# DOS/FAT/NT Filesystems
+#
+CONFIG_FAT_FS=y
+CONFIG_MSDOS_FS=y
+CONFIG_VFAT_FS=y
+CONFIG_FAT_DEFAULT_CODEPAGE=437
+CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
+CONFIG_NTFS_FS=y
+# CONFIG_NTFS_DEBUG is not set
+CONFIG_NTFS_RW=y
+
+#
+# Pseudo filesystems
+#
+CONFIG_PROC_FS=y
+CONFIG_PROC_KCORE=y
+CONFIG_PROC_VMCORE=y
+CONFIG_PROC_SYSCTL=y
+CONFIG_PROC_PAGE_MONITOR=y
+CONFIG_SYSFS=y
+CONFIG_TMPFS=y
+CONFIG_TMPFS_POSIX_ACL=y
+CONFIG_TMPFS_XATTR=y
+CONFIG_HUGETLBFS=y
+CONFIG_HUGETLB_PAGE=y
+CONFIG_CONFIGFS_FS=m
+CONFIG_MISC_FILESYSTEMS=y
+CONFIG_ADFS_FS=m
+# CONFIG_ADFS_FS_RW is not set
+CONFIG_AFFS_FS=m
+CONFIG_ECRYPT_FS=m
+CONFIG_HFS_FS=m
+CONFIG_HFSPLUS_FS=m
+CONFIG_BEFS_FS=m
+# CONFIG_BEFS_DEBUG is not set
+CONFIG_BFS_FS=m
+CONFIG_EFS_FS=m
+CONFIG_LOGFS=m
+CONFIG_CRAMFS=m
+CONFIG_SQUASHFS=m
+CONFIG_SQUASHFS_XATTR=y
+CONFIG_SQUASHFS_ZLIB=y
+CONFIG_SQUASHFS_LZO=y
+CONFIG_SQUASHFS_XZ=y
+CONFIG_SQUASHFS_4K_DEVBLK_SIZE=y
+CONFIG_SQUASHFS_EMBEDDED=y
+CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
+CONFIG_VXFS_FS=m
+CONFIG_MINIX_FS=m
+CONFIG_OMFS_FS=m
+CONFIG_HPFS_FS=m
+CONFIG_QNX4FS_FS=m
+CONFIG_QNX6FS_FS=m
+# CONFIG_QNX6FS_DEBUG is not set
+CONFIG_ROMFS_FS=m
+CONFIG_ROMFS_BACKED_BY_BLOCK=y
+CONFIG_ROMFS_ON_BLOCK=y
+# CONFIG_PSTORE is not set
+CONFIG_SYSV_FS=m
+CONFIG_UFS_FS=m
+# CONFIG_UFS_FS_WRITE is not set
+# CONFIG_UFS_DEBUG is not set
+CONFIG_NETWORK_FILESYSTEMS=y
+CONFIG_NFS_FS=y
+CONFIG_NFS_V2=y
+CONFIG_NFS_V3=y
+CONFIG_NFS_V3_ACL=y
+CONFIG_NFS_V4=y
+# CONFIG_NFS_SWAP is not set
+CONFIG_NFS_V4_1=y
+CONFIG_PNFS_FILE_LAYOUT=m
+CONFIG_PNFS_BLOCK=m
+CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org"
+CONFIG_ROOT_NFS=y
+# CONFIG_NFS_USE_LEGACY_DNS is not set
+CONFIG_NFS_USE_KERNEL_DNS=y
+CONFIG_NFSD=m
+CONFIG_NFSD_V2_ACL=y
+CONFIG_NFSD_V3=y
+CONFIG_NFSD_V3_ACL=y
+# CONFIG_NFSD_V4 is not set
+CONFIG_LOCKD=y
+CONFIG_LOCKD_V4=y
+CONFIG_NFS_ACL_SUPPORT=y
+CONFIG_NFS_COMMON=y
+CONFIG_SUNRPC=y
+CONFIG_SUNRPC_GSS=y
+CONFIG_SUNRPC_BACKCHANNEL=y
+CONFIG_SUNRPC_XPRT_RDMA=m
+CONFIG_RPCSEC_GSS_KRB5=m
+# CONFIG_SUNRPC_DEBUG is not set
+# CONFIG_CEPH_FS is not set
+CONFIG_CIFS=m
+CONFIG_CIFS_STATS=y
+CONFIG_CIFS_STATS2=y
+CONFIG_CIFS_WEAK_PW_HASH=y
+# CONFIG_CIFS_UPCALL is not set
+CONFIG_CIFS_XATTR=y
+CONFIG_CIFS_POSIX=y
+# CONFIG_CIFS_DEBUG2 is not set
+# CONFIG_CIFS_DFS_UPCALL is not set
+# CONFIG_CIFS_FSCACHE is not set
+CONFIG_CIFS_ACL=y
+# CONFIG_NCP_FS is not set
+# CONFIG_CODA_FS is not set
+# CONFIG_AFS_FS is not set
+CONFIG_NLS=y
+CONFIG_NLS_DEFAULT="utf8"
+CONFIG_NLS_CODEPAGE_437=y
+CONFIG_NLS_CODEPAGE_737=m
+CONFIG_NLS_CODEPAGE_775=m
+CONFIG_NLS_CODEPAGE_850=y
+CONFIG_NLS_CODEPAGE_852=m
+CONFIG_NLS_CODEPAGE_855=m
+CONFIG_NLS_CODEPAGE_857=m
+CONFIG_NLS_CODEPAGE_860=m
+CONFIG_NLS_CODEPAGE_861=m
+CONFIG_NLS_CODEPAGE_862=m
+CONFIG_NLS_CODEPAGE_863=m
+CONFIG_NLS_CODEPAGE_864=m
+CONFIG_NLS_CODEPAGE_865=m
+CONFIG_NLS_CODEPAGE_866=m
+CONFIG_NLS_CODEPAGE_869=m
+CONFIG_NLS_CODEPAGE_936=m
+CONFIG_NLS_CODEPAGE_950=m
+CONFIG_NLS_CODEPAGE_932=m
+CONFIG_NLS_CODEPAGE_949=m
+CONFIG_NLS_CODEPAGE_874=m
+CONFIG_NLS_ISO8859_8=m
+CONFIG_NLS_CODEPAGE_1250=m
+CONFIG_NLS_CODEPAGE_1251=m
+CONFIG_NLS_ASCII=y
+CONFIG_NLS_ISO8859_1=y
+CONFIG_NLS_ISO8859_2=m
+CONFIG_NLS_ISO8859_3=m
+CONFIG_NLS_ISO8859_4=m
+CONFIG_NLS_ISO8859_5=m
+CONFIG_NLS_ISO8859_6=m
+CONFIG_NLS_ISO8859_7=m
+CONFIG_NLS_ISO8859_9=m
+CONFIG_NLS_ISO8859_13=m
+CONFIG_NLS_ISO8859_14=m
+CONFIG_NLS_ISO8859_15=y
+CONFIG_NLS_KOI8_R=m
+CONFIG_NLS_KOI8_U=m
+CONFIG_NLS_MAC_ROMAN=m
+CONFIG_NLS_MAC_CELTIC=m
+CONFIG_NLS_MAC_CENTEURO=m
+CONFIG_NLS_MAC_CROATIAN=m
+CONFIG_NLS_MAC_CYRILLIC=m
+CONFIG_NLS_MAC_GAELIC=m
+CONFIG_NLS_MAC_GREEK=m
+CONFIG_NLS_MAC_ICELAND=m
+CONFIG_NLS_MAC_INUIT=m
+CONFIG_NLS_MAC_ROMANIAN=m
+CONFIG_NLS_MAC_TURKISH=m
+CONFIG_NLS_UTF8=y
+CONFIG_DLM=m
+# CONFIG_DLM_DEBUG is not set
+
+#
+# Kernel hacking
+#
+CONFIG_TRACE_IRQFLAGS_SUPPORT=y
+CONFIG_PRINTK_TIME=y
+CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
+# CONFIG_ENABLE_WARN_DEPRECATED is not set
+CONFIG_ENABLE_MUST_CHECK=y
+CONFIG_FRAME_WARN=2048
+CONFIG_MAGIC_SYSRQ=y
+# CONFIG_STRIP_ASM_SYMS is not set
+# CONFIG_READABLE_ASM is not set
+# CONFIG_UNUSED_SYMBOLS is not set
+CONFIG_DEBUG_FS=y
+# CONFIG_HEADERS_CHECK is not set
+# CONFIG_DEBUG_SECTION_MISMATCH is not set
+CONFIG_DEBUG_KERNEL=y
+# CONFIG_DEBUG_SHIRQ is not set
+# CONFIG_LOCKUP_DETECTOR is not set
+# CONFIG_HARDLOCKUP_DETECTOR is not set
+# CONFIG_PANIC_ON_OOPS is not set
+CONFIG_PANIC_ON_OOPS_VALUE=0
+# CONFIG_DETECT_HUNG_TASK is not set
+# CONFIG_SCHED_DEBUG is not set
+CONFIG_SCHEDSTATS=y
+CONFIG_TIMER_STATS=y
+# CONFIG_DEBUG_OBJECTS is not set
+# CONFIG_SLUB_DEBUG_ON is not set
+# CONFIG_SLUB_STATS is not set
+# CONFIG_DEBUG_KMEMLEAK is not set
+# CONFIG_DEBUG_RT_MUTEXES is not set
+# CONFIG_RT_MUTEX_TESTER is not set
+# CONFIG_DEBUG_SPINLOCK is not set
+# CONFIG_DEBUG_MUTEXES is not set
+# CONFIG_DEBUG_LOCK_ALLOC is not set
+# CONFIG_PROVE_LOCKING is not set
+# CONFIG_SPARSE_RCU_POINTER is not set
+# CONFIG_LOCK_STAT is not set
+# CONFIG_DEBUG_ATOMIC_SLEEP is not set
+# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
+CONFIG_STACKTRACE=y
+CONFIG_DEBUG_STACK_USAGE=y
+# CONFIG_DEBUG_KOBJECT is not set
+CONFIG_DEBUG_BUGVERBOSE=y
+# CONFIG_DEBUG_INFO is not set
+# CONFIG_DEBUG_VM is not set
+# CONFIG_DEBUG_VIRTUAL is not set
+# CONFIG_DEBUG_WRITECOUNT is not set
+CONFIG_DEBUG_MEMORY_INIT=y
+# CONFIG_DEBUG_LIST is not set
+# CONFIG_TEST_LIST_SORT is not set
+# CONFIG_DEBUG_SG is not set
+# CONFIG_DEBUG_NOTIFIERS is not set
+# CONFIG_DEBUG_CREDENTIALS is not set
+CONFIG_ARCH_WANT_FRAME_POINTERS=y
+CONFIG_FRAME_POINTER=y
+# CONFIG_BOOT_PRINTK_DELAY is not set
+# CONFIG_RCU_TORTURE_TEST is not set
+CONFIG_RCU_CPU_STALL_TIMEOUT=60
+# CONFIG_RCU_CPU_STALL_INFO is not set
+# CONFIG_RCU_TRACE is not set
+# CONFIG_KPROBES_SANITY_TEST is not set
+# CONFIG_BACKTRACE_SELF_TEST is not set
+# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
+# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
+# CONFIG_DEBUG_PER_CPU_MAPS is not set
+# CONFIG_LKDTM is not set
+CONFIG_NOTIFIER_ERROR_INJECTION=m
+# CONFIG_CPU_NOTIFIER_ERROR_INJECT is not set
+CONFIG_PM_NOTIFIER_ERROR_INJECT=m
+# CONFIG_FAULT_INJECTION is not set
+# CONFIG_LATENCYTOP is not set
+# CONFIG_DEBUG_PAGEALLOC is not set
+CONFIG_USER_STACKTRACE_SUPPORT=y
+CONFIG_NOP_TRACER=y
+CONFIG_HAVE_FUNCTION_TRACER=y
+CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
+CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
+CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
+CONFIG_HAVE_DYNAMIC_FTRACE=y
+CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
+CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
+CONFIG_HAVE_C_RECORDMCOUNT=y
+CONFIG_RING_BUFFER=y
+CONFIG_EVENT_TRACING=y
+CONFIG_EVENT_POWER_TRACING_DEPRECATED=y
+CONFIG_CONTEXT_SWITCH_TRACER=y
+CONFIG_TRACING=y
+CONFIG_GENERIC_TRACER=y
+CONFIG_TRACING_SUPPORT=y
+CONFIG_FTRACE=y
+# CONFIG_FUNCTION_TRACER is not set
+# CONFIG_IRQSOFF_TRACER is not set
+# CONFIG_SCHED_TRACER is not set
+# CONFIG_FTRACE_SYSCALLS is not set
+CONFIG_BRANCH_PROFILE_NONE=y
+# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
+# CONFIG_PROFILE_ALL_BRANCHES is not set
+# CONFIG_STACK_TRACER is not set
+CONFIG_BLK_DEV_IO_TRACE=y
+CONFIG_KPROBE_EVENT=y
+CONFIG_UPROBE_EVENT=y
+CONFIG_PROBE_EVENTS=y
+# CONFIG_FTRACE_STARTUP_TEST is not set
+# CONFIG_MMIOTRACE is not set
+# CONFIG_RING_BUFFER_BENCHMARK is not set
+CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
+# CONFIG_DYNAMIC_DEBUG is not set
+# CONFIG_DMA_API_DEBUG is not set
+# CONFIG_ATOMIC64_SELFTEST is not set
+# CONFIG_ASYNC_RAID6_TEST is not set
+# CONFIG_SAMPLES is not set
+CONFIG_HAVE_ARCH_KGDB=y
+# CONFIG_KGDB is not set
+CONFIG_HAVE_ARCH_KMEMCHECK=y
+# CONFIG_KMEMCHECK is not set
+# CONFIG_TEST_KSTRTOX is not set
+# CONFIG_STRICT_DEVMEM is not set
+CONFIG_X86_VERBOSE_BOOTUP=y
+CONFIG_EARLY_PRINTK=y
+CONFIG_EARLY_PRINTK_DBGP=y
+CONFIG_DEBUG_STACKOVERFLOW=y
+# CONFIG_X86_PTDUMP is not set
+CONFIG_DEBUG_RODATA=y
+# CONFIG_DEBUG_RODATA_TEST is not set
+# CONFIG_DEBUG_SET_MODULE_RONX is not set
+CONFIG_DEBUG_NX_TEST=m
+# CONFIG_DEBUG_TLBFLUSH is not set
+# CONFIG_IOMMU_DEBUG is not set
+# CONFIG_IOMMU_STRESS is not set
+CONFIG_HAVE_MMIOTRACE_SUPPORT=y
+# CONFIG_X86_DECODER_SELFTEST is not set
+CONFIG_IO_DELAY_TYPE_0X80=0
+CONFIG_IO_DELAY_TYPE_0XED=1
+CONFIG_IO_DELAY_TYPE_UDELAY=2
+CONFIG_IO_DELAY_TYPE_NONE=3
+CONFIG_IO_DELAY_0X80=y
+# CONFIG_IO_DELAY_0XED is not set
+# CONFIG_IO_DELAY_UDELAY is not set
+# CONFIG_IO_DELAY_NONE is not set
+CONFIG_DEFAULT_IO_DELAY_TYPE=0
+CONFIG_DEBUG_BOOT_PARAMS=y
+# CONFIG_CPA_DEBUG is not set
+CONFIG_OPTIMIZE_INLINING=y
+# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
+CONFIG_DEBUG_NMI_SELFTEST=y
+
+#
+# Security options
+#
+CONFIG_KEYS=y
+# CONFIG_TRUSTED_KEYS is not set
+CONFIG_ENCRYPTED_KEYS=y
+CONFIG_KEYS_DEBUG_PROC_KEYS=y
+# CONFIG_SECURITY_DMESG_RESTRICT is not set
+CONFIG_SECURITY=y
+CONFIG_SECURITYFS=y
+CONFIG_SECURITY_NETWORK=y
+# CONFIG_SECURITY_NETWORK_XFRM is not set
+CONFIG_SECURITY_PATH=y
+# CONFIG_INTEL_TXT is not set
+CONFIG_LSM_MMAP_MIN_ADDR=65536
+CONFIG_SECURITY_SELINUX=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM=y
+CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
+CONFIG_SECURITY_SELINUX_DISABLE=y
+CONFIG_SECURITY_SELINUX_DEVELOP=y
+CONFIG_SECURITY_SELINUX_AVC_STATS=y
+CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
+# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
+# CONFIG_SECURITY_SMACK is not set
+# CONFIG_SECURITY_TOMOYO is not set
+# CONFIG_SECURITY_APPARMOR is not set
+CONFIG_SECURITY_YAMA=y
+CONFIG_INTEGRITY=y
+# CONFIG_INTEGRITY_SIGNATURE is not set
+# CONFIG_IMA is not set
+CONFIG_EVM=y
+CONFIG_DEFAULT_SECURITY_SELINUX=y
+# CONFIG_DEFAULT_SECURITY_YAMA is not set
+# CONFIG_DEFAULT_SECURITY_DAC is not set
+CONFIG_DEFAULT_SECURITY="selinux"
+CONFIG_XOR_BLOCKS=m
+CONFIG_ASYNC_CORE=m
+CONFIG_ASYNC_MEMCPY=m
+CONFIG_ASYNC_XOR=m
+CONFIG_ASYNC_PQ=m
+CONFIG_ASYNC_RAID6_RECOV=m
+CONFIG_CRYPTO=y
+
+#
+# Crypto core or helper
+#
+CONFIG_CRYPTO_ALGAPI=y
+CONFIG_CRYPTO_ALGAPI2=y
+CONFIG_CRYPTO_AEAD=y
+CONFIG_CRYPTO_AEAD2=y
+CONFIG_CRYPTO_BLKCIPHER=y
+CONFIG_CRYPTO_BLKCIPHER2=y
+CONFIG_CRYPTO_HASH=y
+CONFIG_CRYPTO_HASH2=y
+CONFIG_CRYPTO_RNG=y
+CONFIG_CRYPTO_RNG2=y
+CONFIG_CRYPTO_PCOMP=m
+CONFIG_CRYPTO_PCOMP2=y
+CONFIG_CRYPTO_MANAGER=y
+CONFIG_CRYPTO_MANAGER2=y
+CONFIG_CRYPTO_USER=m
+CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
+CONFIG_CRYPTO_GF128MUL=m
+CONFIG_CRYPTO_NULL=m
+CONFIG_CRYPTO_PCRYPT=m
+CONFIG_CRYPTO_WORKQUEUE=y
+CONFIG_CRYPTO_CRYPTD=m
+CONFIG_CRYPTO_AUTHENC=y
+CONFIG_CRYPTO_TEST=m
+CONFIG_CRYPTO_ABLK_HELPER_X86=m
+CONFIG_CRYPTO_GLUE_HELPER_X86=m
+
+#
+# Authenticated Encryption with Associated Data
+#
+CONFIG_CRYPTO_CCM=m
+CONFIG_CRYPTO_GCM=m
+CONFIG_CRYPTO_SEQIV=m
+
+#
+# Block modes
+#
+CONFIG_CRYPTO_CBC=y
+CONFIG_CRYPTO_CTR=m
+CONFIG_CRYPTO_CTS=m
+CONFIG_CRYPTO_ECB=m
+CONFIG_CRYPTO_LRW=m
+CONFIG_CRYPTO_PCBC=m
+CONFIG_CRYPTO_XTS=m
+
+#
+# Hash modes
+#
+CONFIG_CRYPTO_HMAC=y
+CONFIG_CRYPTO_XCBC=m
+CONFIG_CRYPTO_VMAC=m
+
+#
+# Digest
+#
+CONFIG_CRYPTO_CRC32C=y
+CONFIG_CRYPTO_CRC32C_INTEL=m
+CONFIG_CRYPTO_GHASH=m
+CONFIG_CRYPTO_MD4=m
+CONFIG_CRYPTO_MD5=y
+CONFIG_CRYPTO_MICHAEL_MIC=m
+CONFIG_CRYPTO_RMD128=m
+CONFIG_CRYPTO_RMD160=m
+CONFIG_CRYPTO_RMD256=m
+CONFIG_CRYPTO_RMD320=m
+CONFIG_CRYPTO_SHA1=y
+CONFIG_CRYPTO_SHA1_SSSE3=m
+CONFIG_CRYPTO_SHA256=y
+CONFIG_CRYPTO_SHA512=m
+CONFIG_CRYPTO_TGR192=m
+CONFIG_CRYPTO_WP512=m
+CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m
+
+#
+# Ciphers
+#
+CONFIG_CRYPTO_AES=y
+CONFIG_CRYPTO_AES_X86_64=m
+CONFIG_CRYPTO_AES_NI_INTEL=m
+CONFIG_CRYPTO_ANUBIS=m
+CONFIG_CRYPTO_ARC4=y
+CONFIG_CRYPTO_BLOWFISH=m
+CONFIG_CRYPTO_BLOWFISH_COMMON=m
+CONFIG_CRYPTO_BLOWFISH_X86_64=m
+CONFIG_CRYPTO_CAMELLIA=m
+CONFIG_CRYPTO_CAMELLIA_X86_64=m
+CONFIG_CRYPTO_CAST5=m
+CONFIG_CRYPTO_CAST6=m
+CONFIG_CRYPTO_DES=y
+CONFIG_CRYPTO_FCRYPT=m
+CONFIG_CRYPTO_KHAZAD=m
+CONFIG_CRYPTO_SALSA20=m
+CONFIG_CRYPTO_SALSA20_X86_64=m
+CONFIG_CRYPTO_SEED=m
+CONFIG_CRYPTO_SERPENT=m
+CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m
+CONFIG_CRYPTO_SERPENT_AVX_X86_64=m
+CONFIG_CRYPTO_TEA=m
+CONFIG_CRYPTO_TWOFISH=m
+CONFIG_CRYPTO_TWOFISH_COMMON=m
+CONFIG_CRYPTO_TWOFISH_X86_64=m
+CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m
+CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m
+
+#
+# Compression
+#
+CONFIG_CRYPTO_DEFLATE=m
+CONFIG_CRYPTO_ZLIB=m
+CONFIG_CRYPTO_LZO=m
+
+#
+# Random Number Generation
+#
+CONFIG_CRYPTO_ANSI_CPRNG=m
+CONFIG_CRYPTO_USER_API=m
+CONFIG_CRYPTO_USER_API_HASH=m
+CONFIG_CRYPTO_USER_API_SKCIPHER=m
+CONFIG_CRYPTO_HW=y
+# CONFIG_CRYPTO_DEV_PADLOCK is not set
+CONFIG_HAVE_KVM=y
+CONFIG_HAVE_KVM_IRQCHIP=y
+CONFIG_HAVE_KVM_EVENTFD=y
+CONFIG_KVM_APIC_ARCHITECTURE=y
+CONFIG_KVM_MMIO=y
+CONFIG_KVM_ASYNC_PF=y
+CONFIG_HAVE_KVM_MSI=y
+CONFIG_VIRTUALIZATION=y
+CONFIG_KVM=m
+# CONFIG_KVM_INTEL is not set
+CONFIG_KVM_AMD=m
+# CONFIG_KVM_MMU_AUDIT is not set
+CONFIG_VHOST_NET=m
+CONFIG_BINARY_PRINTF=y
+
+#
+# Library routines
+#
+CONFIG_RAID6_PQ=m
+CONFIG_BITREVERSE=y
+CONFIG_GENERIC_STRNCPY_FROM_USER=y
+CONFIG_GENERIC_STRNLEN_USER=y
+CONFIG_GENERIC_FIND_FIRST_BIT=y
+CONFIG_GENERIC_PCI_IOMAP=y
+CONFIG_GENERIC_IOMAP=y
+CONFIG_GENERIC_IO=y
+CONFIG_CRC_CCITT=m
+CONFIG_CRC16=y
+CONFIG_CRC_T10DIF=y
+CONFIG_CRC_ITU_T=y
+CONFIG_CRC32=y
+# CONFIG_CRC32_SELFTEST is not set
+CONFIG_CRC32_SLICEBY8=y
+# CONFIG_CRC32_SLICEBY4 is not set
+# CONFIG_CRC32_SARWATE is not set
+# CONFIG_CRC32_BIT is not set
+CONFIG_CRC7=m
+CONFIG_LIBCRC32C=m
+CONFIG_CRC8=m
+CONFIG_ZLIB_INFLATE=y
+CONFIG_ZLIB_DEFLATE=m
+CONFIG_LZO_COMPRESS=y
+CONFIG_LZO_DECOMPRESS=y
+CONFIG_XZ_DEC=y
+CONFIG_XZ_DEC_X86=y
+CONFIG_XZ_DEC_POWERPC=y
+CONFIG_XZ_DEC_IA64=y
+CONFIG_XZ_DEC_ARM=y
+CONFIG_XZ_DEC_ARMTHUMB=y
+CONFIG_XZ_DEC_SPARC=y
+CONFIG_XZ_DEC_BCJ=y
+CONFIG_XZ_DEC_TEST=m
+CONFIG_DECOMPRESS_GZIP=y
+CONFIG_DECOMPRESS_BZIP2=y
+CONFIG_DECOMPRESS_LZMA=y
+CONFIG_DECOMPRESS_XZ=y
+CONFIG_DECOMPRESS_LZO=y
+CONFIG_GENERIC_ALLOCATOR=y
+CONFIG_TEXTSEARCH=y
+CONFIG_TEXTSEARCH_KMP=m
+CONFIG_TEXTSEARCH_BM=m
+CONFIG_TEXTSEARCH_FSM=m
+CONFIG_BTREE=y
+CONFIG_HAS_IOMEM=y
+CONFIG_HAS_IOPORT=y
+CONFIG_HAS_DMA=y
+CONFIG_CHECK_SIGNATURE=y
+CONFIG_CPU_RMAP=y
+CONFIG_DQL=y
+CONFIG_NLATTR=y
+CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
+CONFIG_LRU_CACHE=m
+CONFIG_AVERAGE=y
+CONFIG_CORDIC=m
+CONFIG_DDR=y
-# This file maps Internet media types to unique file extension(s). It is
-# distributed as the app-misc/mime-types package.
-#
-# The table below contains both registered and (common) unregistered types.
-# A type that has no unique extension can be ignored -- they are listed
-# here to guide configurations toward known types and to make it easier to
-# identify "new" types. File extensions are also commonly used to indicate
-# content languages and encodings, so choose them carefully.
-#
-# Internet media types should be registered as described in RFC 4288.
-# The registry is at <http://www.iana.org/assignments/media-types/>.
-#
-# The reason that all types are managed by the mime-support package instead
-# allowing individual packages to install types in much the same way as they
-# add entries in to the mailcap file is so these types can be referenced by
-# other programs (such as a web server) even if the specific support package
-# for that type is not installed.
-#
-# Users can add their own types if they wish by creating a ".mime.types"
-# file in their home directory. Definitions included there will take
-# precedence over those listed here. (Note: compression schemes like "gzip"
-# are note actually "mime-types". They are encodings and hence must _not_
-# have entries in this file to map their extensions.
-#
-# Sources used:
-#
-# http://packages.debian.org/etch/mime-support
-# http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
-
-application/activemessage
-application/andrew-inset ez
-application/applefile
-application/applixware aw
-application/atom+xml atom
-application/atomcat+xml atomcat
-application/atomicmail
-application/atomsvc+xml atomsvc
-application/auth-policy+xml
-application/batch-smtp
-application/beep+xml
-application/cals-1840
-application/ccxml+xml ccxml
-application/cea-2018+xml
-application/cellml+xml
-application/cnrp+xml
-application/commonground
-application/conference-info+xml
-application/cpl+xml
-application/csta+xml
-application/cstadata+xml
-application/cu-seeme cu
-application/cybercash
-application/davmount+xml davmount
-application/dca-rft
-application/dec-dx
-application/dialog-info+xml
-application/dicom
-application/dns
-application/dsptype tsp
-application/dvcs
-application/ecmascript ecma
-application/edi-consent
-application/edi-x12
-application/edifact
-application/emma+xml emma
-application/epp+xml
-application/epub+zip epub
-application/eshop
-application/example
-application/fastinfoset
-application/fastsoap
-application/fits
-application/font-tdpfr pfr
-application/futuresplash spl
-application/h224
-application/hta hta
-application/http
-application/hyperstudio stk
-application/ibe-key-request+xml
-application/ibe-pkg-reply+xml
-application/ibe-pp-data
-application/iges
-application/im-iscomposing+xml
-application/index
-application/index.cmd
-application/index.obj
-application/index.response
-application/index.vnd
-application/iotp
-application/ipp
-application/isup
-application/java-archive jar
-application/java-serialized-object ser
-application/java-vm class
-application/javascript js
-application/json json
-application/kpml-request+xml
-application/kpml-response+xml
-application/lost+xml lostxml
-application/mac-binhex40 hqx
-application/mac-compactpro cpt
-application/macwriteii
-application/marc mrc
-application/mathematica ma mb nb
-application/mathml+xml mathml
-application/mbms-associated-procedure-description+xml
-application/mbms-deregister+xml
-application/mbms-envelope+xml
-application/mbms-msk+xml
-application/mbms-msk-response+xml
-application/mbms-protection-description+xml
-application/mbms-reception-report+xml
-application/mbms-register+xml
-application/mbms-register-response+xml
-application/mbms-user-service-description+xml
-application/mbox mbox
-application/media_control+xml
-application/mediaservercontrol+xml mscml
-application/mikey
-application/moss-keys
-application/moss-signature
-application/mosskey-data
-application/mosskey-request
-application/mp4 mp4s
-application/mpeg4-generic
-application/mpeg4-iod
-application/mpeg4-iod-xmt
-application/msaccess mdb
-application/msword doc dot
-application/mxf mxf
-application/nasdata
-application/news-checkgroups
-application/news-groupinfo
-application/news-transmission
-application/nss
-application/ocsp-request
-application/ocsp-response
-application/octet-stream bin bpk deploy dist distz dmg dms dump elc iso lha lrf lzh pkg so
-application/oda oda
-application/oebps-package+xml opf
-application/ogg ogg ogx
-application/onenote onepkg onetmp onetoc onetoc2
-application/parityfec
-application/patch-ops-error+xml xer
-application/pdf pdf
-application/pgp-encrypted pgp
-application/pgp-keys key
-application/pgp-signature asc pgp sig
-application/pics-rules prf
-application/pidf+xml
-application/pidf-diff+xml
-application/pkcs10 p10
-application/pkcs7-mime p7c p7m
-application/pkcs7-signature p7s
-application/pkix-cert cer
-application/pkix-crl crl
-application/pkix-pkipath pkipath
-application/pkixcmp pki
-application/pls+xml pls
-application/poc-settings+xml
-application/postscript ai eps ps
-application/prs.alvestrand.titrax-sheet
-application/prs.cww cww
-application/prs.nprend
-application/prs.plucker
-application/qsig
-application/rar rar
-application/rdf+xml rdf
-application/reginfo+xml rif
-application/relax-ng-compact-syntax rnc
-application/remote-printing
-application/resource-lists+xml rl
-application/resource-lists-diff+xml rld
-application/riscos
-application/rlmi+xml
-application/rls-services+xml rs
-application/rsd+xml rsd
-application/rss+xml rss
-application/rtf rtf
-application/rtx
-application/samlassertion+xml
-application/samlmetadata+xml
-application/sbml+xml sbml
-application/scvp-cv-request scq
-application/scvp-cv-response scs
-application/scvp-vp-request spq
-application/scvp-vp-response spp
-application/sdp sdp
-application/set-payment
-application/set-payment-initiation setpay
-application/set-registration
-application/set-registration-initiation setreg
-application/sgml
-application/sgml-open-catalog
-application/shf+xml shf
-application/sieve
-application/simple-filter+xml
-application/simple-message-summary
-application/simplesymbolcontainer
-application/slate
-application/smil smi smil
-application/smil+xml smi smil
-application/soap+fastinfoset
-application/soap+xml
-application/sparql-query rq
-application/sparql-results+xml srx
-application/spirits-event+xml
-application/srgs gram
-application/srgs+xml grxml
-application/ssml+xml ssml
-application/timestamp-query
-application/timestamp-reply
-application/tve-trigger
-application/ulpfec
-application/vemmi
-application/vividence.scriptfile
-application/vnd.3gpp.bsf+xml
-application/vnd.3gpp.pic-bw-large plb
-application/vnd.3gpp.pic-bw-small psb
-application/vnd.3gpp.pic-bw-var pvb
-application/vnd.3gpp.sms
-application/vnd.3gpp2.bcmcsinfo+xml
-application/vnd.3gpp2.sms
-application/vnd.3gpp2.tcap tcap
-application/vnd.3m.post-it-notes pwn
-application/vnd.accpac.simply.aso aso
-application/vnd.accpac.simply.imp imp
-application/vnd.acucobol acu
-application/vnd.acucorp acutc atc
-application/vnd.adobe.air-application-installer-package+zip air
-application/vnd.adobe.xdp+xml xdp
-application/vnd.adobe.xfdf xfdf
-application/vnd.aether.imp
-application/vnd.airzip.filesecure.azf azf
-application/vnd.airzip.filesecure.azs azs
-application/vnd.amazon.ebook azw
-application/vnd.americandynamics.acc acc
-application/vnd.amiga.ami ami
-application/vnd.android.package-archive apk
-application/vnd.anser-web-certificate-issue-initiation cii
-application/vnd.anser-web-funds-transfer-initiation fti
-application/vnd.antix.game-component atx
-application/vnd.apple.installer+xml mpkg
-application/vnd.arastra.swi swi
-application/vnd.audiograph aep
-application/vnd.autopackage
-application/vnd.avistar+xml
-application/vnd.blueice.multipass mpm
-application/vnd.bluetooth.ep.oob
-application/vnd.bmi bmi
-application/vnd.businessobjects rep
-application/vnd.cab-jscript
-application/vnd.canon-cpdl
-application/vnd.canon-lips
-application/vnd.cendio.thinlinc.clientconf
-application/vnd.chemdraw+xml cdxml
-application/vnd.chipnuts.karaoke-mmd mmd
-application/vnd.cinderella cdy
-application/vnd.cirpack.isdn-ext
-application/vnd.claymore cla
-application/vnd.clonk.c4group c4d c4f c4g c4p c4u
-application/vnd.commerce-battelle
-application/vnd.commonspace csp
-application/vnd.contact.cmsg cdbcmsg
-application/vnd.cosmocaller cmc
-application/vnd.crick.clicker clkx
-application/vnd.crick.clicker.keyboard clkk
-application/vnd.crick.clicker.palette clkp
-application/vnd.crick.clicker.template clkt
-application/vnd.crick.clicker.wordbank clkw
-application/vnd.criticaltools.wbs+xml wbs
-application/vnd.ctc-posml pml
-application/vnd.ctct.ws+xml
-application/vnd.cups-pdf
-application/vnd.cups-postscript
-application/vnd.cups-ppd ppd
-application/vnd.cups-raster
-application/vnd.cups-raw
-application/vnd.curl.car car
-application/vnd.curl.pcurl pcurl
-application/vnd.cybank
-application/vnd.data-vision.rdz rdz
-application/vnd.denovo.fcselayout-link fe_launch
-application/vnd.dir-bi.plate-dl-nosuffix
-application/vnd.dna dna
-application/vnd.dolby.mlp mlp
-application/vnd.dolby.mobile.1
-application/vnd.dolby.mobile.2
-application/vnd.dpgraph dpg
-application/vnd.dreamfactory dfac
-application/vnd.dvb.esgcontainer
-application/vnd.dvb.ipdcdftnotifaccess
-application/vnd.dvb.ipdcesgaccess
-application/vnd.dvb.ipdcroaming
-application/vnd.dvb.iptv.alfec-base
-application/vnd.dvb.iptv.alfec-enhancement
-application/vnd.dvb.notif-aggregate-root+xml
-application/vnd.dvb.notif-container+xml
-application/vnd.dvb.notif-generic+xml
-application/vnd.dvb.notif-ia-msglist+xml
-application/vnd.dvb.notif-ia-registration-request+xml
-application/vnd.dvb.notif-ia-registration-response+xml
-application/vnd.dvb.notif-init+xml
-application/vnd.dxr
-application/vnd.dynageo geo
-application/vnd.ecdis-update
-application/vnd.ecowin.chart mag
-application/vnd.ecowin.filerequest
-application/vnd.ecowin.fileupdate
-application/vnd.ecowin.series
-application/vnd.ecowin.seriesrequest
-application/vnd.ecowin.seriesupdate
-application/vnd.emclient.accessrequest+xml
-application/vnd.enliven nml
-application/vnd.epson.esf esf
-application/vnd.epson.msf msf
-application/vnd.epson.quickanime qam
-application/vnd.epson.salt slt
-application/vnd.epson.ssf ssf
-application/vnd.ericsson.quickcall
-application/vnd.eszigno3+xml es3 et3
-application/vnd.etsi.aoc+xml
-application/vnd.etsi.cug+xml
-application/vnd.etsi.iptvcommand+xml
-application/vnd.etsi.iptvdiscovery+xml
-application/vnd.etsi.iptvprofile+xml
-application/vnd.etsi.iptvsad-bc+xml
-application/vnd.etsi.iptvsad-cod+xml
-application/vnd.etsi.iptvsad-npvr+xml
-application/vnd.etsi.iptvueprofile+xml
-application/vnd.etsi.mcid+xml
-application/vnd.etsi.sci+xml
-application/vnd.etsi.simservs+xml
-application/vnd.eudora.data
-application/vnd.ezpix-album ez2
-application/vnd.ezpix-package ez3
-application/vnd.f-secure.mobile
-application/vnd.fdf fdf
-application/vnd.fdsn.mseed mseed
-application/vnd.fdsn.seed dataless seed
-application/vnd.ffsns
-application/vnd.fints
-application/vnd.flographit gph
-application/vnd.fluxtime.clip ftc
-application/vnd.font-fontforge-sfd
-application/vnd.framemaker book fm frame maker
-application/vnd.frogans.fnc fnc
-application/vnd.frogans.ltf ltf
-application/vnd.fsc.weblaunch fsc
-application/vnd.fujitsu.oasys oas
-application/vnd.fujitsu.oasys2 oa2
-application/vnd.fujitsu.oasys3 oa3
-application/vnd.fujitsu.oasysgp fg5
-application/vnd.fujitsu.oasysprs bh2
-application/vnd.fujixerox.art-ex
-application/vnd.fujixerox.art4
-application/vnd.fujixerox.ddd ddd
-application/vnd.fujixerox.docuworks xdw
-application/vnd.fujixerox.docuworks.binder xbd
-application/vnd.fujixerox.hbpl
-application/vnd.fut-misnet
-application/vnd.fuzzysheet fzs
-application/vnd.genomatix.tuxedo txd
-application/vnd.geogebra.file ggb
-application/vnd.geogebra.tool ggt
-application/vnd.geometry-explorer gex gre
-application/vnd.gmx gmx
-application/vnd.google-earth.kml+xml kml
-application/vnd.google-earth.kmz kmz
-application/vnd.grafeq gqf gqs
-application/vnd.gridmp
-application/vnd.groove-account gac
-application/vnd.groove-help ghf
-application/vnd.groove-identity-message gim
-application/vnd.groove-injector grv
-application/vnd.groove-tool-message gtm
-application/vnd.groove-tool-template tpl
-application/vnd.groove-vcard vcg
-application/vnd.handheld-entertainment+xml zmm
-application/vnd.hbci hbci
-application/vnd.hcl-bireports
-application/vnd.hhe.lesson-player les
-application/vnd.hp-hpgl hpgl
-application/vnd.hp-hpid hpid
-application/vnd.hp-hps hps
-application/vnd.hp-jlyt jlt
-application/vnd.hp-pcl pcl
-application/vnd.hp-pclxl pclxl
-application/vnd.httphone
-application/vnd.hydrostatix.sof-data sfd-hdstx
-application/vnd.hzn-3d-crossword x3d
-application/vnd.ibm.afplinedata
-application/vnd.ibm.electronic-media
-application/vnd.ibm.minipay mpy
-application/vnd.ibm.modcap afp list3820 listafp
-application/vnd.ibm.rights-management irm
-application/vnd.ibm.secure-container sc
-application/vnd.iccprofile icc icm
-application/vnd.igloader igl
-application/vnd.immervision-ivp ivp
-application/vnd.immervision-ivu ivu
-application/vnd.informedcontrol.rms+xml
-application/vnd.informix-visionary
-application/vnd.intercon.formnet xpw xpx
-application/vnd.intertrust.digibox
-application/vnd.intertrust.nncp
-application/vnd.intu.qbo qbo
-application/vnd.intu.qfx qfx
-application/vnd.iptc.g2.conceptitem+xml
-application/vnd.iptc.g2.knowledgeitem+xml
-application/vnd.iptc.g2.newsitem+xml
-application/vnd.iptc.g2.packageitem+xml
-application/vnd.ipunplugged.rcprofile rcprofile
-application/vnd.irepository.package+xml irp
-application/vnd.is-xpr xpr
-application/vnd.jam jam
-application/vnd.japannet-directory-service
-application/vnd.japannet-jpnstore-wakeup
-application/vnd.japannet-payment-wakeup
-application/vnd.japannet-registration
-application/vnd.japannet-registration-wakeup
-application/vnd.japannet-setstore-wakeup
-application/vnd.japannet-verification
-application/vnd.japannet-verification-wakeup
-application/vnd.jcp.javame.midlet-rms rms
-application/vnd.jisp jisp
-application/vnd.joost.joda-archive joda
-application/vnd.kahootz ktr ktz
-application/vnd.kde.karbon karbon
-application/vnd.kde.kchart chrt
-application/vnd.kde.kformula kfo
-application/vnd.kde.kivio flw
-application/vnd.kde.kontour kon
-application/vnd.kde.kpresenter kpr kpt
-application/vnd.kde.kspread ksp
-application/vnd.kde.kword kwd kwt
-application/vnd.kenameaapp htke
-application/vnd.kidspiration kia
-application/vnd.kinar kne knp
-application/vnd.koan skd skm skp skt
-application/vnd.kodak-descriptor sse
-application/vnd.liberty-request+xml
-application/vnd.llamagraphics.life-balance.desktop lbd
-application/vnd.llamagraphics.life-balance.exchange+xml lbe
-application/vnd.lotus-1-2-3 123
-application/vnd.lotus-approach apr
-application/vnd.lotus-freelance pre
-application/vnd.lotus-notes nsf
-application/vnd.lotus-organizer org
-application/vnd.lotus-screencam scm
-application/vnd.lotus-wordpro lwp
-application/vnd.macports.portpkg portpkg
-application/vnd.marlin.drm.actiontoken+xml
-application/vnd.marlin.drm.conftoken+xml
-application/vnd.marlin.drm.license+xml
-application/vnd.marlin.drm.mdcf
-application/vnd.mcd mcd
-application/vnd.medcalcdata mc1
-application/vnd.mediastation.cdkey cdkey
-application/vnd.meridian-slingshot
-application/vnd.mfer mwf
-application/vnd.mfmp mfm
-application/vnd.micrografx.flo flo
-application/vnd.micrografx.igx igx
-application/vnd.mif mif
-application/vnd.minisoft-hp3000-save
-application/vnd.mitsubishi.misty-guard.trustweb
-application/vnd.mobius.daf daf
-application/vnd.mobius.dis dis
-application/vnd.mobius.mbk mbk
-application/vnd.mobius.mqy mqy
-application/vnd.mobius.msl msl
-application/vnd.mobius.plc plc
-application/vnd.mobius.txf txf
-application/vnd.mophun.application mpn
-application/vnd.mophun.certificate mpc
-application/vnd.motorola.flexsuite
-application/vnd.motorola.flexsuite.adsi
-application/vnd.motorola.flexsuite.fis
-application/vnd.motorola.flexsuite.gotap
-application/vnd.motorola.flexsuite.kmr
-application/vnd.motorola.flexsuite.ttc
-application/vnd.motorola.flexsuite.wem
-application/vnd.motorola.iprm
-application/vnd.mozilla.xul+xml xul
-application/vnd.ms-artgalry cil
-application/vnd.ms-asf
-application/vnd.ms-cab-compressed cab
-application/vnd.ms-excel xla xlb xlc xlm xls xlt xlw
+application/1d-interleaved-parityfec
+application/3gpp-ims+xml
+application/CSTAdata+xml
+application/EDI-Consent
+application/EDI-X12
+application/EDIFACT
+application/H224
+application/activemessage
+application/andrew-inset ez
+application/annodex anx
+application/applefile
+application/applixware aw
+application/atom+xml atom
+application/atomcat+xml atomcat
+application/atomdeleted+xml
+application/atomicmail
+application/atomserv+xml atomsrv
+application/atomsvc+xml atomsvc
+application/auth-policy+xml
+application/batch-SMTP
+application/batch-smtp
+application/bbolin lin
+application/beep+xml
+application/calendar+xml
+application/cals-1840
+application/ccmp+xml
+application/ccxml+xml ccxml
+application/cdmi-capability cdmia
+application/cdmi-container cdmic
+application/cdmi-domain cdmid
+application/cdmi-object cdmio
+application/cdmi-queue cdmiq
+application/cea-2018+xml
+application/cellml+xml
+application/cfw
+application/cnrp+xml
+application/commonground
+application/conference-info+xml
+application/cpl+xml
+application/csta+xml
+application/cstadata+xml
+application/cu-seeme cu
+application/cybercash
+application/davmount+xml davmount
+application/dca-rft
+application/dec-dx
+application/dialog-info+xml
+application/dicom dcm
+application/dns
+application/docbook+xml dbk
+application/dskpp+xml
+application/dsptype tsp
+application/dssc+der dssc
+application/dssc+xml xdssc
+application/dvcs
+application/ecmascript ecma es
+application/edi-consent
+application/edi-x12
+application/edifact
+application/emma+xml emma
+application/epp+xml
+application/epub+zip epub
+application/eshop
+application/example
+application/exi exi
+application/fastinfoset
+application/fastsoap
+application/fdt+xml
+application/fits
+application/font-tdpfr pfr
+application/framework-attributes+xml
+application/futuresplash spl
+application/ghostview
+application/gml+xml gml
+application/gpx+xml gpx
+application/gxf gxf
+application/gzip
+application/h224
+application/held+xml
+application/hta hta
+application/http
+application/hyperstudio stk
+application/ibe-key-request+xml
+application/ibe-pkg-reply+xml
+application/ibe-pp-data
+application/iges
+application/im-iscomposing+xml
+application/index
+application/index.cmd
+application/index.obj
+application/index.response
+application/index.vnd
+application/inkml+xml ink inkml
+application/iotp
+application/ipfix ipfix
+application/ipp
+application/isup
+application/java-archive jar
+application/java-serialized-object ser
+application/java-vm class
+application/javascript js
+application/json json
+application/jsonml+json jsonml
+application/kpml-request+xml
+application/kpml-response+xml
+application/link-format
+application/lost+xml lostxml
+application/lostsync+xml
+application/m3g m3g
+application/mac-binhex40 hqx
+application/mac-compactpro cpt
+application/macwriteii
+application/mads+xml mads
+application/marc mrc
+application/marcxml+xml mrcx
+application/mathematica ma mb nb nbp
+application/mathml+xml mathml
+application/mathml-content+xml
+application/mathml-presentation+xml
+application/mbms-associated-procedure-description+xml
+application/mbms-deregister+xml
+application/mbms-envelope+xml
+application/mbms-msk+xml
+application/mbms-msk-response+xml
+application/mbms-protection-description+xml
+application/mbms-reception-report+xml
+application/mbms-register+xml
+application/mbms-register-response+xml
+application/mbms-user-service-description+xml
+application/mbox mbox
+application/media-policy-dataset+xml
+application/media_control+xml
+application/mediaservercontrol+xml mscml
+application/metalink+xml metalink
+application/metalink4+xml meta4
+application/mets+xml mets
+application/mikey
+application/mods+xml mods
+application/moss-keys
+application/moss-signature
+application/mosskey-data
+application/mosskey-request
+application/mp21 m21 mp21
+application/mp4 mp4s
+application/mpeg4-generic
+application/mpeg4-iod
+application/mpeg4-iod-xmt
+application/ms-tnef
+application/msaccess mdb
+application/msc-ivr+xml
+application/msc-mixer+xml
+application/msword doc dot
+application/mxf mxf
+application/nasdata
+application/news-checkgroups
+application/news-groupinfo
+application/news-message-id
+application/news-transmission
+application/nlsml+xml
+application/nss
+application/ocsp-request
+application/ocsp-response
+application/octet-stream bin bpk deploy dist distz dmg dms dump elc iso lha lrf lzh mar pkg so
+application/oda oda
+application/oebps-package+xml opf
+application/ogg ogg ogx
+application/omdoc+xml omdoc
+application/onenote one onepkg onetmp onetoc onetoc2
+application/oxps oxps
+application/parityfec
+application/patch-ops-error+xml xer
+application/pdf pdf
+application/pgp-encrypted asc pgp
+application/pgp-keys key
+application/pgp-signature asc pgp sig
+application/pics-rules prf
+application/pidf+xml
+application/pidf-diff+xml
+application/pkcs10 p10
+application/pkcs7-mime p7c p7m
+application/pkcs7-signature p7s
+application/pkcs8 p8
+application/pkix-attr-cert ac
+application/pkix-cert cer
+application/pkix-crl crl
+application/pkix-pkipath pkipath
+application/pkixcmp pki
+application/pls+xml pls
+application/poc-settings+xml
+application/postscript ai eps eps2 eps3 epsf epsi ps
+application/prs.alvestrand.titrax-sheet
+application/prs.cww cww
+application/prs.nprend
+application/prs.plucker
+application/prs.rdf-xml-crypt
+application/prs.xsf+xml
+application/pskc+xml pskcxml
+application/qsig
+application/raptorfec
+application/rar rar
+application/rdf+xml rdf
+application/reginfo+xml rif
+application/relax-ng-compact-syntax rnc
+application/remote-printing
+application/resource-lists+xml rl
+application/resource-lists-diff+xml rld
+application/riscos
+application/rlmi+xml
+application/rls-services+xml rs
+application/rpki-ghostbusters gbr
+application/rpki-manifest mft
+application/rpki-roa roa
+application/rpki-updown
+application/rsd+xml rsd
+application/rss+xml rss
+application/rtf rtf
+application/rtx
+application/samlassertion+xml
+application/samlmetadata+xml
+application/sbml+xml sbml
+application/scvp-cv-request scq
+application/scvp-cv-response scs
+application/scvp-vp-request spq
+application/scvp-vp-response spp
+application/sdp sdp
+application/sep+xml
+application/set-payment
+application/set-payment-initiation setpay
+application/set-registration
+application/set-registration-initiation setreg
+application/sgml
+application/sgml-open-catalog
+application/shf+xml shf
+application/sieve
+application/simple-filter+xml
+application/simple-message-summary
+application/simpleSymbolContainer
+application/simplesymbolcontainer
+application/sla stl
+application/slate
+application/smil smi smil
+application/smil+xml smi smil
+application/smpte336m
+application/soap+fastinfoset
+application/soap+xml
+application/sparql-query rq
+application/sparql-results+xml srx
+application/spirits-event+xml
+application/srgs gram
+application/srgs+xml grxml
+application/sru+xml sru
+application/ssdl+xml ssdl
+application/ssml+xml ssml
+application/tamp-apex-update
+application/tamp-apex-update-confirm
+application/tamp-community-update
+application/tamp-community-update-confirm
+application/tamp-error
+application/tamp-sequence-adjust
+application/tamp-sequence-adjust-confirm
+application/tamp-status-query
+application/tamp-status-response
+application/tamp-update
+application/tamp-update-confirm
+application/tei+xml tei teicorpus
+application/thraud+xml tfi
+application/timestamp-query
+application/timestamp-reply
+application/timestamped-data tsd
+application/tve-trigger
+application/ulpfec
+application/vcard+xml
+application/vemmi
+application/vividence.scriptfile
+application/vnd.3M.Post-it-Notes
+application/vnd.3gpp.bsf+xml
+application/vnd.3gpp.pic-bw-large plb
+application/vnd.3gpp.pic-bw-small psb
+application/vnd.3gpp.pic-bw-var pvb
+application/vnd.3gpp.sms
+application/vnd.3gpp2.bcmcsinfo+xml
+application/vnd.3gpp2.sms
+application/vnd.3gpp2.tcap tcap
+application/vnd.3m.post-it-notes pwn
+application/vnd.FloGraphIt
+application/vnd.HandHeld-Entertainment+xml
+application/vnd.Kinar
+application/vnd.MFER
+application/vnd.Mobius.DAF
+application/vnd.Mobius.DIS
+application/vnd.Mobius.MBK
+application/vnd.Mobius.MQY
+application/vnd.Mobius.MSL
+application/vnd.Mobius.PLC
+application/vnd.Mobius.TXF
+application/vnd.Quark.QuarkXPress
+application/vnd.RenLearn.rlprint
+application/vnd.SimTech-MindMapper
+application/vnd.accpac.simply.aso aso
+application/vnd.accpac.simply.imp imp
+application/vnd.acucobol acu
+application/vnd.acucorp acutc atc
+application/vnd.adobe.air-application-installer-package+zip air
+application/vnd.adobe.formscentral.fcdt fcdt
+application/vnd.adobe.fxp fxp fxpl
+application/vnd.adobe.partial-upload
+application/vnd.adobe.xdp+xml xdp
+application/vnd.adobe.xfdf xfdf
+application/vnd.aether.imp
+application/vnd.ah-barcode
+application/vnd.ahead.space ahead
+application/vnd.airzip.filesecure.azf azf
+application/vnd.airzip.filesecure.azs azs
+application/vnd.amazon.ebook azw
+application/vnd.americandynamics.acc acc
+application/vnd.amiga.ami ami
+application/vnd.amundsen.maze+xml
+application/vnd.android.package-archive apk
+application/vnd.anser-web-certificate-issue-initiation cii
+application/vnd.anser-web-funds-transfer-initiation fti
+application/vnd.antix.game-component atx
+application/vnd.apple.installer+xml mpkg
+application/vnd.apple.mpegurl m3u8
+application/vnd.arastra.swi swi
+application/vnd.aristanetworks.swi swi
+application/vnd.astraea-software.iota iota
+application/vnd.audiograph aep
+application/vnd.autopackage
+application/vnd.avistar+xml
+application/vnd.balsamiq.bmml+xml
+application/vnd.blueice.multipass mpm
+application/vnd.bluetooth.ep.oob
+application/vnd.bmi bmi
+application/vnd.businessobjects rep
+application/vnd.cab-jscript
+application/vnd.canon-cpdl
+application/vnd.canon-lips
+application/vnd.cendio.thinlinc.clientconf
+application/vnd.century-systems.tcp_stream
+application/vnd.chemdraw+xml cdxml
+application/vnd.chipnuts.karaoke-mmd mmd
+application/vnd.cinderella cdy
+application/vnd.cirpack.isdn-ext
+application/vnd.claymore cla
+application/vnd.cloanto.rp9 rp9
+application/vnd.clonk.c4group c4d c4f c4g c4p c4u
+application/vnd.cluetrust.cartomobile-config c11amc
+application/vnd.cluetrust.cartomobile-config-pkg c11amz
+application/vnd.collection+json
+application/vnd.collection.next+json
+application/vnd.commerce-battelle
+application/vnd.commonspace csp
+application/vnd.comsocaller
+application/vnd.contact.cmsg cdbcmsg
+application/vnd.cosmocaller cmc
+application/vnd.crick.clicker clkx
+application/vnd.crick.clicker.keyboard clkk
+application/vnd.crick.clicker.palette clkp
+application/vnd.crick.clicker.template clkt
+application/vnd.crick.clicker.wordbank clkw
+application/vnd.criticaltools.wbs+xml wbs
+application/vnd.ctc-posml pml
+application/vnd.ctct.ws+xml
+application/vnd.cups-pdf
+application/vnd.cups-postscript
+application/vnd.cups-ppd ppd
+application/vnd.cups-raster
+application/vnd.cups-raw
+application/vnd.curl
+application/vnd.curl.car car
+application/vnd.curl.pcurl pcurl
+application/vnd.cyan.dean.root+xml
+application/vnd.cybank
+application/vnd.dart dart
+application/vnd.data-vision.rdz rdz
+application/vnd.dece.data uvd uvf uvvd uvvf
+application/vnd.dece.ttml+xml uvt uvvt
+application/vnd.dece.unspecified uvvx uvx
+application/vnd.dece.zip uvvz uvz
+application/vnd.denovo.fcselayout-link fe_launch
+application/vnd.dir-bi.plate-dl-nosuffix
+application/vnd.dm.delegation+xml
+application/vnd.dna dna
+application/vnd.dolby.mlp mlp
+application/vnd.dolby.mobile.1
+application/vnd.dolby.mobile.2
+application/vnd.dpgraph dpg
+application/vnd.dreamfactory dfac
+application/vnd.ds-keypoint kpxx
+application/vnd.dtg.local
+application/vnd.dtg.local.flash
+application/vnd.dtg.local.html
+application/vnd.dvb.ait ait
+application/vnd.dvb.dvbj
+application/vnd.dvb.esgcontainer
+application/vnd.dvb.ipdcdftnotifaccess
+application/vnd.dvb.ipdcesgaccess
+application/vnd.dvb.ipdcesgaccess2
+application/vnd.dvb.ipdcesgpdd
+application/vnd.dvb.ipdcroaming
+application/vnd.dvb.iptv.alfec-base
+application/vnd.dvb.iptv.alfec-enhancement
+application/vnd.dvb.notif-aggregate-root+xml
+application/vnd.dvb.notif-container+xml
+application/vnd.dvb.notif-generic+xml
+application/vnd.dvb.notif-ia-msglist+xml
+application/vnd.dvb.notif-ia-registration-request+xml
+application/vnd.dvb.notif-ia-registration-response+xml
+application/vnd.dvb.notif-init+xml
+application/vnd.dvb.pfr
+application/vnd.dvb.service svc
+application/vnd.dxr
+application/vnd.dynageo geo
+application/vnd.easykaraoke.cdgdownload
+application/vnd.ecdis-update
+application/vnd.ecowin.chart mag
+application/vnd.ecowin.filerequest
+application/vnd.ecowin.fileupdate
+application/vnd.ecowin.series
+application/vnd.ecowin.seriesrequest
+application/vnd.ecowin.seriesupdate
+application/vnd.emclient.accessrequest+xml
+application/vnd.enliven nml
+application/vnd.eprints.data+xml
+application/vnd.epson.esf esf
+application/vnd.epson.msf msf
+application/vnd.epson.quickanime qam
+application/vnd.epson.salt slt
+application/vnd.epson.ssf ssf
+application/vnd.ericsson.quickcall
+application/vnd.eszigno3+xml es3 et3
+application/vnd.etsi.aoc+xml
+application/vnd.etsi.cug+xml
+application/vnd.etsi.iptvcommand+xml
+application/vnd.etsi.iptvdiscovery+xml
+application/vnd.etsi.iptvprofile+xml
+application/vnd.etsi.iptvsad-bc+xml
+application/vnd.etsi.iptvsad-cod+xml
+application/vnd.etsi.iptvsad-npvr+xml
+application/vnd.etsi.iptvservice+xml
+application/vnd.etsi.iptvsync+xml
+application/vnd.etsi.iptvueprofile+xml
+application/vnd.etsi.mcid+xml
+application/vnd.etsi.overload-control-policy-dataset+xml
+application/vnd.etsi.sci+xml
+application/vnd.etsi.simservs+xml
+application/vnd.etsi.tsl+xml
+application/vnd.etsi.tsl.der
+application/vnd.eudora.data
+application/vnd.ezpix-album ez2
+application/vnd.ezpix-package ez3
+application/vnd.f-secure.mobile
+application/vnd.fdf fdf
+application/vnd.fdsn.mseed mseed
+application/vnd.fdsn.seed dataless seed
+application/vnd.ffsns
+application/vnd.fints
+application/vnd.flographit gph
+application/vnd.fluxtime.clip ftc
+application/vnd.font-fontforge-sfd
+application/vnd.framemaker book fm frame maker
+application/vnd.frogans.fnc fnc
+application/vnd.frogans.ltf ltf
+application/vnd.fsc.weblaunch fsc
+application/vnd.fujitsu.oasys oas
+application/vnd.fujitsu.oasys2 oa2
+application/vnd.fujitsu.oasys3 oa3
+application/vnd.fujitsu.oasysgp fg5
+application/vnd.fujitsu.oasysprs bh2
+application/vnd.fujixerox.ART-EX
+application/vnd.fujixerox.ART4
+application/vnd.fujixerox.HBPL
+application/vnd.fujixerox.art-ex
+application/vnd.fujixerox.art4
+application/vnd.fujixerox.ddd ddd
+application/vnd.fujixerox.docuworks xdw
+application/vnd.fujixerox.docuworks.binder xbd
+application/vnd.fujixerox.hbpl
+application/vnd.fut-misnet
+application/vnd.fuzzysheet fzs
+application/vnd.genomatix.tuxedo txd
+application/vnd.geocube+xml
+application/vnd.geogebra.file ggb
+application/vnd.geogebra.tool ggt
+application/vnd.geometry-explorer gex gre
+application/vnd.geonext gxt
+application/vnd.geoplan g2w
+application/vnd.geospace g3w
+application/vnd.globalplatform.card-content-mgt
+application/vnd.globalplatform.card-content-mgt-response
+application/vnd.gmx gmx
+application/vnd.google-earth.kml+xml kml
+application/vnd.google-earth.kmz kmz
+application/vnd.grafeq gqf gqs
+application/vnd.gridmp
+application/vnd.groove-account gac
+application/vnd.groove-help ghf
+application/vnd.groove-identity-message gim
+application/vnd.groove-injector grv
+application/vnd.groove-tool-message gtm
+application/vnd.groove-tool-template tpl
+application/vnd.groove-vcard vcg
+application/vnd.hal+json
+application/vnd.hal+xml hal
+application/vnd.handheld-entertainment+xml zmm
+application/vnd.hbci hbci
+application/vnd.hcl-bireports
+application/vnd.hhe.lesson-player les
+application/vnd.hp-HPGL
+application/vnd.hp-PCL
+application/vnd.hp-PCLXL
+application/vnd.hp-hpgl hpgl
+application/vnd.hp-hpid hpid
+application/vnd.hp-hps hps
+application/vnd.hp-jlyt jlt
+application/vnd.hp-pcl pcl
+application/vnd.hp-pclxl pclxl
+application/vnd.httphone
+application/vnd.hydrostatix.sof-data sfd-hdstx
+application/vnd.hzn-3d-crossword x3d
+application/vnd.ibm.MiniPay
+application/vnd.ibm.afplinedata
+application/vnd.ibm.electronic-media
+application/vnd.ibm.minipay mpy
+application/vnd.ibm.modcap afp list3820 listafp
+application/vnd.ibm.rights-management irm
+application/vnd.ibm.secure-container sc
+application/vnd.iccprofile icc icm
+application/vnd.ieee.1905
+application/vnd.igloader igl
+application/vnd.immervision-ivp ivp
+application/vnd.immervision-ivu ivu
+application/vnd.informedcontrol.rms+xml
+application/vnd.informix-visionary
+application/vnd.infotech.project
+application/vnd.infotech.project+xml
+application/vnd.innopath.wamp.notification
+application/vnd.insors.igm igm
+application/vnd.intercon.formnet xpw xpx
+application/vnd.intergeo i2g
+application/vnd.intertrust.digibox
+application/vnd.intertrust.nncp
+application/vnd.intu.qbo qbo
+application/vnd.intu.qfx qfx
+application/vnd.iptc.g2.conceptitem+xml
+application/vnd.iptc.g2.knowledgeitem+xml
+application/vnd.iptc.g2.newsitem+xml
+application/vnd.iptc.g2.newsmessage+xml
+application/vnd.iptc.g2.packageitem+xml
+application/vnd.iptc.g2.planningitem+xml
+application/vnd.ipunplugged.rcprofile rcprofile
+application/vnd.irepository.package+xml irp
+application/vnd.is-xpr xpr
+application/vnd.isac.fcs fcs
+application/vnd.jam jam
+application/vnd.japannet-directory-service
+application/vnd.japannet-jpnstore-wakeup
+application/vnd.japannet-payment-wakeup
+application/vnd.japannet-registration
+application/vnd.japannet-registration-wakeup
+application/vnd.japannet-setstore-wakeup
+application/vnd.japannet-verification
+application/vnd.japannet-verification-wakeup
+application/vnd.jcp.javame.midlet-rms rms
+application/vnd.jisp jisp
+application/vnd.joost.joda-archive joda
+application/vnd.jsk.isdn-ngn
+application/vnd.kahootz ktr ktz
+application/vnd.kde.karbon karbon
+application/vnd.kde.kchart chrt
+application/vnd.kde.kformula kfo
+application/vnd.kde.kivio flw
+application/vnd.kde.kontour kon
+application/vnd.kde.kpresenter kpr kpt
+application/vnd.kde.kspread ksp
+application/vnd.kde.kword kwd kwt
+application/vnd.kenameaapp htke
+application/vnd.kidspiration kia
+application/vnd.kinar kne knp
+application/vnd.koan skd skm skp skt
+application/vnd.kodak-descriptor sse
+application/vnd.las.las+xml lasxml
+application/vnd.liberty-request+xml
+application/vnd.llamagraphics.life-balance.desktop lbd
+application/vnd.llamagraphics.life-balance.exchange+xml lbe
+application/vnd.lotus-1-2-3 123
+application/vnd.lotus-approach apr
+application/vnd.lotus-freelance pre
+application/vnd.lotus-notes nsf
+application/vnd.lotus-organizer org
+application/vnd.lotus-screencam scm
+application/vnd.lotus-wordpro lwp
+application/vnd.macports.portpkg portpkg
+application/vnd.marlin.drm.actiontoken+xml
+application/vnd.marlin.drm.conftoken+xml
+application/vnd.marlin.drm.license+xml
+application/vnd.marlin.drm.mdcf
+application/vnd.mcd mcd
+application/vnd.medcalcdata mc1
+application/vnd.mediastation.cdkey cdkey
+application/vnd.meridian-slingshot
+application/vnd.mfer mwf
+application/vnd.mfmp mfm
+application/vnd.micrografx.flo flo
+application/vnd.micrografx.igx igx
+application/vnd.mif mif
+application/vnd.minisoft-hp3000-save
+application/vnd.mitsubishi.misty-guard.trustweb
+application/vnd.mobius.daf daf
+application/vnd.mobius.dis dis
+application/vnd.mobius.mbk mbk
+application/vnd.mobius.mqy mqy
+application/vnd.mobius.msl msl
+application/vnd.mobius.plc plc
+application/vnd.mobius.txf txf
+application/vnd.mophun.application mpn
+application/vnd.mophun.certificate mpc
+application/vnd.motorola.flexsuite
+application/vnd.motorola.flexsuite.adsi
+application/vnd.motorola.flexsuite.fis
+application/vnd.motorola.flexsuite.gotap
+application/vnd.motorola.flexsuite.kmr
+application/vnd.motorola.flexsuite.ttc
+application/vnd.motorola.flexsuite.wem
+application/vnd.motorola.iprm
+application/vnd.mozilla.xul+xml xul
+application/vnd.ms-artgalry cil
+application/vnd.ms-asf
+application/vnd.ms-cab-compressed cab
+application/vnd.ms-excel xla xlb xlc xlm xls xlt xlw
+application/vnd.ms-excel.addin.macroEnabled.12 xlam
application/vnd.ms-excel.addin.macroenabled.12 xlam
-application/vnd.ms-excel.sheet.binary.macroenabled.12 xlsb
+application/vnd.ms-excel.sheet.binary.macroEnabled.12 xlsb
+application/vnd.ms-excel.sheet.binary.macroenabled.12 xlsb
+application/vnd.ms-excel.sheet.macroEnabled.12 xlsm
application/vnd.ms-excel.sheet.macroenabled.12 xlsm
-application/vnd.ms-excel.template.macroenabled.12 xltm
-application/vnd.ms-fontobject eot
-application/vnd.ms-htmlhelp chm
-application/vnd.ms-ims ims
-application/vnd.ms-lrm lrm
-application/vnd.ms-pki.seccat cat
-application/vnd.ms-pki.stl stl
-application/vnd.ms-playready.initiator+xml
-application/vnd.ms-powerpoint pot pps ppt
-application/vnd.ms-powerpoint.addin.macroenabled.12 ppam
-application/vnd.ms-powerpoint.presentation.macroenabled.12 pptm
-application/vnd.ms-powerpoint.slide.macroenabled.12 sldm
-application/vnd.ms-powerpoint.slideshow.macroenabled.12 ppsm
-application/vnd.ms-powerpoint.template.macroenabled.12 potm
-application/vnd.ms-project mpp mpt
-application/vnd.ms-tnef
-application/vnd.ms-wmdrm.lic-chlg-req
-application/vnd.ms-wmdrm.lic-resp
-application/vnd.ms-wmdrm.meter-chlg-req
-application/vnd.ms-wmdrm.meter-resp
-application/vnd.ms-word.document.macroenabled.12 docm
-application/vnd.ms-word.template.macroenabled.12 dotm
-application/vnd.ms-works wcm wdb wks wps
-application/vnd.ms-wpl wpl
-application/vnd.ms-xpsdocument xps
-application/vnd.mseq mseq
-application/vnd.msign
-application/vnd.multiad.creator
-application/vnd.multiad.creator.cif
-application/vnd.music-niff
-application/vnd.musician mus
-application/vnd.muvee.style msty
-application/vnd.ncd.control
-application/vnd.ncd.reference
-application/vnd.nervana
-application/vnd.netfpx
-application/vnd.neurolanguage.nlu nlu
-application/vnd.noblenet-directory nnd
-application/vnd.noblenet-sealer nns
-application/vnd.noblenet-web nnw
-application/vnd.nokia.catalogs
-application/vnd.nokia.conml+wbxml
-application/vnd.nokia.conml+xml
-application/vnd.nokia.iptv.config+xml
-application/vnd.nokia.isds-radio-presets
-application/vnd.nokia.landmark+wbxml
-application/vnd.nokia.landmark+xml
-application/vnd.nokia.landmarkcollection+xml
-application/vnd.nokia.n-gage.ac+xml
-application/vnd.nokia.n-gage.data ngdat
+application/vnd.ms-excel.template.macroEnabled.12 xltm
+application/vnd.ms-excel.template.macroenabled.12 xltm
+application/vnd.ms-fontobject eot
+application/vnd.ms-htmlhelp chm
+application/vnd.ms-ims ims
+application/vnd.ms-lrm lrm
+application/vnd.ms-office.activeX+xml
+application/vnd.ms-officetheme thmx
+application/vnd.ms-pki.seccat cat
+application/vnd.ms-pki.stl stl
+application/vnd.ms-playready.initiator+xml
+application/vnd.ms-powerpoint pot pps ppt
+application/vnd.ms-powerpoint.addin.macroEnabled.12 ppam
+application/vnd.ms-powerpoint.addin.macroenabled.12 ppam
+application/vnd.ms-powerpoint.presentation.macroEnabled.12 pptm
+application/vnd.ms-powerpoint.presentation.macroenabled.12 pptm
+application/vnd.ms-powerpoint.slide.macroEnabled.12 sldm
+application/vnd.ms-powerpoint.slide.macroenabled.12 sldm
+application/vnd.ms-powerpoint.slideshow.macroEnabled.12 ppsm
+application/vnd.ms-powerpoint.slideshow.macroenabled.12 ppsm
+application/vnd.ms-powerpoint.template.macroEnabled.12 potm
+application/vnd.ms-powerpoint.template.macroenabled.12 potm
+application/vnd.ms-project mpp mpt
+application/vnd.ms-tnef
+application/vnd.ms-wmdrm.lic-chlg-req
+application/vnd.ms-wmdrm.lic-resp
+application/vnd.ms-wmdrm.meter-chlg-req
+application/vnd.ms-wmdrm.meter-resp
+application/vnd.ms-word.document.macroEnabled.12 docm
+application/vnd.ms-word.document.macroenabled.12 docm
+application/vnd.ms-word.template.macroEnabled.12 dotm
+application/vnd.ms-word.template.macroenabled.12 dotm
+application/vnd.ms-works wcm wdb wks wps
+application/vnd.ms-wpl wpl
+application/vnd.ms-xpsdocument xps
+application/vnd.mseq mseq
+application/vnd.msign
+application/vnd.multiad.creator
+application/vnd.multiad.creator.cif
+application/vnd.music-niff
+application/vnd.musician mus
+application/vnd.muvee.style msty
+application/vnd.mynfc taglet
+application/vnd.ncd.control
+application/vnd.ncd.reference
+application/vnd.nervana
+application/vnd.netfpx
+application/vnd.neurolanguage.nlu nlu
+application/vnd.nintendo.nitro.rom
+application/vnd.nitf nitf ntf
+application/vnd.noblenet-directory nnd
+application/vnd.noblenet-sealer nns
+application/vnd.noblenet-web nnw
+application/vnd.nokia.catalogs
+application/vnd.nokia.conml+wbxml
+application/vnd.nokia.conml+xml
+application/vnd.nokia.iSDS-radio-presets
+application/vnd.nokia.iptv.config+xml
+application/vnd.nokia.isds-radio-presets
+application/vnd.nokia.landmark+wbxml
+application/vnd.nokia.landmark+xml
+application/vnd.nokia.landmarkcollection+xml
+application/vnd.nokia.n-gage.ac+xml
+application/vnd.nokia.n-gage.data ngdat
application/vnd.nokia.n-gage.symbian.install n-gage
-application/vnd.nokia.ncd
-application/vnd.nokia.pcd+wbxml
-application/vnd.nokia.pcd+xml
-application/vnd.nokia.radio-preset rpst
-application/vnd.nokia.radio-presets rpss
-application/vnd.novadigm.edm edm
-application/vnd.novadigm.edx edx
-application/vnd.novadigm.ext ext
-application/vnd.oasis.opendocument.chart odc
-application/vnd.oasis.opendocument.chart-template otc
-application/vnd.oasis.opendocument.database odb
-application/vnd.oasis.opendocument.formula odf
-application/vnd.oasis.opendocument.formula-template odft
-application/vnd.oasis.opendocument.graphics odg
-application/vnd.oasis.opendocument.graphics-template otg
-application/vnd.oasis.opendocument.image odi
-application/vnd.oasis.opendocument.image-template oti
+application/vnd.nokia.ncd
+application/vnd.nokia.pcd+wbxml
+application/vnd.nokia.pcd+xml
+application/vnd.nokia.radio-preset rpst
+application/vnd.nokia.radio-presets rpss
+application/vnd.novadigm.EDM
+application/vnd.novadigm.EDX
+application/vnd.novadigm.EXT
+application/vnd.novadigm.edm edm
+application/vnd.novadigm.edx edx
+application/vnd.novadigm.ext ext
+application/vnd.ntt-local.content-share
+application/vnd.ntt-local.file-transfer
+application/vnd.ntt-local.sip-ta_remote
+application/vnd.ntt-local.sip-ta_tcp_stream
+application/vnd.oasis.opendocument.chart odc
+application/vnd.oasis.opendocument.chart-template otc
+application/vnd.oasis.opendocument.database odb
+application/vnd.oasis.opendocument.formula odf
+application/vnd.oasis.opendocument.formula-template odft
+application/vnd.oasis.opendocument.graphics odg
+application/vnd.oasis.opendocument.graphics-template otg
+application/vnd.oasis.opendocument.image odi
+application/vnd.oasis.opendocument.image-template oti
application/vnd.oasis.opendocument.presentation odp
-application/vnd.oasis.opendocument.presentation-template otp
+application/vnd.oasis.opendocument.presentation-template otp
application/vnd.oasis.opendocument.spreadsheet ods
-application/vnd.oasis.opendocument.spreadsheet-template ots
-application/vnd.oasis.opendocument.text odt
+application/vnd.oasis.opendocument.spreadsheet-template ots
+application/vnd.oasis.opendocument.text odt
application/vnd.oasis.opendocument.text-master odm otm
-application/vnd.oasis.opendocument.text-template ott
-application/vnd.oasis.opendocument.text-web oth
-application/vnd.obn
-application/vnd.olpc-sugar xo
-application/vnd.oma-scws-config
-application/vnd.oma-scws-http-request
-application/vnd.oma-scws-http-response
-application/vnd.oma.bcast.associated-procedure-parameter+xml
-application/vnd.oma.bcast.drm-trigger+xml
-application/vnd.oma.bcast.imd+xml
-application/vnd.oma.bcast.ltkm
-application/vnd.oma.bcast.notification+xml
-application/vnd.oma.bcast.provisioningtrigger
-application/vnd.oma.bcast.sgboot
-application/vnd.oma.bcast.sgdd+xml
-application/vnd.oma.bcast.sgdu
-application/vnd.oma.bcast.simple-symbol-container
-application/vnd.oma.bcast.smartcard-trigger+xml
-application/vnd.oma.bcast.sprov+xml
-application/vnd.oma.bcast.stkm
-application/vnd.oma.dcd
-application/vnd.oma.dcdc
-application/vnd.oma.dd2+xml dd2
-application/vnd.oma.drm.risd+xml
-application/vnd.oma.group-usage-list+xml
-application/vnd.oma.poc.detailed-progress-report+xml
-application/vnd.oma.poc.final-report+xml
-application/vnd.oma.poc.groups+xml
-application/vnd.oma.poc.invocation-descriptor+xml
-application/vnd.oma.poc.optimized-progress-report+xml
-application/vnd.oma.xcap-directory+xml
-application/vnd.omads-email+xml
-application/vnd.omads-file+xml
-application/vnd.omads-folder+xml
-application/vnd.omaloc-supl-init
-application/vnd.openofficeorg.extension oxt
-application/vnd.openxmlformats-officedocument.presentationml.presentation pptx
-application/vnd.openxmlformats-officedocument.presentationml.slide sldx
-application/vnd.openxmlformats-officedocument.presentationml.slideshow ppsx
-application/vnd.openxmlformats-officedocument.presentationml.template potx
-application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx
-application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx
-application/vnd.openxmlformats-officedocument.wordprocessingml.document docx
-application/vnd.openxmlformats-officedocument.wordprocessingml.template dotx
-application/vnd.osa.netdeploy
-application/vnd.osgi.bundle
-application/vnd.osgi.dp dp
-application/vnd.otps.ct-kip+xml
-application/vnd.palm oprc pdb pqa
-application/vnd.paos.xml
-application/vnd.pg.format str
-application/vnd.pg.osasli ei6
-application/vnd.piaccess.application-licence
-application/vnd.picsel efif
-application/vnd.poc.group-advertisement+xml
-application/vnd.pocketlearn plf
-application/vnd.powerbuilder6 pbd
-application/vnd.powerbuilder6-s
-application/vnd.powerbuilder7
-application/vnd.powerbuilder7-s
-application/vnd.powerbuilder75
-application/vnd.powerbuilder75-s
-application/vnd.preminet
-application/vnd.previewsystems.box box
-application/vnd.proteus.magazine mgz
-application/vnd.publishare-delta-tree qps
-application/vnd.pvi.ptid1 ptid
-application/vnd.pwg-multiplexed
-application/vnd.pwg-xhtml-print+xml
-application/vnd.qualcomm.brew-app-res
-application/vnd.quark.quarkxpress qwd qwt qxb qxd qxl qxt
-application/vnd.rapid
-application/vnd.recordare.musicxml mxl
-application/vnd.recordare.musicxml+xml musicxml
-application/vnd.renlearn.rlprint
-application/vnd.rim.cod cod
-application/vnd.rn-realmedia rm
-application/vnd.route66.link66+xml link66
-application/vnd.ruckus.download
-application/vnd.s3sms
-application/vnd.sbm.cid
-application/vnd.sbm.mid2
-application/vnd.scribus
-application/vnd.sealed.3df
-application/vnd.sealed.csf
-application/vnd.sealed.doc
-application/vnd.sealed.eml
-application/vnd.sealed.mht
-application/vnd.sealed.net
-application/vnd.sealed.ppt
-application/vnd.sealed.tiff
-application/vnd.sealed.xls
-application/vnd.sealedmedia.softseal.html
-application/vnd.sealedmedia.softseal.pdf
-application/vnd.seemail see
-application/vnd.sema sema
-application/vnd.semd semd
-application/vnd.semf semf
-application/vnd.shana.informed.formdata ifm
-application/vnd.shana.informed.formtemplate itp
-application/vnd.shana.informed.interchange iif
-application/vnd.shana.informed.package ipk
-application/vnd.simtech-mindmapper twd twds
-application/vnd.smaf mmf
-application/vnd.smart.teacher teacher
-application/vnd.software602.filler.form+xml
-application/vnd.software602.filler.form-xml-zip
-application/vnd.solent.sdkm+xml sdkd sdkm
-application/vnd.spotfire.dxp dxp
-application/vnd.spotfire.sfs sfs
-application/vnd.sss-cod
-application/vnd.sss-dtf
-application/vnd.sss-ntf
-application/vnd.stardivision.calc sdc
-application/vnd.stardivision.draw sda
-application/vnd.stardivision.impress sdd sdp
-application/vnd.stardivision.math sdf smf
-application/vnd.stardivision.writer sdw vor
-application/vnd.stardivision.writer-global sgl
-application/vnd.street-stream
-application/vnd.sun.wadl+xml
-application/vnd.sun.xml.calc sxc
-application/vnd.sun.xml.calc.template stc
-application/vnd.sun.xml.draw sxd
-application/vnd.sun.xml.draw.template std
-application/vnd.sun.xml.impress sxi
-application/vnd.sun.xml.impress.template sti
-application/vnd.sun.xml.math sxm
-application/vnd.sun.xml.writer sxw
-application/vnd.sun.xml.writer.global sxg
-application/vnd.sun.xml.writer.template stw
-application/vnd.sus-calendar sus susp
-application/vnd.svd svd
-application/vnd.swiftview-ics
-application/vnd.symbian.install sis sisx
-application/vnd.syncml+xml xsm
-application/vnd.syncml.dm+wbxml bdm
-application/vnd.syncml.dm+xml xdm
-application/vnd.syncml.dm.notification
-application/vnd.syncml.ds.notification
-application/vnd.tao.intent-module-archive tao
-application/vnd.tmobile-livetv tmo
-application/vnd.trid.tpt tpt
-application/vnd.triscape.mxs mxs
-application/vnd.trueapp tra
-application/vnd.truedoc
-application/vnd.ufdl ufd ufdl
-application/vnd.uiq.theme utz
-application/vnd.umajin umj
-application/vnd.unity unityweb
-application/vnd.uoml+xml uoml
-application/vnd.uplanet.alert
-application/vnd.uplanet.alert-wbxml
-application/vnd.uplanet.bearer-choice
-application/vnd.uplanet.bearer-choice-wbxml
-application/vnd.uplanet.cacheop
-application/vnd.uplanet.cacheop-wbxml
-application/vnd.uplanet.channel
-application/vnd.uplanet.channel-wbxml
-application/vnd.uplanet.list
-application/vnd.uplanet.list-wbxml
-application/vnd.uplanet.listcmd
-application/vnd.uplanet.listcmd-wbxml
-application/vnd.uplanet.signal
-application/vnd.vcx vcx
-application/vnd.vd-study
-application/vnd.vectorworks
-application/vnd.vidsoft.vidconference
-application/vnd.visio vsd vss vst vsw
-application/vnd.visionary vis
-application/vnd.vividence.scriptfile
-application/vnd.vsf vsf
-application/vnd.wap.sic
-application/vnd.wap.slc
-application/vnd.wap.wbxml wbxml
-application/vnd.wap.wmlc wmlc
-application/vnd.wap.wmlscriptc wmlsc
-application/vnd.webturbo wtb
-application/vnd.wfa.wsc
-application/vnd.wmc
-application/vnd.wmf.bootstrap
-application/vnd.wordperfect wpd
-application/vnd.wqd wqd
-application/vnd.wrq-hp3000-labelled
-application/vnd.wt.stf stf
-application/vnd.wv.csp+wbxml
-application/vnd.wv.csp+xml
-application/vnd.wv.ssp+xml
-application/vnd.xara xar
-application/vnd.xfdl xfdl
-application/vnd.xfdl.webform
-application/vnd.xmi+xml
-application/vnd.xmpie.cpkg
-application/vnd.xmpie.dpkg
-application/vnd.xmpie.plan
-application/vnd.xmpie.ppkg
-application/vnd.xmpie.xlim
-application/vnd.yamaha.hv-dic hvd
-application/vnd.yamaha.hv-script hvs
-application/vnd.yamaha.hv-voice hvp
-application/vnd.yamaha.openscoreformat osf
-application/vnd.yamaha.openscoreformat.osfpvg+xml osfpvg
-application/vnd.yamaha.smaf-audio saf
-application/vnd.yamaha.smaf-phrase spf
-application/vnd.yellowriver-custom-menu cmp
-application/vnd.zul zir zirz
-application/vnd.zzazz.deck+xml zaz
-application/voicexml+xml vxml
-application/watcherinfo+xml
-application/whoispp-query
-application/whoispp-response
-application/winhlp hlp
-application/wita
-application/wordperfect wpd
-application/wordperfect5.1 wp5
-application/wsdl+xml wsdl
-application/wspolicy+xml wspolicy
-application/x-123 wk
-application/x-abiword abw
-application/x-ace-compressed ace
-application/x-apple-diskimage dmg
-application/x-authorware-bin aab u32 vox x32
-application/x-authorware-map aam
-application/x-authorware-seg aas
-application/x-bcpio bcpio
-application/x-bittorrent torrent
-application/x-bzip bz
-application/x-bzip2 boz bz2
-application/x-cdf cdf
-application/x-cdlink vcd
-application/x-chat chat
-application/x-chess-pgn pgn
-application/x-compress
-application/x-cpio cpio
-application/x-csh csh
-application/x-debian-package deb udeb
-application/x-director cct cst cxt dcr dir dxr fgd swa w3d
-application/x-dms dms
-application/x-doom wad
-application/x-dtbncx+xml ncx
-application/x-dtbook+xml dtb
-application/x-dtbresource+xml res
-application/x-dvi dvi
-application/x-flac flac
-application/x-font gsf pcf pcf.Z pfa pfb
-application/x-font-bdf bdf
-application/x-font-dos
-application/x-font-framemaker
-application/x-font-ghostscript gsf
-application/x-font-libgrx
-application/x-font-linux-psf psf
-application/x-font-otf otf
-application/x-font-pcf pcf
-application/x-font-snf snf
-application/x-font-speedo
-application/x-font-sunos-news
-application/x-font-ttf ttc ttf
-application/x-font-type1 afm pfa pfb pfm
-application/x-font-vfont
-application/x-freemind mm
-application/x-futuresplash spl
-application/x-gnumeric gnumeric
-application/x-go-sgf sgf
-application/x-graphing-calculator gcf
-application/x-gtar gtar taz tgz
-application/x-gzip
-application/x-hdf hdf
-application/x-ica ica
-application/x-internet-signup ins isp
-application/x-iphone iii
-application/x-iso9660-image iso
-application/x-java-jnlp-file jnlp
-application/x-javascript js
-application/x-jmol jmz
-application/x-kchart chrt
-application/x-killustrator kil
-application/x-koan skd skm skp skt
-application/x-kpresenter kpr kpt
-application/x-kspread ksp
-application/x-kword kwd kwt
-application/x-latex latex
-application/x-lha lha
-application/x-lzh lzh
-application/x-lzx lzx
-application/x-maker book fb fbdoc fm frame frm maker
-application/x-mif mif
-application/x-mobipocket-ebook mobi prc
-application/x-ms-application application
-application/x-ms-wmd wmd
-application/x-ms-wmz wmz
-application/x-ms-xbap xbap
-application/x-msaccess mdb
-application/x-msbinder obd
-application/x-mscardfile crd
-application/x-msclip clp
-application/x-msdos-program bat com dll exe
-application/x-msdownload bat com dll exe msi
-application/x-msi msi
-application/x-msmediaview m13 m14 mvb
-application/x-msmetafile wmf
-application/x-msmoney mny
-application/x-mspublisher pub
-application/x-msschedule scd
-application/x-msterminal trm
-application/x-mswrite wri
-application/x-netcdf cdf nc
-application/x-ns-proxy-autoconfig pac
-application/x-nwc nwc
-application/x-object o
-application/x-oz-application oza
-application/x-pkcs12 p12 pfx
-application/x-pkcs7-certificates p7b spc
-application/x-pkcs7-certreqresp p7r
-application/x-pkcs7-crl crl
-application/x-python-code pyc pyo
-application/x-quicktimeplayer qtl
-application/x-rar-compressed rar
-application/x-redhat-package-manager rpm
-application/x-sh sh
-application/x-shar shar
-application/x-shockwave-flash swf swfl
-application/x-silverlight-app xap
-application/x-stuffit sit sitx
-application/x-stuffitx sitx
-application/x-sv4cpio sv4cpio
-application/x-sv4crc sv4crc
-application/x-tar tar
-application/x-tcl tcl
-application/x-tex tex
-application/x-tex-gf gf
-application/x-tex-pk pk
-application/x-tex-tfm tfm
-application/x-texinfo texi texinfo
-application/x-trash % bak old sik ~
-application/x-troff roff t tr
-application/x-troff-man man
-application/x-troff-me me
-application/x-troff-ms ms
-application/x-ustar ustar
-application/x-wais-source src
-application/x-wingz wz
-application/x-x509-ca-cert crt der
-application/x-xcf xcf
-application/x-xfig fig
-application/x-xpinstall xpi
-application/x400-bp
-application/xcap-att+xml
-application/xcap-caps+xml
-application/xcap-el+xml
-application/xcap-error+xml
-application/xcap-ns+xml
-application/xcon-conference-info+xml
-application/xcon-conference-info-diff+xml
-application/xenc+xml xenc
-application/xhtml+xml xht xhtml
-application/xhtml-voice+xml
-application/xml xml xsl
-application/xml-dtd dtd
-application/xml-external-parsed-entity
-application/xmpp+xml
-application/xop+xml xop
-application/xslt+xml xslt
-application/xspf+xml xspf
-application/xv+xml mxml xhvml xvm xvml
-application/zip zip
-audio/32kadpcm
-audio/3gpp
-audio/3gpp2
-audio/ac3
-audio/adpcm adp
-audio/amr
-audio/amr-wb
-audio/amr-wb+
-audio/asc
-audio/basic au snd
-audio/bv16
-audio/bv32
-audio/clearmode
-audio/cn
-audio/dat12
-audio/dls
-audio/dsr-es201108
-audio/dsr-es202050
-audio/dsr-es202211
-audio/dsr-es202212
-audio/dvi4
-audio/eac3
-audio/evrc
-audio/evrc-qcp
-audio/evrc0
-audio/evrc1
-audio/evrcb
-audio/evrcb0
-audio/evrcb1
-audio/evrcwb
-audio/evrcwb0
-audio/evrcwb1
-audio/example
-audio/g719
-audio/g722
-audio/g7221
-audio/g723
-audio/g726-16
-audio/g726-24
-audio/g726-32
-audio/g726-40
-audio/g728
-audio/g729
-audio/g7291
-audio/g729d
-audio/g729e
-audio/gsm
-audio/gsm-efr
-audio/ilbc
-audio/l16
-audio/l20
-audio/l24
-audio/l8
-audio/lpc
-audio/midi kar mid midi rmi
-audio/mobile-xmf
-audio/mp4 mp4a
-audio/mp4a-latm
-audio/mpa
-audio/mpa-robust
-audio/mpeg m2a m3a m4a mp2 mp2a mp3 mpega mpga
-audio/mpeg4-generic
-audio/mpegurl m3u
-audio/ogg oga ogg spx
-audio/parityfec
-audio/pcma
-audio/pcma-wb
-audio/pcmu
-audio/pcmu-wb
-audio/prs.sid sid
-audio/qcelp
-audio/red
-audio/rtp-enc-aescm128
-audio/rtp-midi
-audio/rtx
-audio/smv
-audio/smv-qcp
-audio/smv0
-audio/sp-midi
-audio/t140c
-audio/t38
-audio/telephone-event
-audio/tone
-audio/ulpfec
-audio/vdvi
-audio/vmr-wb
-audio/vnd.3gpp.iufp
-audio/vnd.4sb
-audio/vnd.audiokoz
-audio/vnd.celp
-audio/vnd.cisco.nse
-audio/vnd.cmles.radio-events
-audio/vnd.cns.anp1
-audio/vnd.cns.inf1
-audio/vnd.digital-winds eol
-audio/vnd.dlna.adts
-audio/vnd.dolby.heaac.1
-audio/vnd.dolby.heaac.2
-audio/vnd.dolby.mlp
-audio/vnd.dolby.mps
-audio/vnd.dolby.pl2
-audio/vnd.dolby.pl2x
-audio/vnd.dolby.pl2z
-audio/vnd.dts dts
-audio/vnd.dts.hd dtshd
-audio/vnd.everad.plj
-audio/vnd.hns.audio
-audio/vnd.lucent.voice lvp
-audio/vnd.ms-playready.media.pya pya
-audio/vnd.nokia.mobile-xmf
-audio/vnd.nortel.vbk
-audio/vnd.nuera.ecelp4800 ecelp4800
-audio/vnd.nuera.ecelp7470 ecelp7470
-audio/vnd.nuera.ecelp9600 ecelp9600
-audio/vnd.octel.sbc
-audio/vnd.qcelp
-audio/vnd.rhetorex.32kadpcm
-audio/vnd.sealedmedia.softseal.mpeg
-audio/vnd.vmx.cvsd
-audio/vorbis
-audio/vorbis-config
-audio/x-aac aac
-audio/x-aiff aif aifc aiff
-audio/x-gsm gsm
-audio/x-mpegurl m3u
-audio/x-ms-wax wax
-audio/x-ms-wma wma
-audio/x-pn-realaudio ra ram rm
-audio/x-pn-realaudio-plugin rmp
-audio/x-realaudio ra
-audio/x-scpls pls
-audio/x-sd2 sd2
-audio/x-wav wav
-chemical/x-alchemy alc
-chemical/x-cache cac cache
-chemical/x-cache-csf csf
-chemical/x-cactvs-binary cascii cbin ctab
-chemical/x-cdx cdx
-chemical/x-cerius cer
-chemical/x-chem3d c3d
-chemical/x-chemdraw chm
-chemical/x-cif cif
-chemical/x-cmdf cmdf
-chemical/x-cml cml
-chemical/x-compass cpa
-chemical/x-crossfire bsd
-chemical/x-csml csm csml
-chemical/x-ctx ctx
-chemical/x-cxf cef cxf
-chemical/x-embl-dl-nucleotide emb embl
-chemical/x-galactic-spc spc
-chemical/x-gamess-input gam gamin inp
-chemical/x-gaussian-checkpoint fch fchk
-chemical/x-gaussian-cube cub
-chemical/x-gaussian-input gau gjc gjf
-chemical/x-gaussian-log gal
-chemical/x-gcg8-sequence gcg
-chemical/x-genbank gen
-chemical/x-hin hin
-chemical/x-isostar ist istr
-chemical/x-jcamp-dx dx jdx
-chemical/x-kinemage kin
-chemical/x-macmolecule mcm
-chemical/x-macromodel-input mmd mmod
-chemical/x-mdl-molfile mol
-chemical/x-mdl-rdfile rd
-chemical/x-mdl-rxnfile rxn
-chemical/x-mdl-sdfile sd sdf
-chemical/x-mdl-tgf tgf
-chemical/x-mmcif mcif
-chemical/x-mol2 mol2
-chemical/x-molconn-Z b
-chemical/x-mopac-graph gpt
-chemical/x-mopac-input dat mop mopcrt mpc zmt
-chemical/x-mopac-out moo
-chemical/x-mopac-vib mvb
-chemical/x-ncbi-asn1 asn
-chemical/x-ncbi-asn1-ascii ent prt
-chemical/x-ncbi-asn1-binary aso val
-chemical/x-ncbi-asn1-spec asn
-chemical/x-pdb ent pdb
-chemical/x-rosdal ros
-chemical/x-swissprot sw
-chemical/x-vamas-iso14976 vms
-chemical/x-vmd vmd
-chemical/x-xtel xtel
-chemical/x-xyz xyz
-image/bmp bmp
-image/cgm cgm
-image/example
-image/fits
-image/g3fax g3
-image/gif gif
-image/ief ief
-image/jp2
-image/jpeg jpe jpeg jpg
-image/jpm
-image/jpx
-image/naplps
-image/pcx pcx
-image/png png
-image/prs.btif btif
-image/prs.pti
-image/svg+xml svg svgz
-image/t38
-image/tiff tif tiff
-image/tiff-fx
-image/vnd.adobe.photoshop psd
-image/vnd.cns.inf2
-image/vnd.djvu djv djvu
-image/vnd.dwg dwg
-image/vnd.dxf dxf
-image/vnd.fastbidsheet fbs
-image/vnd.fpx fpx
-image/vnd.fst fst
-image/vnd.fujixerox.edmics-mmr mmr
-image/vnd.fujixerox.edmics-rlc rlc
-image/vnd.globalgraphics.pgb
-image/vnd.microsoft.icon
-image/vnd.mix
-image/vnd.ms-modi mdi
-image/vnd.net-fpx npx
-image/vnd.radiance
-image/vnd.sealed.png
-image/vnd.sealedmedia.softseal.gif
-image/vnd.sealedmedia.softseal.jpg
-image/vnd.svf
-image/vnd.wap.wbmp wbmp
-image/vnd.xiff xif
-image/x-cmu-raster ras
-image/x-cmx cmx
-image/x-coreldraw cdr
-image/x-coreldrawpattern pat
-image/x-coreldrawtemplate cdt
-image/x-corelphotopaint cpt
-image/x-freehand fh fh4 fh5 fh7 fhc
-image/x-icon ico
-image/x-jg art
-image/x-jng jng
-image/x-ms-bmp bmp
-image/x-pcx pcx
-image/x-photoshop psd
-image/x-pict pct pic
-image/x-portable-anymap pnm
-image/x-portable-bitmap pbm
-image/x-portable-graymap pgm
-image/x-portable-pixmap ppm
-image/x-rgb rgb
-image/x-xbitmap xbm
-image/x-xpixmap xpm
-image/x-xwindowdump xwd
-message/cpim
-message/delivery-status
-message/disposition-notification
-message/example
-message/external-body
-message/global
-message/global-delivery-status
-message/global-disposition-notification
-message/global-headers
-message/http
-message/imdn+xml
-message/news
-message/partial
-message/rfc822 eml mime
-message/s-http
-message/sip
-message/sipfrag
-message/tracking-status
-message/vnd.si.simp
-model/example
-model/iges iges igs
-model/mesh mesh msh silo
-model/vnd.dwf dwf
-model/vnd.flatland.3dml
-model/vnd.gdl gdl
-model/vnd.gs-gdl
-model/vnd.gs.gdl
-model/vnd.gtw gtw
-model/vnd.moml+xml
-model/vnd.mts mts
-model/vnd.parasolid.transmit.binary
-model/vnd.parasolid.transmit.text
-model/vnd.vtu vtu
-model/vrml vrml wrl
-multipart/alternative
-multipart/appledouble
-multipart/byteranges
-multipart/digest
-multipart/encrypted
-multipart/example
-multipart/form-data
-multipart/header-set
-multipart/mixed
-multipart/parallel
-multipart/related
-multipart/report
-multipart/signed
-multipart/voice-message
-text/calendar ics icz ifb
-text/comma-separated-values csv
-text/css css
-text/csv csv
-text/directory
-text/dns
-text/ecmascript
-text/enriched
-text/example
-text/h323 323
-text/html htm html shtml
-text/iuls uls
-text/javascript
-text/mathml mml
-text/parityfec
-text/plain asc conf def diff in list log pot text txt
-text/prs.fallenstein.rst
-text/prs.lines.tag dsc
-text/red
-text/rfc822-headers
-text/richtext rtx
-text/rtf rtf
-text/rtp-enc-aescm128
-text/rtx
-text/scriptlet sct wsc
-text/sgml sgm sgml
-text/t140
-text/tab-separated-values tsv
-text/texmacs tm ts
-text/troff man me ms roff t tr
-text/ulpfec
-text/uri-list uri uris urls
-text/vnd.abc
-text/vnd.curl curl
-text/vnd.curl.dcurl dcurl
-text/vnd.curl.mcurl mcurl
-text/vnd.curl.scurl scurl
-text/vnd.dmclientscript
-text/vnd.esmertec.theme-descriptor
-text/vnd.fly fly
-text/vnd.fmi.flexstor flx
-text/vnd.graphviz gv
-text/vnd.in3d.3dml 3dml
-text/vnd.in3d.spot spot
-text/vnd.iptc.newsml
-text/vnd.iptc.nitf
-text/vnd.latex-z
-text/vnd.motorola.reflex
-text/vnd.ms-mediapackage
-text/vnd.net2phone.commcenter.command
-text/vnd.si.uricatalogue
-text/vnd.sun.j2me.app-descriptor jad
-text/vnd.trolltech.linguist
-text/vnd.wap.si
-text/vnd.wap.sl
-text/vnd.wap.wml wml
-text/vnd.wap.wmlscript wmls
-text/x-asm asm s
-text/x-bibtex bib
-text/x-c c cc cpp cxx dic h hh
-text/x-c++hdr h++ hh hpp hxx
-text/x-c++src c++ cc cpp cxx
-text/x-chdr h
-text/x-csh csh
-text/x-csrc c
-text/x-fortran f f77 f90 for
-text/x-haskell hs
-text/x-java java
-text/x-java-source java
-text/x-literate-haskell lhs
-text/x-moc moc
-text/x-pascal p pas
-text/x-pcs-gcd gcd
-text/x-perl pl pm
-text/x-psp psp
-text/x-python py
-text/x-setext etx
-text/x-sh sh
-text/x-tcl tcl tk
-text/x-tex cls ltx sty tex
-text/x-uuencode uu
-text/x-vcalendar vcs
-text/x-vcard vcf
-text/xml
-text/xml-external-parsed-entity
-video/3gpp 3gp
-video/3gpp-tt
-video/3gpp2 3g2
-video/bmpeg
-video/bt656
-video/celb
-video/dl dl
-video/dv dif dv
-video/example
-video/fli fli
-video/gl gl
-video/h261 h261
-video/h263 h263
-video/h263-1998
-video/h263-2000
-video/h264 h264
-video/jpeg jpgv
-video/jpeg2000
-video/jpm jpgm jpm
-video/mj2 mj2 mjp2
-video/mp1s
-video/mp2p
-video/mp2t
-video/mp4 mp4 mp4v mpg4
-video/mp4v-es
-video/mpeg m1v m2v mpe mpeg mpg
-video/mpeg4-generic
-video/mpv
-video/nv
-video/ogg ogv
-video/parityfec
-video/pointer
-video/quicktime mov qt
-video/raw
-video/rtp-enc-aescm128
-video/rtx
-video/smpte292m
-video/ulpfec
-video/vc1
-video/vnd.cctv
-video/vnd.dlna.mpeg-tts
-video/vnd.fvt fvt
-video/vnd.hns.video
-video/vnd.iptvforum.1dparityfec-1010
-video/vnd.iptvforum.1dparityfec-2005
-video/vnd.iptvforum.2dparityfec-1010
-video/vnd.iptvforum.2dparityfec-2005
-video/vnd.iptvforum.ttsavc
-video/vnd.iptvforum.ttsmpeg2
-video/vnd.motorola.video
-video/vnd.motorola.videop
-video/vnd.mpegurl m4u mxu
-video/vnd.ms-playready.media.pyv pyv
-video/vnd.nokia.interleaved-multimedia
-video/vnd.nokia.videovoip
-video/vnd.objectvideo
-video/vnd.sealed.mpeg1
-video/vnd.sealed.mpeg4
-video/vnd.sealed.swf
-video/vnd.sealedmedia.softseal.mov
-video/vnd.vivo viv
-video/x-f4v f4v
-video/x-fli fli
-video/x-flv flv
-video/x-la-asf lsf lsx
-video/x-m4v m4v
-video/x-mng mng
-video/x-ms-asf asf asx
-video/x-ms-wm wm
-video/x-ms-wmv wmv
-video/x-ms-wmx wmx
-video/x-ms-wvx wvx
-video/x-msvideo avi
-video/x-sgi-movie movie
-x-conference/x-cooltalk ice
-x-world/x-vrml vrm vrml wrl
+application/vnd.oasis.opendocument.text-template ott
+application/vnd.oasis.opendocument.text-web oth
+application/vnd.obn
+application/vnd.oftn.l10n+json
+application/vnd.oipf.contentaccessdownload+xml
+application/vnd.oipf.contentaccessstreaming+xml
+application/vnd.oipf.cspg-hexbinary
+application/vnd.oipf.dae.svg+xml
+application/vnd.oipf.dae.xhtml+xml
+application/vnd.oipf.mippvcontrolmessage+xml
+application/vnd.oipf.pae.gem
+application/vnd.oipf.spdiscovery+xml
+application/vnd.oipf.spdlist+xml
+application/vnd.oipf.ueprofile+xml
+application/vnd.oipf.userprofile+xml
+application/vnd.olpc-sugar xo
+application/vnd.oma-scws-config
+application/vnd.oma-scws-http-request
+application/vnd.oma-scws-http-response
+application/vnd.oma.bcast.associated-procedure-parameter+xml
+application/vnd.oma.bcast.drm-trigger+xml
+application/vnd.oma.bcast.imd+xml
+application/vnd.oma.bcast.ltkm
+application/vnd.oma.bcast.notification+xml
+application/vnd.oma.bcast.provisioningtrigger
+application/vnd.oma.bcast.sgboot
+application/vnd.oma.bcast.sgdd+xml
+application/vnd.oma.bcast.sgdu
+application/vnd.oma.bcast.simple-symbol-container
+application/vnd.oma.bcast.smartcard-trigger+xml
+application/vnd.oma.bcast.sprov+xml
+application/vnd.oma.bcast.stkm
+application/vnd.oma.cab-address-book+xml
+application/vnd.oma.cab-pcc+xml
+application/vnd.oma.cab-subs-invite+xml
+application/vnd.oma.cab-user-prefs+xml
+application/vnd.oma.dcd
+application/vnd.oma.dcdc
+application/vnd.oma.dd2+xml dd2
+application/vnd.oma.drm.risd+xml
+application/vnd.oma.group-usage-list+xml
+application/vnd.oma.pal+xml
+application/vnd.oma.poc.detailed-progress-report+xml
+application/vnd.oma.poc.final-report+xml
+application/vnd.oma.poc.groups+xml
+application/vnd.oma.poc.invocation-descriptor+xml
+application/vnd.oma.poc.optimized-progress-report+xml
+application/vnd.oma.push
+application/vnd.oma.scidm.messages+xml
+application/vnd.oma.xcap-directory+xml
+application/vnd.omads-email+xml
+application/vnd.omads-file+xml
+application/vnd.omads-folder+xml
+application/vnd.omaloc-supl-init
+application/vnd.openofficeorg.extension oxt
+application/vnd.openxmlformats-officedocument.custom-properties+xml
+application/vnd.openxmlformats-officedocument.customXmlProperties+xml
+application/vnd.openxmlformats-officedocument.drawing+xml
+application/vnd.openxmlformats-officedocument.drawingml.chart+xml
+application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
+application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml
+application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml
+application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml
+application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml
+application/vnd.openxmlformats-officedocument.extended-properties+xml
+application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml
+application/vnd.openxmlformats-officedocument.presentationml.comments+xml
+application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml
+application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml
+application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml
+application/vnd.openxmlformats-officedocument.presentationml.presProps+xml
+application/vnd.openxmlformats-officedocument.presentationml.presentation pptx
+application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
+application/vnd.openxmlformats-officedocument.presentationml.slide sldx
+application/vnd.openxmlformats-officedocument.presentationml.slide+xml
+application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml
+application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml
+application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml
+application/vnd.openxmlformats-officedocument.presentationml.slideshow ppsx
+application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
+application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml
+application/vnd.openxmlformats-officedocument.presentationml.tags+xml
+application/vnd.openxmlformats-officedocument.presentationml.template potx
+application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
+application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx
+application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx
+application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
+application/vnd.openxmlformats-officedocument.theme+xml
+application/vnd.openxmlformats-officedocument.themeOverride+xml
+application/vnd.openxmlformats-officedocument.vmlDrawing
+application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.document docx
+application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.template dotx
+application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml
+application/vnd.openxmlformats-package.core-properties+xml
+application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
+application/vnd.openxmlformats-package.relationships+xml
+application/vnd.orange.indata
+application/vnd.osa.netdeploy
+application/vnd.osgeo.mapguide.package mgp
+application/vnd.osgi.bundle
+application/vnd.osgi.dp dp
+application/vnd.osgi.subsystem esa
+application/vnd.otps.ct-kip+xml
+application/vnd.palm oprc pdb pqa
+application/vnd.paos.xml
+application/vnd.pawaafile paw
+application/vnd.pg.format str
+application/vnd.pg.osasli ei6
+application/vnd.piaccess.application-licence
+application/vnd.picsel efif
+application/vnd.pmi.widget wg
+application/vnd.poc.group-advertisement+xml
+application/vnd.pocketlearn plf
+application/vnd.powerbuilder6 pbd
+application/vnd.powerbuilder6-s
+application/vnd.powerbuilder7
+application/vnd.powerbuilder7-s
+application/vnd.powerbuilder75
+application/vnd.powerbuilder75-s
+application/vnd.preminet
+application/vnd.previewsystems.box box
+application/vnd.proteus.magazine mgz
+application/vnd.publishare-delta-tree qps
+application/vnd.pvi.ptid1 ptid
+application/vnd.pwg-multiplexed
+application/vnd.pwg-xhtml-print+xml
+application/vnd.qualcomm.brew-app-res
+application/vnd.quark.quarkxpress qwd qwt qxb qxd qxl qxt
+application/vnd.quobject-quoxdocument
+application/vnd.radisys.moml+xml
+application/vnd.radisys.msml+xml
+application/vnd.radisys.msml-audit+xml
+application/vnd.radisys.msml-audit-conf+xml
+application/vnd.radisys.msml-audit-conn+xml
+application/vnd.radisys.msml-audit-dialog+xml
+application/vnd.radisys.msml-audit-stream+xml
+application/vnd.radisys.msml-conf+xml
+application/vnd.radisys.msml-dialog+xml
+application/vnd.radisys.msml-dialog-base+xml
+application/vnd.radisys.msml-dialog-fax-detect+xml
+application/vnd.radisys.msml-dialog-fax-sendrecv+xml
+application/vnd.radisys.msml-dialog-group+xml
+application/vnd.radisys.msml-dialog-speech+xml
+application/vnd.radisys.msml-dialog-transform+xml
+application/vnd.rainstor.data
+application/vnd.rapid
+application/vnd.realvnc.bed bed
+application/vnd.recordare.musicxml mxl
+application/vnd.recordare.musicxml+xml musicxml
+application/vnd.renlearn.rlprint
+application/vnd.rig.cryptonote cryptonote
+application/vnd.rim.cod cod
+application/vnd.rn-realmedia rm
+application/vnd.rn-realmedia-vbr rmvb
+application/vnd.route66.link66+xml link66
+application/vnd.rs-274x
+application/vnd.ruckus.download
+application/vnd.s3sms
+application/vnd.sailingtracker.track st
+application/vnd.sbm.cid
+application/vnd.sbm.mid2
+application/vnd.scribus
+application/vnd.sealed.3df
+application/vnd.sealed.csf
+application/vnd.sealed.doc
+application/vnd.sealed.eml
+application/vnd.sealed.mht
+application/vnd.sealed.net
+application/vnd.sealed.ppt
+application/vnd.sealed.tiff
+application/vnd.sealed.xls
+application/vnd.sealedmedia.softseal.html
+application/vnd.sealedmedia.softseal.pdf
+application/vnd.seemail see
+application/vnd.sema sema
+application/vnd.semd semd
+application/vnd.semf semf
+application/vnd.shana.informed.formdata ifm
+application/vnd.shana.informed.formtemplate itp
+application/vnd.shana.informed.interchange iif
+application/vnd.shana.informed.package ipk
+application/vnd.simtech-mindmapper twd twds
+application/vnd.smaf mmf
+application/vnd.smart.notebook
+application/vnd.smart.teacher teacher
+application/vnd.software602.filler.form+xml
+application/vnd.software602.filler.form-xml-zip
+application/vnd.solent.sdkm+xml sdkd sdkm
+application/vnd.spotfire.dxp dxp
+application/vnd.spotfire.sfs sfs
+application/vnd.sss-cod
+application/vnd.sss-dtf
+application/vnd.sss-ntf
+application/vnd.stardivision.calc sdc
+application/vnd.stardivision.chart sds
+application/vnd.stardivision.draw sda
+application/vnd.stardivision.impress sdd sdp
+application/vnd.stardivision.math sdf smf
+application/vnd.stardivision.writer sdw vor
+application/vnd.stardivision.writer-global sgl
+application/vnd.stepmania.package smzip
+application/vnd.stepmania.stepchart sm
+application/vnd.street-stream
+application/vnd.sun.wadl+xml
+application/vnd.sun.xml.calc sxc
+application/vnd.sun.xml.calc.template stc
+application/vnd.sun.xml.draw sxd
+application/vnd.sun.xml.draw.template std
+application/vnd.sun.xml.impress sxi
+application/vnd.sun.xml.impress.template sti
+application/vnd.sun.xml.math sxm
+application/vnd.sun.xml.writer sxw
+application/vnd.sun.xml.writer.global sxg
+application/vnd.sun.xml.writer.template stw
+application/vnd.sus-calendar sus susp
+application/vnd.svd svd
+application/vnd.swiftview-ics
+application/vnd.symbian.install sis sisx
+application/vnd.syncml+xml xsm
+application/vnd.syncml.dm+wbxml bdm
+application/vnd.syncml.dm+xml xdm
+application/vnd.syncml.dm.notification
+application/vnd.syncml.dmddf+wbxml
+application/vnd.syncml.dmddf+xml
+application/vnd.syncml.dmtnds+wbxml
+application/vnd.syncml.dmtnds+xml
+application/vnd.syncml.ds.notification
+application/vnd.tao.intent-module-archive tao
+application/vnd.tcpdump.pcap cap dmp pcap
+application/vnd.tmobile-livetv tmo
+application/vnd.trid.tpt tpt
+application/vnd.triscape.mxs mxs
+application/vnd.trueapp tra
+application/vnd.truedoc
+application/vnd.tve-trigger
+application/vnd.ubisoft.webplayer
+application/vnd.ufdl ufd ufdl
+application/vnd.uiq.theme utz
+application/vnd.umajin umj
+application/vnd.unity unityweb
+application/vnd.uoml+xml uoml
+application/vnd.uplanet.alert
+application/vnd.uplanet.alert-wbxml
+application/vnd.uplanet.bearer-choice
+application/vnd.uplanet.bearer-choice-wbxml
+application/vnd.uplanet.cacheop
+application/vnd.uplanet.cacheop-wbxml
+application/vnd.uplanet.channel
+application/vnd.uplanet.channel-wbxml
+application/vnd.uplanet.list
+application/vnd.uplanet.list-wbxml
+application/vnd.uplanet.listcmd
+application/vnd.uplanet.listcmd-wbxml
+application/vnd.uplanet.signal
+application/vnd.vcx vcx
+application/vnd.vd-study
+application/vnd.vectorworks
+application/vnd.verimatrix.vcas
+application/vnd.vidsoft.vidconference
+application/vnd.visio vsd vss vst vsw
+application/vnd.visionary vis
+application/vnd.vividence.scriptfile
+application/vnd.vsf vsf
+application/vnd.wap.sic
+application/vnd.wap.slc
+application/vnd.wap.wbxml wbxml
+application/vnd.wap.wmlc wmlc
+application/vnd.wap.wmlscriptc wmlsc
+application/vnd.webturbo wtb
+application/vnd.wfa.wsc
+application/vnd.wmc
+application/vnd.wmf.bootstrap
+application/vnd.wolfram.mathematica
+application/vnd.wolfram.mathematica.package
+application/vnd.wolfram.player nbp
+application/vnd.wordperfect wpd
+application/vnd.wordperfect5.1 wp5
+application/vnd.wqd wqd
+application/vnd.wrq-hp3000-labelled
+application/vnd.wt.stf stf
+application/vnd.wv.csp+wbxml
+application/vnd.wv.csp+xml
+application/vnd.wv.ssp+xml
+application/vnd.xara xar
+application/vnd.xfdl xfdl
+application/vnd.xfdl.webform
+application/vnd.xmi+xml
+application/vnd.xmpie.cpkg
+application/vnd.xmpie.dpkg
+application/vnd.xmpie.plan
+application/vnd.xmpie.ppkg
+application/vnd.xmpie.xlim
+application/vnd.yamaha.hv-dic hvd
+application/vnd.yamaha.hv-script hvs
+application/vnd.yamaha.hv-voice hvp
+application/vnd.yamaha.openscoreformat osf
+application/vnd.yamaha.openscoreformat.osfpvg+xml osfpvg
+application/vnd.yamaha.remote-setup
+application/vnd.yamaha.smaf-audio saf
+application/vnd.yamaha.smaf-phrase spf
+application/vnd.yamaha.through-ngn
+application/vnd.yamaha.tunnel-udpencap
+application/vnd.yellowriver-custom-menu cmp
+application/vnd.zul zir zirz
+application/vnd.zzazz.deck+xml zaz
+application/voicexml+xml vxml
+application/vq-rtcpxr
+application/watcherinfo+xml
+application/whoispp-query
+application/whoispp-response
+application/widget wgt
+application/winhlp hlp
+application/wita
+application/wordperfect wpd
+application/wordperfect5.1 wp5
+application/wsdl+xml wsdl
+application/wspolicy+xml wspolicy
+application/x-123 wk
+application/x-7z-compressed 7z
+application/x-abiword abw
+application/x-ace-compressed ace
+application/x-apple-diskimage dmg
+application/x-authorware-bin aab u32 vox x32
+application/x-authorware-map aam
+application/x-authorware-seg aas
+application/x-bcpio bcpio
+application/x-bittorrent torrent
+application/x-blorb blb blorb
+application/x-bzip bz
+application/x-bzip2 boz bz2
+application/x-cab cab
+application/x-cbr cb7 cba cbr cbt cbz
+application/x-cbz cbz
+application/x-cdf cda cdf
+application/x-cdlink vcd
+application/x-cfs-compressed cfs
+application/x-chat chat
+application/x-chess-pgn pgn
+application/x-compress
+application/x-comsol mph
+application/x-conference nsc
+application/x-core
+application/x-cpio cpio
+application/x-csh csh
+application/x-debian-package deb udeb
+application/x-dgc-compressed dgc
+application/x-director cct cst cxt dcr dir dxr fgd swa w3d
+application/x-dms dms
+application/x-doom wad
+application/x-dtbncx+xml ncx
+application/x-dtbook+xml dtb
+application/x-dtbresource+xml res
+application/x-dvi dvi
+application/x-envoy evy
+application/x-eva eva
+application/x-executable
+application/x-flac flac
+application/x-font gsf pcf pcf.Z pfa pfb
+application/x-font-bdf bdf
+application/x-font-dos
+application/x-font-framemaker
+application/x-font-ghostscript gsf
+application/x-font-libgrx
+application/x-font-linux-psf psf
+application/x-font-otf otf
+application/x-font-pcf pcf
+application/x-font-snf snf
+application/x-font-speedo
+application/x-font-sunos-news
+application/x-font-ttf ttc ttf
+application/x-font-type1 afm pfa pfb pfm
+application/x-font-vfont
+application/x-font-woff woff
+application/x-freearc arc
+application/x-freemind mm
+application/x-futuresplash spl
+application/x-ganttproject gan
+application/x-gca-compressed gca
+application/x-glulx ulx
+application/x-gnumeric gnumeric
+application/x-go-sgf sgf
+application/x-gramps-xml gramps
+application/x-graphing-calculator gcf
+application/x-gtar gtar taz tgz
+application/x-gtar-compressed taz tgz
+application/x-gzip
+application/x-hdf hdf
+application/x-hwp hwp
+application/x-ica ica
+application/x-info info
+application/x-install-instructions install
+application/x-internet-signup ins isp
+application/x-iphone iii
+application/x-iso9660-image iso
+application/x-jam jam
+application/x-java-applet
+application/x-java-bean
+application/x-java-jnlp-file jnlp
+application/x-javascript js
+application/x-jmol jmz
+application/x-kchart chrt
+application/x-kdelnk
+application/x-killustrator kil
+application/x-koan skd skm skp skt
+application/x-kpresenter kpr kpt
+application/x-kspread ksp
+application/x-kword kwd kwt
+application/x-latex latex
+application/x-lha lha
+application/x-lyx lyx
+application/x-lzh lzh
+application/x-lzh-compressed lha lzh
+application/x-lzx lzx
+application/x-maker book fb fbdoc fm frame frm maker
+application/x-md5 md5
+application/x-mie mie
+application/x-mif mif
+application/x-mobipocket-ebook mobi prc
+application/x-mpegURL m3u8
+application/x-ms-application application
+application/x-ms-shortcut lnk
+application/x-ms-wmd wmd
+application/x-ms-wmz wmz
+application/x-ms-xbap xbap
+application/x-msaccess mdb
+application/x-msbinder obd
+application/x-mscardfile crd
+application/x-msclip clp
+application/x-msdos-program bat com dll exe
+application/x-msdownload bat com dll exe msi
+application/x-msi msi
+application/x-msmediaview m13 m14 mvb
+application/x-msmetafile emf emz wmf wmz
+application/x-msmoney mny
+application/x-mspublisher pub
+application/x-msschedule scd
+application/x-msterminal trm
+application/x-mswrite wri
+application/x-netcdf cdf nc
+application/x-ns-proxy-autoconfig dat pac
+application/x-nwc nwc
+application/x-nzb nzb
+application/x-object o
+application/x-oz-application oza
+application/x-pkcs12 p12 pfx
+application/x-pkcs7-certificates p7b spc
+application/x-pkcs7-certreqresp p7r
+application/x-pkcs7-crl crl
+application/x-python-code pyc pyo
+application/x-qgis qgs shp shx
+application/x-quicktimeplayer qtl
+application/x-rar-compressed rar
+application/x-rdp rdp
+application/x-redhat-package-manager rpm
+application/x-research-info-systems ris
+application/x-rss+xml rss
+application/x-ruby rb
+application/x-rx
+application/x-scilab sce sci
+application/x-scilab-xcos xcos
+application/x-sh sh
+application/x-sha1 sha1
+application/x-shar shar
+application/x-shellscript
+application/x-shockwave-flash swf swfl
+application/x-silverlight scr
+application/x-silverlight-app xap
+application/x-sql sql
+application/x-stuffit sit sitx
+application/x-stuffitx sitx
+application/x-subrip srt
+application/x-sv4cpio sv4cpio
+application/x-sv4crc sv4crc
+application/x-t3vm-image t3
+application/x-tads gam
+application/x-tar tar
+application/x-tcl tcl
+application/x-tex tex
+application/x-tex-gf gf
+application/x-tex-pk pk
+application/x-tex-tfm tfm
+application/x-texinfo texi texinfo
+application/x-tgif obj
+application/x-trash % bak old sik ~
+application/x-troff roff t tr
+application/x-troff-man man
+application/x-troff-me me
+application/x-troff-ms ms
+application/x-ustar ustar
+application/x-videolan
+application/x-wais-source src
+application/x-wingz wz
+application/x-x509-ca-cert crt der
+application/x-xcf xcf
+application/x-xfig fig
+application/x-xliff+xml xlf
+application/x-xpinstall xpi
+application/x-xz xz
+application/x-zmachine z1 z2 z3 z4 z5 z6 z7 z8
+application/x400-bp
+application/xaml+xml xaml
+application/xcap-att+xml
+application/xcap-caps+xml
+application/xcap-diff+xml xdf
+application/xcap-el+xml
+application/xcap-error+xml
+application/xcap-ns+xml
+application/xcon-conference-info+xml
+application/xcon-conference-info-diff+xml
+application/xenc+xml xenc
+application/xhtml+xml xht xhtml
+application/xhtml-voice+xml
+application/xml xml xsd xsl
+application/xml-dtd dtd
+application/xml-external-parsed-entity
+application/xmpp+xml
+application/xop+xml xop
+application/xproc+xml xpl
+application/xslt+xml xslt
+application/xspf+xml xspf
+application/xv+xml mxml xhvml xvm xvml
+application/yang yang
+application/yin+xml yin
+application/zip zip
+application/zlib
+audio/1d-interleaved-parityfec
+audio/32kadpcm
+audio/3gpp
+audio/3gpp2
+audio/AMR
+audio/AMR-WB
+audio/ATRAC-ADVANCED-LOSSLESS
+audio/ATRAC-X
+audio/ATRAC3
+audio/BV16
+audio/BV32
+audio/CN
+audio/DAT12
+audio/DV
+audio/DVI4
+audio/EVRC
+audio/EVRC-QCP
+audio/EVRC0
+audio/EVRC1
+audio/EVRCB
+audio/EVRCB0
+audio/EVRCB1
+audio/EVRCWB
+audio/EVRCWB0
+audio/EVRCWB1
+audio/G719
+audio/G722
+audio/G7221
+audio/G723
+audio/G726-16
+audio/G726-24
+audio/G726-32
+audio/G726-40
+audio/G728
+audio/G729
+audio/G7291
+audio/G729D
+audio/G729E
+audio/GSM
+audio/GSM-EFR
+audio/GSM-HR-08
+audio/L16
+audio/L20
+audio/L24
+audio/L8
+audio/LPC
+audio/MP4A-LATM
+audio/MPA
+audio/PCMA
+audio/PCMA-WB
+audio/PCMU
+audio/PCMU-WB
+audio/QCELP
+audio/RED
+audio/SMV
+audio/SMV-QCP
+audio/SMV0
+audio/UEMCLIP
+audio/VDVI
+audio/VMR-WB
+audio/ac3
+audio/adpcm adp
+audio/amr amr
+audio/amr-wb awb
+audio/amr-wb+
+audio/annodex axa
+audio/asc
+audio/basic au snd
+audio/bv16
+audio/bv32
+audio/clearmode
+audio/cn
+audio/csound csd orc sco
+audio/dat12
+audio/dls
+audio/dsr-es201108
+audio/dsr-es202050
+audio/dsr-es202211
+audio/dsr-es202212
+audio/dvi4
+audio/eac3
+audio/evrc
+audio/evrc-qcp
+audio/evrc0
+audio/evrc1
+audio/evrcb
+audio/evrcb0
+audio/evrcb1
+audio/evrcwb
+audio/evrcwb0
+audio/evrcwb1
+audio/example
+audio/flac flac
+audio/fwdred
+audio/g.722.1
+audio/g719
+audio/g722
+audio/g7221
+audio/g723
+audio/g726-16
+audio/g726-24
+audio/g726-32
+audio/g726-40
+audio/g728
+audio/g729
+audio/g7291
+audio/g729d
+audio/g729e
+audio/gsm
+audio/gsm-efr
+audio/iLBC
+audio/ilbc
+audio/ip-mr_v2.5
+audio/l16
+audio/l20
+audio/l24
+audio/l8
+audio/lpc
+audio/midi kar mid midi rmi
+audio/mobile-xmf
+audio/mp4 mp4a
+audio/mp4a-latm
+audio/mpa
+audio/mpa-robust
+audio/mpeg m2a m3a m4a mp2 mp2a mp3 mpega mpga
+audio/mpeg4-generic
+audio/mpegurl m3u
+audio/ogg oga ogg opus spx
+audio/parityfec
+audio/pcma
+audio/pcma-wb
+audio/pcmu
+audio/pcmu-wb
+audio/prs.sid sid
+audio/qcelp
+audio/raptorfec
+audio/red
+audio/rtp-enc-aescm128
+audio/rtp-midi
+audio/rtx
+audio/s3m s3m
+audio/silk sil
+audio/smv
+audio/smv-qcp
+audio/smv0
+audio/sp-midi
+audio/speex
+audio/t140c
+audio/t38
+audio/telephone-event
+audio/tone
+audio/ulpfec
+audio/vdvi
+audio/vmr-wb
+audio/vnd.3gpp.iufp
+audio/vnd.4SB
+audio/vnd.4sb
+audio/vnd.CELP
+audio/vnd.audiokoz
+audio/vnd.celp
+audio/vnd.cisco.nse
+audio/vnd.cmles.radio-events
+audio/vnd.cns.anp1
+audio/vnd.cns.inf1
+audio/vnd.dece.audio uva uvva
+audio/vnd.digital-winds eol
+audio/vnd.dlna.adts
+audio/vnd.dolby.heaac.1
+audio/vnd.dolby.heaac.2
+audio/vnd.dolby.mlp
+audio/vnd.dolby.mps
+audio/vnd.dolby.pl2
+audio/vnd.dolby.pl2x
+audio/vnd.dolby.pl2z
+audio/vnd.dolby.pulse.1
+audio/vnd.dra dra
+audio/vnd.dts dts
+audio/vnd.dts.hd dtshd
+audio/vnd.dvb.file
+audio/vnd.everad.plj
+audio/vnd.hns.audio
+audio/vnd.lucent.voice lvp
+audio/vnd.ms-playready.media.pya pya
+audio/vnd.nokia.mobile-xmf
+audio/vnd.nortel.vbk
+audio/vnd.nuera.ecelp4800 ecelp4800
+audio/vnd.nuera.ecelp7470 ecelp7470
+audio/vnd.nuera.ecelp9600 ecelp9600
+audio/vnd.octel.sbc
+audio/vnd.qcelp
+audio/vnd.rhetorex.32kadpcm
+audio/vnd.rip rip
+audio/vnd.sealedmedia.softseal.mpeg
+audio/vnd.vmx.cvsd
+audio/vorbis
+audio/vorbis-config
+audio/webm weba
+audio/x-aac aac
+audio/x-aiff aif aifc aiff
+audio/x-caf caf
+audio/x-flac flac
+audio/x-gsm gsm
+audio/x-matroska mka
+audio/x-mpegurl m3u
+audio/x-ms-wax wax
+audio/x-ms-wma wma
+audio/x-pn-realaudio ra ram rm
+audio/x-pn-realaudio-plugin rmp
+audio/x-realaudio ra
+audio/x-scpls pls
+audio/x-sd2 sd2
+audio/x-wav wav
+audio/xm xm
+chemical/x-alchemy alc
+chemical/x-cache cac cache
+chemical/x-cache-csf csf
+chemical/x-cactvs-binary cascii cbin ctab
+chemical/x-cdx cdx
+chemical/x-cerius cer
+chemical/x-chem3d c3d
+chemical/x-chemdraw chm
+chemical/x-cif cif
+chemical/x-cmdf cmdf
+chemical/x-cml cml
+chemical/x-compass cpa
+chemical/x-crossfire bsd
+chemical/x-csml csm csml
+chemical/x-ctx ctx
+chemical/x-cxf cef cxf
+chemical/x-embl-dl-nucleotide emb embl
+chemical/x-galactic-spc spc
+chemical/x-gamess-input gam gamin inp
+chemical/x-gaussian-checkpoint fch fchk
+chemical/x-gaussian-cube cub
+chemical/x-gaussian-input gau gjc gjf
+chemical/x-gaussian-log gal
+chemical/x-gcg8-sequence gcg
+chemical/x-genbank gen
+chemical/x-hin hin
+chemical/x-isostar ist istr
+chemical/x-jcamp-dx dx jdx
+chemical/x-kinemage kin
+chemical/x-macmolecule mcm
+chemical/x-macromodel-input mmd mmod
+chemical/x-mdl-molfile mol
+chemical/x-mdl-rdfile rd
+chemical/x-mdl-rxnfile rxn
+chemical/x-mdl-sdfile sd sdf
+chemical/x-mdl-tgf tgf
+chemical/x-mmcif mcif
+chemical/x-mol2 mol2
+chemical/x-molconn-Z b
+chemical/x-mopac-graph gpt
+chemical/x-mopac-input dat mop mopcrt mpc zmt
+chemical/x-mopac-out moo
+chemical/x-mopac-vib mvb
+chemical/x-ncbi-asn1 asn
+chemical/x-ncbi-asn1-ascii ent prt
+chemical/x-ncbi-asn1-binary aso val
+chemical/x-ncbi-asn1-spec asn
+chemical/x-pdb ent pdb
+chemical/x-rosdal ros
+chemical/x-swissprot sw
+chemical/x-vamas-iso14976 vms
+chemical/x-vmd vmd
+chemical/x-xtel xtel
+chemical/x-xyz xyz
+image/bmp bmp
+image/cgm cgm
+image/example
+image/fits
+image/g3fax g3
+image/gif gif
+image/ief ief
+image/jp2
+image/jpeg jpe jpeg jpg
+image/jpm
+image/jpx
+image/ktx ktx
+image/naplps
+image/pcx pcx
+image/png png
+image/prs.btif btif
+image/prs.pti
+image/pwg-raster
+image/sgi sgi
+image/svg+xml svg svgz
+image/t38
+image/tiff tif tiff
+image/tiff-fx
+image/vnd.adobe.photoshop psd
+image/vnd.airzip.accelerator.azv
+image/vnd.cns.inf2
+image/vnd.dece.graphic uvg uvi uvvg uvvi
+image/vnd.djvu djv djvu
+image/vnd.dvb.subtitle sub
+image/vnd.dwg dwg
+image/vnd.dxf dxf
+image/vnd.fastbidsheet fbs
+image/vnd.fpx fpx
+image/vnd.fst fst
+image/vnd.fujixerox.edmics-mmr mmr
+image/vnd.fujixerox.edmics-rlc rlc
+image/vnd.globalgraphics.pgb
+image/vnd.microsoft.icon ico
+image/vnd.mix
+image/vnd.ms-modi mdi
+image/vnd.ms-photo wdp
+image/vnd.net-fpx npx
+image/vnd.radiance
+image/vnd.sealed.png
+image/vnd.sealedmedia.softseal.gif
+image/vnd.sealedmedia.softseal.jpg
+image/vnd.svf
+image/vnd.wap.wbmp wbmp
+image/vnd.xiff xif
+image/webp webp
+image/x-3ds 3ds
+image/x-canon-cr2 cr2
+image/x-canon-crw crw
+image/x-cmu-raster ras
+image/x-cmx cmx
+image/x-coreldraw cdr
+image/x-coreldrawpattern pat
+image/x-coreldrawtemplate cdt
+image/x-corelphotopaint cpt
+image/x-epson-erf erf
+image/x-freehand fh fh4 fh5 fh7 fhc
+image/x-icon ico
+image/x-jg art
+image/x-jng jng
+image/x-mrsid-image sid
+image/x-ms-bmp bmp
+image/x-nikon-nef nef
+image/x-olympus-orf orf
+image/x-pcx pcx
+image/x-photoshop psd
+image/x-pict pct pic
+image/x-portable-anymap pnm
+image/x-portable-bitmap pbm
+image/x-portable-graymap pgm
+image/x-portable-pixmap ppm
+image/x-rgb rgb
+image/x-tga tga
+image/x-xbitmap xbm
+image/x-xpixmap xpm
+image/x-xwindowdump xwd
+inode/blockdevice
+inode/chardevice
+inode/directory
+inode/directory-locked
+inode/fifo
+inode/socket
+message/CPIM
+message/cpim
+message/delivery-status
+message/disposition-notification
+message/example
+message/external-body
+message/feedback-report
+message/global
+message/global-delivery-status
+message/global-disposition-notification
+message/global-headers
+message/http
+message/imdn+xml
+message/news
+message/partial
+message/rfc822 eml mime
+message/s-http
+message/sip
+message/sipfrag
+message/tracking-status
+message/vnd.si.simp
+model/example
+model/iges iges igs
+model/mesh mesh msh silo
+model/vnd.collada+xml dae
+model/vnd.dwf dwf
+model/vnd.flatland.3dml
+model/vnd.gdl gdl
+model/vnd.gs-gdl
+model/vnd.gs.gdl
+model/vnd.gtw gtw
+model/vnd.moml+xml
+model/vnd.mts mts
+model/vnd.parasolid.transmit.binary
+model/vnd.parasolid.transmit.text
+model/vnd.vtu vtu
+model/vrml vrml wrl
+model/x3d+binary x3db x3dbz
+model/x3d+vrml x3dv x3dvz
+model/x3d+xml x3d x3dz
+multipart/alternative
+multipart/appledouble
+multipart/byteranges
+multipart/digest
+multipart/encrypted
+multipart/example
+multipart/form-data
+multipart/header-set
+multipart/mixed
+multipart/parallel
+multipart/related
+multipart/report
+multipart/signed
+multipart/voice-message
+text/cache-manifest appcache
+text/calendar ics icz ifb
+text/comma-separated-values csv
+text/css css
+text/csv csv
+text/directory
+text/dns
+text/ecmascript
+text/english
+text/enriched
+text/example
+text/h323 323
+text/html htm html shtml
+text/iuls uls
+text/javascript
+text/mathml mml
+text/n3 n3
+text/parityfec
+text/plain asc brf conf def diff in list log pot srt text txt
+text/prs.fallenstein.rst
+text/prs.lines.tag dsc
+text/red
+text/rfc822-headers
+text/richtext rtx
+text/rtf rtf
+text/rtp-enc-aescm128
+text/rtx
+text/scriptlet sct wsc
+text/sgml sgm sgml
+text/t140
+text/tab-separated-values tsv
+text/texmacs tm ts
+text/troff man me ms roff t tr
+text/turtle ttl
+text/ulpfec
+text/uri-list uri uris urls
+text/vcard vcard
+text/vnd.DMClientScript
+text/vnd.IPTC.NITF
+text/vnd.IPTC.NewsML
+text/vnd.abc
+text/vnd.curl curl
+text/vnd.curl.dcurl dcurl
+text/vnd.curl.mcurl mcurl
+text/vnd.curl.scurl scurl
+text/vnd.dmclientscript
+text/vnd.dvb.subtitle sub
+text/vnd.esmertec.theme-descriptor
+text/vnd.flatland.3dml
+text/vnd.fly fly
+text/vnd.fmi.flexstor flx
+text/vnd.graphviz gv
+text/vnd.in3d.3dml 3dml
+text/vnd.in3d.spot spot
+text/vnd.iptc.newsml
+text/vnd.iptc.nitf
+text/vnd.latex-z
+text/vnd.motorola.reflex
+text/vnd.ms-mediapackage
+text/vnd.net2phone.commcenter.command
+text/vnd.si.uricatalogue
+text/vnd.sun.j2me.app-descriptor jad
+text/vnd.trolltech.linguist
+text/vnd.wap.si
+text/vnd.wap.sl
+text/vnd.wap.wml wml
+text/vnd.wap.wmlscript wmls
+text/x-asm asm s
+text/x-bibtex bib
+text/x-boo boo
+text/x-c c cc cpp cxx dic h hh
+text/x-c++hdr h++ hh hpp hxx
+text/x-c++src c++ cc cpp cxx
+text/x-chdr h
+text/x-component htc
+text/x-crontab
+text/x-csh csh
+text/x-csrc c
+text/x-diff diff patch
+text/x-dsrc d
+text/x-fortran f f77 f90 for
+text/x-haskell hs
+text/x-java java
+text/x-java-source java
+text/x-lilypond ly
+text/x-literate-haskell lhs
+text/x-makefile
+text/x-moc moc
+text/x-nfo nfo
+text/x-opml opml
+text/x-pascal p pas
+text/x-pcs-gcd gcd
+text/x-perl pl pm
+text/x-psp psp
+text/x-python py
+text/x-scala scala
+text/x-server-parsed-html
+text/x-setext etx
+text/x-sfv sfv
+text/x-sh sh
+text/x-tcl tcl tk
+text/x-tex cls ltx sty tex
+text/x-uuencode uu
+text/x-vcalendar vcs
+text/x-vcard vcf
+text/xml
+text/xml-external-parsed-entity
+video/1d-interleaved-parityfec
+video/3gpp 3gp
+video/3gpp-tt
+video/3gpp2 3g2
+video/BMPEG
+video/BT656
+video/CelB
+video/DV
+video/H261
+video/H263
+video/H263-1998
+video/H263-2000
+video/H264
+video/H264-RCDO
+video/H264-SVC
+video/JPEG
+video/MJ2
+video/MP1S
+video/MP2P
+video/MP2T ts
+video/MP4V-ES
+video/MPV
+video/SMPTE292M
+video/annodex axv
+video/bmpeg
+video/bt656
+video/celb
+video/dl dl
+video/dv dif dv
+video/example
+video/fli fli
+video/gl gl
+video/h261 h261
+video/h263 h263
+video/h263-1998
+video/h263-2000
+video/h264 h264
+video/jpeg jpgv
+video/jpeg2000
+video/jpm jpgm jpm
+video/mj2 mj2 mjp2
+video/mp1s
+video/mp2p
+video/mp2t
+video/mp4 mp4 mp4v mpg4
+video/mp4v-es
+video/mpeg m1v m2v mpe mpeg mpg
+video/mpeg4-generic
+video/mpv
+video/nv
+video/ogg ogv
+video/parityfec
+video/pointer
+video/quicktime mov qt
+video/raptorfec
+video/raw
+video/rtp-enc-aescm128
+video/rtx
+video/smpte292m
+video/ulpfec
+video/vc1
+video/vnd.CCTV
+video/vnd.cctv
+video/vnd.dece.hd uvh uvvh
+video/vnd.dece.mobile uvm uvvm
+video/vnd.dece.mp4
+video/vnd.dece.pd uvp uvvp
+video/vnd.dece.sd uvs uvvs
+video/vnd.dece.video uvv uvvv
+video/vnd.directv.mpeg
+video/vnd.directv.mpeg-tts
+video/vnd.dlna.mpeg-tts
+video/vnd.dvb.file dvb
+video/vnd.fvt fvt
+video/vnd.hns.video
+video/vnd.iptvforum.1dparityfec-1010
+video/vnd.iptvforum.1dparityfec-2005
+video/vnd.iptvforum.2dparityfec-1010
+video/vnd.iptvforum.2dparityfec-2005
+video/vnd.iptvforum.ttsavc
+video/vnd.iptvforum.ttsmpeg2
+video/vnd.motorola.video
+video/vnd.motorola.videop
+video/vnd.mpegurl m4u mxu
+video/vnd.ms-playready.media.pyv pyv
+video/vnd.mts
+video/vnd.nokia.interleaved-multimedia
+video/vnd.nokia.videovoip
+video/vnd.objectvideo
+video/vnd.sealed.mpeg1
+video/vnd.sealed.mpeg4
+video/vnd.sealed.swf
+video/vnd.sealedmedia.softseal.mov
+video/vnd.uvvu.mp4 uvu uvvu
+video/vnd.vivo viv
+video/webm webm
+video/x-f4v f4v
+video/x-fli fli
+video/x-flv flv
+video/x-la-asf lsf lsx
+video/x-m4v m4v
+video/x-matroska mk3d mks mkv mpv
+video/x-mng mng
+video/x-ms-asf asf asx
+video/x-ms-vob vob
+video/x-ms-wm wm
+video/x-ms-wmv wmv
+video/x-ms-wmx wmx
+video/x-ms-wvx wvx
+video/x-msvideo avi
+video/x-sgi-movie movie
+video/x-smv smv
+x-conference/x-cooltalk ice
+x-epoc/x-sisx-app sisx
+x-world/x-vrml vrm vrml wrl
EQUALITY octetStringMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 )
+attributetype ( 1.3.6.1.4.1.7165.2.1.70 NAME 'sambaTrustType'
+ DESC 'Type of trust'
+ EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+
+attributetype ( 1.3.6.1.4.1.7165.2.1.71 NAME 'sambaTrustAttributes'
+ DESC 'Trust attributes for a trusted domain'
+ EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+
+attributetype ( 1.3.6.1.4.1.7165.2.1.72 NAME 'sambaTrustDirection'
+ DESC 'Direction of a trust'
+ EQUALITY integerMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )
+
+attributetype ( 1.3.6.1.4.1.7165.2.1.73 NAME 'sambaTrustPartner'
+ DESC 'Fully qualified name of the domain with which a trust exists'
+ EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} )
+
+attributetype ( 1.3.6.1.4.1.7165.2.1.74 NAME 'sambaFlatName'
+ DESC 'NetBIOS name of a domain'
+ EQUALITY caseIgnoreMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{128} )
+
+attributetype ( 1.3.6.1.4.1.7165.2.1.75 NAME 'sambaTrustAuthOutgoing'
+ DESC 'Authentication information for the outgoing portion of a trust'
+ EQUALITY caseExactMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1050} )
+
+attributetype ( 1.3.6.1.4.1.7165.2.1.76 NAME 'sambaTrustAuthIncoming'
+ DESC 'Authentication information for the incoming portion of a trust'
+ EQUALITY caseExactMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1050} )
+
+attributetype ( 1.3.6.1.4.1.7165.2.1.77 NAME 'sambaSecurityIdentifier'
+ DESC 'SID of a trusted domain'
+ EQUALITY caseIgnoreIA5Match SUBSTR caseExactIA5SubstringsMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{64} SINGLE-VALUE )
+
+attributetype ( 1.3.6.1.4.1.7165.2.1.78 NAME 'sambaTrustForestTrustInfo'
+ DESC 'Forest trust information for a trusted domain object'
+ EQUALITY caseExactMatch
+ SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1050} )
#######################################################################
## DESC 'Samba Privilege'
## MUST ( sambaSID )
## MAY ( sambaPrivilegeList ) )
+
+##
+## used for IPA_ldapsam
+##
+objectclass ( 1.3.6.1.4.1.7165.2.2.16 NAME 'sambaTrustedDomain' SUP top STRUCTURAL
+ DESC 'Samba Trusted Domain Object'
+ MUST ( cn )
+ MAY ( sambaTrustType $ sambaTrustAttributes $ sambaTrustDirection $
+ sambaTrustPartner $ sambaFlatName $ sambaTrustAuthOutgoing $
+ sambaTrustAuthIncoming $ sambaSecurityIdentifier $
+ sambaTrustForestTrustInfo) )
#%PAM-1.0
-# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/files/3.5/system-auth-winbind.pam,v 1.1 2010/03/01 16:19:54 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/files/3.6/system-auth-winbind.pam,v 1.1 2011/06/30 15:50:28 dagger Exp $
auth required pam_env.so
auth sufficient pam_winbind.so
net-wireless/wpa_supplicant wps
+sci-libs/cln -doc
+
sci-mathematics/pari -doc
sci-visualization/gnuplot latex plotutils thin-splines wxwidgets
# readme_directory: The location of the Postfix README files.
#
readme_directory = /usr/share/doc/postfix-2.9.4/readme
+inet_protocols = ipv4
home_mailbox = .maildir/
export ANT_HOME='/usr/share/ant'
export CONFIG_PROTECT='/usr/share/gnupg/qualified.txt /var/lib/hsqldb /usr/share/config /usr/share/openvpn/easy-rsa'
-export CONFIG_PROTECT_MASK='/etc/gentoo-release /etc/sandbox.d /etc/env.d/java/ /etc/php/cli-php5.4/ext-active/ /etc/php/cgi-php5.4/ext-active/ /etc/php/apache2-php5.4/ext-active/ /etc/fonts/fonts.conf /etc/gconf /etc/terminfo /etc/dconf /etc/ca-certificates.conf /etc/texmf/web2c /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/revdep-rebuild'
+export CONFIG_PROTECT_MASK='/etc/gentoo-release /etc/sandbox.d /etc/env.d/java/ /etc/php/cli-php5.4/ext-active/ /etc/php/cgi-php5.4/ext-active/ /etc/php/apache2-php5.4/ext-active/ /etc/fonts/fonts.conf ${EPREFIX}/etc/gconf /etc/terminfo /etc/dconf /etc/ca-certificates.conf /etc/texmf/web2c /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/revdep-rebuild'
export EDITOR='/usr/bin/vi'
export FLTK_DOCDIR='/usr/share/doc/fltk-1.3.0-r1/html'
export GCC_SPECS=''
rc_tty_number=12
# If you have cgroups turned on in your kernel, this switch controls
-# whether or not a group for each controler is mounted under
+# whether or not a group for each controller is mounted under
# /sys/fs/cgroup.
# Support for process management by cgroups is planned in the future,
# so if you turn this off, be aware that you may not be able to use that
# Generated by net-scripts for interface eth0
-domain profitbricks.localdomain
+domain pb.local
#search profitbricks.localdomain brehm-online.com dc1.de.profitbricks.net dc2.us.profitbricks.net dc252.de.profitbricks.net uhu-banane.de
-search profitbricks.localdomain brehm-online.com dc1.de.profitbricks.net dc2.us.profitbricks.net pb.local uhu-banane.de
+search pb.local ri.pb.local profitbricks.localdomain brehm-online.com dc1.de.profitbricks.net dc2.us.profitbricks.net uhu-banane.de
nameserver 192.168.178.30
nameserver 192.168.178.89
-# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/files/3.5/lmhosts,v 1.1 2010/03/01 16:19:54 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/files/3.6/lmhosts,v 1.1 2011/06/30 15:50:28 dagger Exp $
127.0.0.1 localhost
-# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/files/3.5/smbusers,v 1.1 2010/03/01 16:19:54 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/files/3.6/smbusers,v 1.1 2011/06/30 15:50:28 dagger Exp $
# Syntax:
# Unix_name = SMB_name1 SMB_name2 ...
kdm:!:15390::::::
apache:!:15391::::::
postfix:!:15391::::::
-ppd:$5$9nJZu8qE$di6eiBz8RmuY7vsmFbLmniTn1GIeDTy78k56vjYBMfD:15686::::::
+ppd:$5$9nJZu8qE$di6eiBz8RmuY7vsmFbLmniTn1GIeDTy78k56vjYBMfD:15733::::::
colord:!:15426::::::
qemu:!:15538::::::
memcached:!:15566::::::
kdm:!:15390::::::
apache:!:15391::::::
postfix:!:15391::::::
-ppd:$5$9nJZu8qE$di6eiBz8RmuY7vsmFbLmniTn1GIeDTy78k56vjYBMfD:15686::::::
+ppd:$5$9nJZu8qE$di6eiBz8RmuY7vsmFbLmniTn1GIeDTy78k56vjYBMfD:15716::::::
colord:!:15426::::::
qemu:!:15538::::::
memcached:!:15566::::::
{
socket_type = stream
wait = no
- user = apache
- group = apache
+ user = svn
+ group = svnusers
umask = 002
protocol = tcp
log_on_failure += USERID HOST
# description: SWAT is the Samba Web Admin Tool. Use swat \
# to configure your Samba server. To use SWAT, \
# connect to port 901 with your favorite web browser.
-# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/files/3.5/swat.xinetd,v 1.1 2010/03/01 16:19:54 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/samba/files/3.6/swat.xinetd,v 1.1 2011/06/30 15:50:28 dagger Exp $
service swat
{