List Sessions

Hello
I know there is a way to list all the sessions for a certian application (ie, thetomcat manager), can someone tell me how to do this? thanks.

Your web.xml is wrong, listeners should be before servlets.
package listeners;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class MyListener implements ServletContextListener, HttpSessionListener {
  public void contextInitialized(ServletContextEvent e)
    e.getServletContext().setAttribute("sessionList", new ArrayList());
  public void contextDestroyed(ServletContextEvent e) {
  public void sessionCreated(HttpSessionEvent e) {
    HttpSession session = e.getSession();
    List sessionList = (List) session.getServletContext().getAttribute("sessionList");
    sessionList.add(session);
  public void sessionDestroyed(HttpSessionEvent e) {
    HttpSession session = e.getSession();
    List sessionList = (List) session.getServletContext().getAttribute("sessionList");
    sessionList.remove(session);
<web-app>
  <listener>
    <listener-class>listeners.MyListener</listener-class>
  </listener>
</web-app>

Similar Messages

  • No Auto-Update for To Do list, session message and toast message

    After LC ES Server hardening, we noticed that auto-update is not working for To Do list, session message and new task notification toast message. Before server hardening, all of them are still working fine.
    Does anyone know why auto-update is not working after server hardening? Is there any specific port numbers which need to be enabled/opened to solve this issue?
    FYI, we also noticed that some RemoteEventClient error messages occur many times in jboss server.log file as the following:
    --- LOG QUOTE START ---
    2008-01-10 15:26:16,086 INFO [STDOUT]
    GMS: address is neptune:[MULTIPLE VARIOUS PORT NO]
    2008-01-10 15:26:19,398 INFO [com.adobe.livecycle.remoteevents.client.RemoteEventClient] Client JGroup initialization failed to connect to service JGroup. Service JGroup initialization may not be complete, retrying...
    2008-01-10 15:26:20,414 INFO [com.adobe.livecycle.remoteevents.client.RemoteEventClient] com.adobe.livecycle.remoteevents.client.RemoteEventClient$RemoteEventReceiver using JGroups config UDP(bind_addr=10.77.250.248;mcast_addr=238.42.102.134;mcast_port=42707;ip_ttl=8):PING(tim eout=3000;num_initial_members=6):FD(timeout=3000):VERIFY_SUSPECT(timeout=1500):pbcast.NAKA CK(gc_lag=10;retransmit_timeout=600,1200,2400,4800):UNICAST(timeout=600,1200,2400,4800):pb cast.STABLE(desired_avg_gossip=10000):FRAG:pbcast.GMS(join_timeout=5000;join_retry_timeout =2000;shun=true;print_local_addr=true):VIEW_ENFORCER
    2008-01-10 15:28:21,216 INFO [STDOUT]
    GMS: address is neptune:3874
    2008-01-10 15:28:24,528 ERROR [com.adobe.livecycle.remoteevents.client.RemoteEventClient] Client JGroup initialization failed to connect to service JGroup. Maximum retries exceeded.
    2008-01-10 15:28:24,528 INFO [STDOUT] Jan 10, 2008 3:28:24 PM com.adobe.workspace.events.RemoteEventClientLifeCycle$RemoteEventInitThread run
    SEVERE: null
    com.adobe.livecycle.remoteevents.client.RemoteEventConnectionFailedException
    at com.adobe.livecycle.remoteevents.client.RemoteEventClient$RemoteEventReceiver.<init>(Remo teEventClient.java:213)
    at com.adobe.livecycle.remoteevents.client.RemoteEventClient$RemoteEventReceiver.getReceiver (RemoteEventClient.java:159)
    at com.adobe.livecycle.remoteevents.client.RemoteEventClient.<init>(RemoteEventClient.java:3 61)
    at com.adobe.workspace.events.RemoteEventClientLifeCycle$RemoteEventInitThread.run(RemoteEve ntClientLifeCycle.java:65)
    at java.lang.Thread.run(Thread.java:595)
    --- LOG QUOTE END ---

    JGroups is an open source project that allows processes to send messages to one another. LiveCycle data services uses it for its messaging implementation (basically it configures the server to multicast messages to all the listening clients...even in a clustered environment across different LAN/WAN).
    In most cases the default configuration will work fine, the problem is that if you are running a firewall on the server (or your local machine...i.e. windows firewall) the ports that JGroups uses for its communications can be blocked. In a local environment its easy enough to disable windows firewall and bounce your server to get things working.
    In a production environment you need to open the ports that JGroups is using. These settings are in the Global Administration settings (as mentioned by WorkspaceUser above). If you export it and look at the JChannelConnectionProperties you'll see the ports its using and you can set your firewall to allow communication to those ports.
    Bryan

  • Mac os    list sessions   implementation process

    I need to list all theactive graphical login sessions, to launch an agent in each graphical user session
    How do I get a list of GUI login sessions?
    How to launch an agent in each graphical user session?
    I am using qt
    I will be glad of any useful information
    Sorry for my english..

    I found the culprit to be a kernel extension
    Checking my log files I could see
    kernel[0]: failed to detach com.ncp-e.vpn.driver.ncplbmac filter (err=22)
    logged after disconnecting my forticlient or a pptp session
    deleted the com.ncp-e.vpn.driver.ncplbmac kernel extension and that sorted it.

  • Tabbed Navigation List Session State

    I converted regular tabs to a tabbed navigation list because the user wanted the tabs on the left side, on a region, not on the top of a page. Now when I navigate between pages using the tabbed navigation list the session state is not saved. For example: the user changes something in a field on page 1 without submitting the change, navigates to page 2, then back to page 1; the change they made on page 1 is gone. How can I prevent this from happening?
    I've checked all of the branches and navigation list targets to make sure I'm not clearing the session state.
    Thanks, Elizabeth

    First, I added Personal_Page under Action/Request.No, that sets the request value in the branch URL.
    so I added Personal_Page in Expression1 under Conditions and set the Condition Type to Request=Expression1That will work. Maybe you have a branch that fires before it so it never evaluated this branch. Anyway, my suggestion was to use an application process, not branches. The firing point of the process should be after-submit, before computations and validations. The process would contain a block like:
    declare l_page varchar2(30);
    begin
      case
        when :request = 'Personal_Page' then
          l_page := '3';
        when :request = 'some other value' then
          l_page := '4';
        -- etc.
      end case;
      apex_application.g_unrecoverable_error := true;
      owa_util.redirect_url('f?p=' || :APP_ID || ':' || l_page || ':' || :APP_SESSION);
    end;Scott

  • How to set User Name in session?

    Can anyone tell me if there is an user name variable already stored in a session object to which I can assign the user's name? I usually do this by storing a variable in the session to hold that name. When I print the session object (I am using websphere) I get the following...You will notice that there is a user name field that has value anonymous....how can i change that to store the actual users name?
    Thanks in advance,
    jk.
    Session Object Internals:
    id : 1M12TXAPPYUZAJJJ4SS5IVY
    hashCode : 586456410
    create time : Sun Jun 30 15:17:38 MDT 2002
    last access : Sun Jun 30 15:17:40 MDT 2002
    max inactive interval : 1800
    user name : anonymous
    valid session : true
    new session : false
    session active : true
    overflowed : false
    session application parameters : com.ibm.servlet.personalization.sessiontracking.SessionApplicationParameters@385b1d5b
    session tracking pmi app data : com.ibm.servlet.personalization.sessiontracking.SessionTrackingPMIApplicationData@38581d5b
    enable pmi : true
    non-serializable app specific session data : {}
    serializable app specific session data : {}
    session data list : Session Data List -> id : 1M12TXAPPYUZAJJJ4SS5IVY next : LRU prev : MRU

    ok I did some more reading on the websphere literature and came to understand that the User Name indicated there was really set as part of an authenticated request from a secure page. And if the request was in an insecure page websphere automatically assigns "anonymous" to it.
    Security integration rules for HTTP sessions
    Sessions in unsecured pages are treated as accesses by "anonymous" users.
    Sessions created in unsecured pages are created under the identity of that "anonymous" user.
    Sessions in secured pages are treated as accesses by the authenticated user.
    Sessions created in secured pages are created under the identity of the authenticated user. They can only be accessed in other secured pages by the same user. To protect these sessions from use by unauthorized users, they cannot be accessed from an insecure page.

  • Task Lists

    Are "Task lists" no longer available in 3.0? I look in the help and it says:
    To add a new task to a Site-Specific Tasks list:
    Log in to Oracle Application Express Administration Services. See "Logging in to Oracle Application Express Administration Services".
    Click Manage Service.
    Under Manage Service, click Site-Specific Tasks.
    The Site-Specific Tasks page appears.
    However, Site-Specific Tasks is not an option

    Under Manager Services I have the following options (but nothing for task lists):
    Session State
    --Manage Session State
    --Manage Preferences
    Caching
    --Manage Cached Regions
    --Manage Cached Pages
    Workspace Preferences
    --Set Workspace Preferences
    Applications
    --Application Models
    --Demonstration Applications
    Workspace
    --Request Database Schema
    --Request Storage
    --Request Service Terminiation
    --Workspace Overview
    Workspace Schema Reports
    --Schema Tablespace Utilization
    --Database Privileges by Schema
    --Workspace Schemas
    Logs
    --Manage Developer Activity Log
    --Manage Click Count Log                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Critical: Adding session-config to web.xml cause application NOT to start

    I added the <session-config> element under <web-app> in web.xml:
    <session-config>
    <session-timeout>30</session-timeout>
    </session-config>
    Now the app won't start!
    The reason: the built-in sun app server removes context-root attribute from <web-module> element in domain.xml when the app tries to start!
    Please fix this ASAP, guys!

    I placed it in the wrong place. After following the instructions contained in the Technical FAQ (below), it worked.
    Add the following element in your web.xml file, placing it after the mapping for the error servlet and before the welcome file list:
    <session-config>
    <!-- Set global default timeout to 60 minutes -->
    <session-timeout> 60 </session-timeout>
    </session-config>

  • ISE v1.2 - Endpoint abandoned EAP session and started new

    Hi.
    I have lots of clients that are not able to log on to both wired and wireless networks, and they always fails with these errors.
    5411 Supplicant stopped responding to ISE
    5440 Endpoint abandoned EAP session and started new
    This is with certificate authentication, both for client and for machine.
    The clients are for the most part Windows 7.
    We use both Cisco and Aerohive for wireless, and the switch I have tested with is a Cisco2960S
    A few strange things:
    It works perfectly for a lot of clients too, with the excact same configuration.
    One PC I'm testing with works fine when authenticating via wireless, but when I plug it into the switch, I get these errors.
    I seems to be a timeout of some kind, either to short or too long, but where?
    In the Win7 supplicant?
    In the switch?
    In the Cisco WLC
    or in the Aerohive AP?
    I have spent hours and hours on this problem, but I can't make it go away, it is very exhausting.
    There surely must have been others with the same problem?
    Thank you.

    Thank for trying to help out, but this is.. insanely vague.
    How can i verify that NAS (the C2960S) is properly configured?
    What timers are we talking about here? There are many to choose from..
    The problem is still here, even with the latest patch 7 for ISE 1.2. It works fine on wireless, but not with wired, from the same computer. So it is logic to assume it has something to do with the switch.
    This is the configuration from the switch:
    interface GigabitEthernet1/0/20
      switchport mode access
     authentication event fail action next-method
     authentication open
     authentication order dot1x mab
     authentication port-control auto
     snmp trap mac-notification change added
     dot1x pae authenticator
     spanning-tree portfast
    end
    sh dot1x int g1/0/20
    Dot1x Info for GigabitEthernet1/0/20
    PAE                       = AUTHENTICATOR
    QuietPeriod               = 60
    ServerTimeout             = 0
    SuppTimeout               = 30
    ReAuthMax                 = 2
    MaxReq                    = 2
    TxPeriod                  = 30
    sh run aaa
    aaa authentication login default group radius local
    aaa authentication dot1x default group radius
    aaa authorization exec default group radius local
    aaa authorization network default group radius
    aaa accounting dot1x default start-stop group radius!
    aaa server radius dynamic-author
     client 192.168.100.85
     server-key nope!
     auth-type any
    radius server hmz
     address ipv4 192.168.100.85 auth-port 1812 acct-port 1813
     key nope!
    radius-server attribute 6 on-for-login-auth
    radius-server attribute 6 support-multiple
    radius-server attribute 8 include-in-access-req
    aaa new-model
    aaa session-id common
    Some debug from the switch:
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] Create attr list, session 0x1E0000E0:
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding MAC d43d.7e97.1e26
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Swidb 0x4F8BAC8
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding AAA_ID=14B
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Audit_sid=C0A864FA0000014B6983A2E0
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Domain=DATA (1)
    Apr  6 11:07:01.745: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding [email protected]
    Apr  6 11:07:01.745: %AUTHMGR-5-START: Starting 'dot1x' for client (d43d.7e97.1e26) on Interface Gi1/0/20 AuditSessionID C0A864FA0000014B6983A2E0
    Apr  6 11:07:01.745: AUTH-DETAIL: No default action(s) for event RX_METHOD_AGENT_FOUND.
    Apr  6 11:08:21.182: %DOT1X-5-FAIL: Authentication failed for client (d43d.7e97.1e26) on Interface Gi1/0/20 AuditSessionID C0A864FA0000014B6983A2E0
    Apr  6 11:08:21.187: %AUTHMGR-7-STOPPING: Stopping 'dot1x' for client d43d.7e97.1e26 on Interface Gi1/0/20 AuditSessionID C0A864FA0000014B6983A2E0
    Apr  6 11:08:21.187: %AUTHMGR-5-FAIL: Authorization failed or unapplied for client (d43d.7e97.1e26) on Interface Gi1/0/20 AuditSessionID C0A864FA0000014B6983A2E0
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] Create attr list, session 0x1E0000E0:
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding MAC d43d.7e97.1e26
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Swidb 0x4F8BAC8
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding AAA_ID=14B
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Audit_sid=C0A864FA0000014B6983A2E0
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Domain=DATA (1)
    Apr  6 11:08:21.187: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Username=host/HovedPC.gaasdal.net
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] Create attr list, session 0x1E0000E0:
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding MAC d43d.7e97.1e26
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Swidb 0x4F8BAC8
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding AAA_ID=14B
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Audit_sid=C0A864FA0000014B6983A2E0
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Domain=DATA (1)
    Apr  6 11:09:22.079: AUTH-DETAIL: [d43d.7e97.1e26, Gi1/0/20] - adding Username=host/HovedPC.gaasdal.net
    Apr  6 11:09:22.079: %AUTHMGR-5-START: Starting 'dot1x' for client (d43d.7e97.1e26) on Interface Gi1/0/20 AuditSessionID C0A864FA0000014B6983A2E0
    Apr  6 11:09:22.079: AUTH-DETAIL: No default action(s) for event SESSION_STARTED.

  • List of objects in Jsp

    Hi All,
    I have list of object. each object has some fields. ex. item, type, zone. I want to retrieve it in jsp. Now i am using
    <%List itemList = (List)session.getAttribute(Constants.ITEM); %>
    <%     for(int i =0;i<itemList.size();i++){
    NhopItemDef nhopItemDef= (NhopItemDef)itemList.get(i);
    if(nhopItemDef!=null){
    if(nhopItemDef.getItemType().trim().equals(Constants.BED_ZONE)){
    %>
    <tr >
    <td class="tb_dred_left_bf" height="30">
    <html:hidden property="item" value="<%=nhopItemDef.getItem()%>"/>
    <%=nhopItemDef.getItem()%>
    </td>
    Please let me know how to implement it using logic:iterate or c:foreach. which is the best way to implement?
    please provide some example codes here.
    Thanks & regards
    arullakshmi

    arullakshmi wrote:
    Hi All,
    I have list of object. each object has some fields. ex. item, type, zone. I want to retrieve it in jsp. Example:<c:forEach var="item" items="${itemList}">
      <tr>
        <td>${item.name}</td>
        <td>${item.type}</td>
        <td>${item.zone}</td>
      </tr>
    </c:forEach>For more information, check out a good [JSTL tutorial|http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSTL.html].
    ~

  • Session attributes persists forever!

    When I validate form input in my servlet, I create a HashMap of error
    messages and store that Hash in the session
    (session.setAttribute("myErrors", hash))
    Then, I response.sendRedirect() the user back to the page and print
    the error messages with (session.getAttribute("myErrors")). After
    this, I try to clear the session attribute with:
    session.removeAttribute("myErrors"), but it still remains in the
    session!
    I even try to add a "new HashMap()" to the "myErrors" attribute after
    I remove it, but that doesn't work.
    Any ideas on why I'm unable to clear the attribute from my session?

    I found out that the session has changed. I am using Tomcat. This probably explain why the attribute is not there.
    When I use the back button, I get back to the earler session with all the attribute intact. Why does this happen???.
    JSP code below
    <BR>Session ID: <%= session %></BR>
    <%
         Enumeration ee;     
         ee = session.getAttributeNames();
         System.out.println("[START LIST]SESSION ATTRIBUTES........");
         while (ee.hasMoreElements()) {
              String s = (String)ee.nextElement();
    %>
    <BR><%=s %></BR>
    <%
         System.out.println("[END LIST] SESSION ATTRIBUTES........");
    %>

  • V$SESSION columns question

    Hi Gurus
    I have a question regarding of the meaning of some columns in the V$SESSION table. I wonder what does the values in the following columns means?
    ROW_WAIT_O
    ROW_WAIT_F
    ROW_WAIT_B
    TADDR
    LOCKWAIT
    I find out that these columns always have some values when my users unable to log into the application. Even I kill the session that have lockwait, other users are still unable to connect and it happens around once every 2 months.
    Thanks for the answer in advanced
    Oui

    V$SESSION
    This view lists session information for each current session.
    Column Datatype Description
    SADDR
    RAW(4 | 8)
    Session address
    SID
    NUMBER
    Session identifier
    SERIAL#
    NUMBER
    Session serial number. Used to identify uniquely a session's objects. Guarantees that session-level commands are applied to the correct session objects if the session ends and another session begins with the same session ID.
    AUDSID
    NUMBER
    Auditing session ID
    PADDR
    RAW(4 | 8)
    Address of the process that owns this session
    USER#
    NUMBER
    Oracle user identifier
    USERNAME
    VARCHAR2(30)
    Oracle username
    COMMAND
    NUMBER
    Command in progress (last statement parsed); for a list of values, see Table 3-3. These values also appear in the AUDIT_ACTIONS table.
    OWNERID
    NUMBER
    The column contents are invalid if the value is 2147483644. Otherwise, this column contains the identifier of the user who owns the migratable session.
    For operations using Parallel Slaves, interpret this value as a 4-byte value. The low-order 2 bytes of which represent the session number, and the high-order bytes the instance ID of the query coordinator.
    TADDR
    VARCHAR2(8)
    Address of transaction state object
    LOCKWAIT
    VARCHAR2(8)
    Address of lock waiting for; NULL if none
    STATUS
    VARCHAR2(8)
    Status of the session: ACTIVE (currently executing SQL), INACTIVE, KILLED (marked to be killed), CACHED (temporarily cached for use by Oracle*XA), SNIPED (session inactive, waiting on the client)
    SERVER
    VARCHAR2(9)
    Server type (DEDICATED| SHARED| PSEUDO| NONE)
    SCHEMA#
    NUMBER
    Schema user identifier
    SCHEMANAME
    VARCHAR2(30)
    Schema user name
    OSUSER
    VARCHAR2(30)
    Operating system client user name
    PROCESS
    VARCHAR2(9)
    Operating system client process ID
    MACHINE
    VARCHAR2(64)
    Operating system machine name
    TERMINAL
    VARCHAR2(30)
    Operating system terminal name
    PROGRAM
    VARCHAR2(48)
    Operating system program name
    TYPE
    VARCHAR2(10)
    Session type
    SQL_ADDRESS
    RAW(4)
    Used with SQL_HASH_VALUE to identify the SQL statement that is currently being executed
    SQL_HASH_VALUE
    NUMBER
    Used with SQL_ADDRESS to identify the SQL statement that is currently being executed
    PREV_SQL_ADDR
    RAW(4)
    Used with PREV_HASH_VALUE to identify the last SQL statement executed
    PREV_HASH_VALUE
    NUMBER
    Used with SQL_HASH_VALUE to identify the last SQL statement executed
    MODULE
    VARCHAR2(48)
    Contains the name of the currently executing module as set by calling the DBMS_APPLICATION_INFO.SET_MODULE procedure
    MODULE_HASH
    NUMBER
    The hash value of the above MODULE
    ACTION
    VARCHAR2(32)
    Contains the name of the currently executing action as set by calling the DBMS_APPLICATION_INFO.SET_ACTION procedure
    ACTION_HASH
    NUMBER
    The hash value of the above action name
    CLIENT_INFO
    VARCHAR2(64)
    Information set by the DBMS_APPLICATION_INFO.SET_CLIENT_INFO procedure
    FIXED_TABLE_SEQUENCE
    NUMBER
    This contains a number that increases every time the session completes a call to the database and there has been an intervening select from a dynamic performance table. This column can be used by performance monitors to monitor statistics in the database. Each time the performance monitor looks at the database, it only needs to look at sessions that are currently active or have a higher value in this column than the highest value that the performance monitor saw the last time. All the other sessions have been idle since the last time the performance monitor looked at the database.
    ROW_WAIT_OBJ#
    NUMBER
    Object ID for the table containing the ROWID specified in ROW_WAIT_ROW#
    ROW_WAIT_FILE#
    NUMBER
    Identifier for the datafile containing the ROWID specified in ROW_WAIT_ROW#. This column is valid only if the session is currently waiting for another transaction to commit and the value of ROW_WAIT_OBJ# is not -1.
    ROW_WAIT_BLOCK#
    NUMBER
    Identifier for the block containing the ROWID specified in ROW_WAIT_ROW#. This column is valid only if the session is currently waiting for another transaction to commit and the value of ROW_WAIT_OBJ# is not -1.
    ROW_WAIT_ROW#
    NUMBER
    The current ROWID being locked. This column is valid only if the session is currently waiting for another transaction to commit and the value of ROW_WAIT_OBJ# is not -1.
    LOGON_TIME
    DATE
    Time of logon
    LAST_CALL_ET
    NUMBER
    The last call
    PDML_ENABLED
    VARCHAR2(3)
    This column has been replaced by column PDML_STATUS
    FAILOVER_TYPE
    VARCHAR2(13)
    Indicates whether and to what extent transparent application failover (TAF) is enabled for the session:
    NONE - failover is disabled for this session
    SESSION - the client is able to fail over its session following a disconnect
    SELECT - the client is able to fail over queries in progress as well
    See Also:
    Oracle9i Database Concepts for more information on TAF
    Oracle9i Net Services Administrator's Guide for information on configuring TAF
    FAILOVER_METHOD
    VARCHAR2(10)
    Indicates the transparent application failover method for the session:
    NONE - failover is disabled for this session
    BASIC - the client itself reconnects following a disconnect
    PRECONNECT - the backup instance can support all connections from every instance for which it is backup
    FAILED_OVER
    VARCHAR2(3)
    Indicates (YES|NO) whether the session is running in failover mode and failover has occurred
    RESOURCE_CONSUMER_GROUP
    VARCHAR2(32)
    Name of the session's current resource consumer group
    PDML_STATUS
    VARCHAR2(8)
    If ENABLED, the session is in a PARALLEL DML enabled mode. If DISABLED, PARALLEL DML enabled mode is not supported for the session. If FORCED, the session has been altered to force PARALLEL DML.
    PDDL_STATUS
    VARCHAR2(8)
    If ENABLED, the session is in a PARALLEL DDL enabled mode. If DISABLED, PARALLEL DDL enabled mode is not supported for the session. If FORCED, the session has been altered to force PARALLEL DDL.
    PQ_STATUS
    VARCHAR2(8)
    If ENABLED, the session is in a PARALLEL QUERY enabled mode. If DISABLED, PARALLEL QUERY enabled mode is not supported for the session. If FORCED, the session has been altered to force PARALLEL QUERY.
    CURRENT_QUEUE_DURATION
    NUMBER
    If queued (1), the current amount of time the session has been queued. If not currently queued, value is 0.
    CLIENT_IDENTIFIER
    VARCHAR2(64)
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96536/ch3171.htm#1122127
    Joel P�rez

  • Consolekit 0.4.5-1 strange behavior (ck-launch-session fails)

    Hello, i have a new instalation of arch and I want to launch my X environment with slim.
    I use this line in my .xinitrc (now i'm launching this directly from my shell for debuging):
    ck-launch-session dbus-launch startxfce4
    My user is inside storage group, and dbus daemon is launched.
    When i see the console sessions (ck-list-sessions) i get
    Session2:
        unix-user = '1000'
        realname = '(null)'
        seat = 'Seat1'
        session-type = ''
        active = FALSE
        x11-display = ''"
        x11-display-device = ''
        display-device = '/dev/tty1'
        remote-host-name = ''
        is-local = TRUE
        on-since = '2011-08-25T20:32:10.630194Z'
        login-session-id = '2'
        idle-since-hint = '2011-08-25T20:37:13.929339Z'
    Session1:
        unix-user = '1000'
        realname = '(null)'
        seat = 'Seat1'
        session-type = ''
        active = FALSE
        x11-display = ''
        x11-display-device = ''
        display-device = '/dev/tty1'
        remote-host-name = ''
        is-local = TRUE
        on-since = '2011-08-25T20:30:29.324052Z'
        login-session-id = '1'
        idle-since-hint = '2011-08-25T20:36:43.913220Z'
    The Session2 must be:
    active=TRUE
    x11-display=":0"
    This creates a lot of problems in non root users X environment.
    Any idea?
    Thanks.

    xalabin wrote:
    I don't have installed slim for now.
    i just open a bash shell and launch:
    ck-launch-session dbus-launch startxfce
    Is this broken to?
    no. but depends only on your ~/.xinitrc. It works perfectly fine but be sure you have only one line in ~/.xinitrc and not some if block that exists in the default one.
    exec ck-launch-session xfce4-session

  • How to find list of users logged in from past 3 months

    Hi,
    How can i get the list of users accessed oracle database from past 3 months.
    I tried select username,LOGON_TIME from v$session ;
    From v$session can we get all the users logged in from past 3 months?
    Thanks,

    kkrm333 wrote:
    Hi,
    How can i get the list of users accessed oracle database from past 3 months.
    I tried select username,LOGON_TIME from v$session ;
    From v$session can we get all the users logged in from past 3 months?
    Thanks,What does the fine Reference Manual say about "v$session"?
    OK, I looked it up for you. The very first thing it says about this view is
    "This view lists session information for each <b><i>current</i></b> session." (emphasis mine)

  • Top 10 or 20 sessions Not to miss/attend in OOW 2013

    Hi All,
    Hope everyone is doing great.  Guess most of them in this forum will be attending the Oracle Open World 2013.
    And from huge list of many sessions and demos , few would have short listed sessions to attend.
    Can you please share some of the sessions not to miss in the OOW2013. It will be very helpful to all.
    Thank You,
    Baskar.l

    What product ? What level ? What's your speciality ? Too many criteria.
    Have a look there and make your own choice :
    https://blogs.oracle.com/oracleopenworld/entry/search_for_the_content_you
    <mod. action: this is definitely not a technical for Database General question forum, locking this thread>
    Nicolas.

  • Gnome 3.4 - automount broken [SOLVED]

    Hello!
    With Gnome 3.4 automount doesn't work anymore with my custom kernel. This worked before without any problem. It seem to me, that this caused by my kernel configuration and a change by udisks/udisks2.
    $ groups
    lp games network video audio storage power users networkmanager
    $ pacman -Q packagename
    udisks 1.0.4-3
    udisks2 1.94.0-1
    gvfs 1.12.2-1
    gvfs-obexftp 1.12.2-1
    gnome-disk-utility 3.4.1-1
    $ palimpsest # this is gnome-disk-utility. Very easy to find! Really. Great naming from Gnome! Why you didn't call it, let me make a guess, "Epiphany"?)
    (palimpsest:3804): GLib-GObject-WARNING **: invalid (NULL) pointer instance
    (palimpsest:3804): GLib-GObject-CRITICAL **: g_signal_handlers_disconnect_matched: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed
    (palimpsest:3804): GLib-GObject-WARNING **: invalid (NULL) pointer instance
    (palimpsest:3804): GLib-GObject-CRITICAL **: g_signal_handlers_disconnect_matched: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed
    (palimpsest:3804): GLib-GObject-WARNING **: invalid (NULL) pointer instance
    (palimpsest:3804): GLib-GObject-CRITICAL **: g_signal_handlers_disconnect_matched: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed
    (palimpsest:3804): GLib-GObject-WARNING **: invalid (NULL) pointer instance
    (palimpsest:3804): GLib-GObject-CRITICAL **: g_signal_handlers_disconnect_matched: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed
    (palimpsest:3804): GLib-GObject-WARNING **: invalid (NULL) pointer instance
    (palimpsest:3804): GLib-GObject-CRITICAL **: g_signal_handlers_disconnect_matched: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed
    (palimpsest:3804): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    (palimpsest:3804): Palimpsest-ERROR **: Error getting udisks client: Error calling StartServiceByName for org.freedesktop.UDisks2: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildSignaled: Process /usr/lib/dbus-1.0/dbus-daemon-launch-helper received signal 5
    Trace/breakpoint trap
    # pkaction
    org.archlinux.pkexec.gparted
    org.freedesktop.NetworkManager.enable-disable-network
    org.freedesktop.NetworkManager.enable-disable-wifi
    org.freedesktop.NetworkManager.enable-disable-wimax
    org.freedesktop.NetworkManager.enable-disable-wwan
    org.freedesktop.NetworkManager.network-control
    org.freedesktop.NetworkManager.settings.modify.hostname
    org.freedesktop.NetworkManager.settings.modify.own
    org.freedesktop.NetworkManager.settings.modify.system
    org.freedesktop.NetworkManager.sleep-wake
    org.freedesktop.NetworkManager.wifi.share.open
    org.freedesktop.NetworkManager.wifi.share.protected
    org.freedesktop.RealtimeKit1.acquire-high-priority
    org.freedesktop.RealtimeKit1.acquire-real-time
    org.freedesktop.accounts.change-own-user-data
    org.freedesktop.accounts.set-login-option
    org.freedesktop.accounts.user-administration
    org.freedesktop.color-manager.create-device
    org.freedesktop.color-manager.create-profile
    org.freedesktop.color-manager.delete-device
    org.freedesktop.color-manager.delete-profile
    org.freedesktop.color-manager.device-inhibit
    org.freedesktop.color-manager.install-system-wide
    org.freedesktop.color-manager.modify-device
    org.freedesktop.color-manager.modify-profile
    org.freedesktop.color-manager.sensor-lock
    org.freedesktop.consolekit.system.restart
    org.freedesktop.consolekit.system.restart-multiple-users
    org.freedesktop.consolekit.system.stop
    org.freedesktop.consolekit.system.stop-multiple-users
    org.freedesktop.policykit.example.pkexec.run-frobnicate
    org.freedesktop.policykit.exec
    org.freedesktop.policykit.lockdown
    org.freedesktop.udisks.cancel-job-others
    org.freedesktop.udisks.change
    org.freedesktop.udisks.change-system-internal
    org.freedesktop.udisks.drive-ata-smart-refresh
    org.freedesktop.udisks.drive-ata-smart-retrieve-historical-data
    org.freedesktop.udisks.drive-ata-smart-selftest
    org.freedesktop.udisks.drive-detach
    org.freedesktop.udisks.drive-eject
    org.freedesktop.udisks.drive-set-spindown
    org.freedesktop.udisks.filesystem-check
    org.freedesktop.udisks.filesystem-check-system-internal
    org.freedesktop.udisks.filesystem-lsof
    org.freedesktop.udisks.filesystem-lsof-system-internal
    org.freedesktop.udisks.filesystem-mount
    org.freedesktop.udisks.filesystem-mount-system-internal
    org.freedesktop.udisks.filesystem-unmount-others
    org.freedesktop.udisks.inhibit-polling
    org.freedesktop.udisks.linux-lvm2
    org.freedesktop.udisks.linux-md
    org.freedesktop.udisks.luks-lock-others
    org.freedesktop.udisks.luks-unlock
    org.freedesktop.udisks2.ata-smart-selftest
    org.freedesktop.udisks2.ata-smart-update
    org.freedesktop.udisks2.encrypted-change-passphrase
    org.freedesktop.udisks2.encrypted-change-passphrase-system
    org.freedesktop.udisks2.encrypted-lock-others
    org.freedesktop.udisks2.encrypted-unlock
    org.freedesktop.udisks2.encrypted-unlock-crypttab
    org.freedesktop.udisks2.encrypted-unlock-system
    org.freedesktop.udisks2.filesystem-fstab
    org.freedesktop.udisks2.filesystem-mount
    org.freedesktop.udisks2.filesystem-mount-system
    org.freedesktop.udisks2.filesystem-unmount-others
    org.freedesktop.udisks2.loop-delete-others
    org.freedesktop.udisks2.loop-setup
    org.freedesktop.udisks2.manage-swapspace
    org.freedesktop.udisks2.modify-device
    org.freedesktop.udisks2.modify-device-system
    org.freedesktop.udisks2.modify-system-configuration
    org.freedesktop.udisks2.open-device
    org.freedesktop.udisks2.open-device-system
    org.freedesktop.udisks2.read-system-configuration-secrets
    org.freedesktop.upower.hibernate
    org.freedesktop.upower.qos.cancel-request
    org.freedesktop.upower.qos.request-latency
    org.freedesktop.upower.qos.request-latency-persistent
    org.freedesktop.upower.qos.set-minimum-latency
    org.freedesktop.upower.suspend
    org.gnome.controlcenter.datetime.configure
    org.gnome.cpufreqselector
    org.gnome.gconf.defaults.set-mandatory
    org.gnome.gconf.defaults.set-system
    org.gnome.settings-daemon.plugins.power.backlight-helper
    org.gnome.settings-daemon.plugins.wacom.wacom-led-helper
    org.opensuse.cupspkhelper.mechanism.all-edit
    org.opensuse.cupspkhelper.mechanism.class-edit
    org.opensuse.cupspkhelper.mechanism.devices-get
    org.opensuse.cupspkhelper.mechanism.job-edit
    org.opensuse.cupspkhelper.mechanism.job-not-owned-edit
    org.opensuse.cupspkhelper.mechanism.printer-enable
    org.opensuse.cupspkhelper.mechanism.printer-local-edit
    org.opensuse.cupspkhelper.mechanism.printer-remote-edit
    org.opensuse.cupspkhelper.mechanism.printer-set-default
    org.opensuse.cupspkhelper.mechanism.printeraddremove
    org.opensuse.cupspkhelper.mechanism.server-settings
    $ck-list-sessions
    Session3:
    unix-user = '1000'
    realname = 'Foo Bar'
    seat = 'Seat1'
    session-type = ''
    active = FALSE
    x11-display = ''
    x11-display-device = ''
    display-device = '/dev/tty4'
    remote-host-name = ''
    is-local = TRUE
    on-since = '2012-04-29T09:03:12.867383Z'
    login-session-id = '4'
    idle-since-hint = '2012-04-29T09:03:44.206817Z'
    Session5:
    unix-user = '1000'
    realname = 'Foo Bar'
    seat = 'Seat1'
    session-type = ''
    active = TRUE
    x11-display = ':0'
    x11-display-device = '/dev/tty7'
    display-device = '/dev/tty4'
    remote-host-name = ''
    is-local = TRUE
    on-since = '2012-04-29T09:03:41.927141Z'
    login-session-id = '6'
    Session1:
    unix-user = '1000'
    realname = 'Foo Bar'
    seat = 'Seat1'
    session-type = ''
    active = FALSE
    x11-display = ''
    x11-display-device = ''
    display-device = '/dev/tty1'
    remote-host-name = ''
    is-local = TRUE
    on-since = '2012-04-29T08:59:43.385287Z'
    login-session-id = '1'
    idle-since-hint = '2012-04-29T09:22:08.209526Z'
    Session2:
    unix-user = '1000'
    realname = 'Foo Bar'
    seat = 'Seat1'
    session-type = ''
    active = FALSE
    x11-display = ''
    x11-display-device = ''
    display-device = '/dev/tty2'
    remote-host-name = ''
    is-local = TRUE
    on-since = '2012-04-29T08:59:46.207878Z'
    login-session-id = '2'
    idle-since-hint = '2012-04-29T09:22:46.226954Z'
    $ dmesg # after inserting a sd-card/thumbdrive
    udisksd[834] trap int3 ip:7fbbaa4115a1 sp:7fff78a33470 error:0
    $ dmesg # after failed launch of palimpsest
    udisksd[1224] trap int3 ip:7f5b345a05a1 sp:7fffc04a1330 error:0
    palimpsest[1221] trap int3 ip:7f62cdeee5a1 sp:7fffc5c3a780 error:0
    .config # custom kernel
    # Automatically generated file; DO NOT EDIT.
    # Linux/x86_64 3.3.4 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_GENERIC_CMOS_UPDATE=y
    CONFIG_CLOCKSOURCE_WATCHDOG=y
    CONFIG_GENERIC_CLOCKEVENTS=y
    CONFIG_ARCH_CLOCKSOURCE_DATA=y
    CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
    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_ARCH_HAS_CPU_IDLE_WAIT=y
    CONFIG_GENERIC_CALIBRATE_DELAY=y
    CONFIG_GENERIC_TIME_VSYSCALL=y
    CONFIG_ARCH_HAS_CPU_RELAX=y
    CONFIG_ARCH_HAS_DEFAULT_IDLE=y
    CONFIG_ARCH_HAS_CACHE_LINE_SIZE=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_KTIME_SCALAR is not set
    CONFIG_ARCH_CPU_PROBE_RELEASE=y
    CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
    CONFIG_HAVE_IRQ_WORK=y
    CONFIG_IRQ_WORK=y
    # General setup
    CONFIG_EXPERIMENTAL=y
    CONFIG_INIT_ENV_ARG_LIMIT=32
    CONFIG_CROSS_COMPILE=""
    CONFIG_LOCALVERSION=""
    CONFIG_LOCALVERSION_AUTO=y
    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 is not set
    # CONFIG_KERNEL_BZIP2 is not set
    # CONFIG_KERNEL_LZMA is not set
    CONFIG_KERNEL_XZ=y
    # CONFIG_KERNEL_LZO is not set
    CONFIG_DEFAULT_HOSTNAME="(none)"
    # CONFIG_SWAP is not set
    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=y
    CONFIG_FHANDLE=y
    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_HAVE_SPARSE_IRQ=y
    CONFIG_GENERIC_IRQ_PROBE=y
    CONFIG_GENERIC_IRQ_SHOW=y
    CONFIG_GENERIC_PENDING_IRQ=y
    CONFIG_IRQ_FORCED_THREADING=y
    CONFIG_SPARSE_IRQ=y
    # RCU Subsystem
    CONFIG_TREE_PREEMPT_RCU=y
    CONFIG_PREEMPT_RCU=y
    # CONFIG_RCU_TRACE is not set
    CONFIG_RCU_FANOUT=64
    # CONFIG_RCU_FANOUT_EXACT is not set
    CONFIG_RCU_FAST_NO_HZ=y
    # CONFIG_TREE_RCU_TRACE is not set
    # CONFIG_RCU_BOOST is not set
    CONFIG_IKCONFIG=y
    CONFIG_IKCONFIG_PROC=y
    CONFIG_LOG_BUF_SHIFT=19
    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 is not set
    CONFIG_CGROUP_CPUACCT=y
    CONFIG_RESOURCE_COUNTERS=y
    CONFIG_CGROUP_MEM_RES_CTLR=y
    CONFIG_CGROUP_MEM_RES_CTLR_KMEM=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_USER_NS=y
    CONFIG_PID_NS=y
    CONFIG_NET_NS=y
    CONFIG_SCHED_AUTOGROUP=y
    CONFIG_MM_OWNER=y
    # CONFIG_SYSFS_DEPRECATED 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_SYSCTL_SYSCALL is not set
    CONFIG_KALLSYMS=y
    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_PERF_COUNTERS 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_OPROFILE is not set
    CONFIG_HAVE_OPROFILE=y
    CONFIG_OPROFILE_NMI_TIMER=y
    # CONFIG_KPROBES is not set
    CONFIG_JUMP_LABEL=y
    CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=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_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
    # GCOV-based kernel profiling
    # 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 is not set
    # 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 is not set
    # Partition Types
    CONFIG_PARTITION_ADVANCED=y
    # CONFIG_ACORN_PARTITION is not set
    # CONFIG_OSF_PARTITION is not set
    # CONFIG_AMIGA_PARTITION is not set
    # CONFIG_ATARI_PARTITION is not set
    CONFIG_MAC_PARTITION=y
    CONFIG_MSDOS_PARTITION=y
    CONFIG_BSD_DISKLABEL=y
    # CONFIG_MINIX_SUBPARTITION is not set
    CONFIG_SOLARIS_X86_PARTITION=y
    # CONFIG_UNIXWARE_DISKLABEL is not set
    CONFIG_LDM_PARTITION=y
    # CONFIG_LDM_DEBUG is not set
    # CONFIG_SGI_PARTITION is not set
    # CONFIG_ULTRIX_PARTITION is not set
    # CONFIG_SUN_PARTITION is not set
    CONFIG_KARMA_PARTITION=y
    CONFIG_EFI_PARTITION=y
    # CONFIG_SYSV68_PARTITION is not set
    # IO Schedulers
    CONFIG_IOSCHED_NOOP=y
    # CONFIG_IOSCHED_DEADLINE is not set
    CONFIG_IOSCHED_CFQ=y
    CONFIG_CFQ_GROUP_IOSCHED=y
    CONFIG_DEFAULT_CFQ=y
    # CONFIG_DEFAULT_NOOP is not set
    CONFIG_DEFAULT_IOSCHED="cfq"
    # CONFIG_INLINE_SPIN_TRYLOCK is not set
    # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set
    # CONFIG_INLINE_SPIN_LOCK is not set
    # CONFIG_INLINE_SPIN_LOCK_BH is not set
    # CONFIG_INLINE_SPIN_LOCK_IRQ is not set
    # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set
    # CONFIG_INLINE_SPIN_UNLOCK is not set
    # CONFIG_INLINE_SPIN_UNLOCK_BH is not set
    # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set
    # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set
    # CONFIG_INLINE_READ_TRYLOCK is not set
    # CONFIG_INLINE_READ_LOCK is not set
    # CONFIG_INLINE_READ_LOCK_BH is not set
    # CONFIG_INLINE_READ_LOCK_IRQ is not set
    # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set
    # CONFIG_INLINE_READ_UNLOCK is not set
    # CONFIG_INLINE_READ_UNLOCK_BH is not set
    # CONFIG_INLINE_READ_UNLOCK_IRQ is not set
    # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set
    # CONFIG_INLINE_WRITE_TRYLOCK is not set
    # CONFIG_INLINE_WRITE_LOCK is not set
    # CONFIG_INLINE_WRITE_LOCK_BH is not set
    # CONFIG_INLINE_WRITE_LOCK_IRQ is not set
    # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set
    # CONFIG_INLINE_WRITE_UNLOCK is not set
    # CONFIG_INLINE_WRITE_UNLOCK_BH is not set
    # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set
    # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set
    CONFIG_MUTEX_SPIN_ON_OWNER=y
    CONFIG_FREEZER=y
    # Processor type and features
    CONFIG_ZONE_DMA=y
    CONFIG_TICK_ONESHOT=y
    CONFIG_NO_HZ=y
    CONFIG_HIGH_RES_TIMERS=y
    CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
    CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
    CONFIG_SMP=y
    CONFIG_X86_X2APIC=y
    # CONFIG_X86_MPPARSE is not set
    # CONFIG_X86_EXTENDED_PLATFORM is not set
    CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
    CONFIG_SCHED_OMIT_FRAME_POINTER=y
    # CONFIG_PARAVIRT_GUEST is not set
    CONFIG_NO_BOOTMEM=y
    # CONFIG_MEMTEST is not set
    # CONFIG_MK8 is not set
    # CONFIG_MPSC is not set
    CONFIG_MCORE2=y
    # CONFIG_MATOM is not set
    # CONFIG_GENERIC_CPU is not set
    CONFIG_X86_INTERNODE_CACHE_SHIFT=7
    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_P6_NOP=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 is not set
    CONFIG_SWIOTLB=y
    CONFIG_IOMMU_HELPER=y
    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 is not set
    CONFIG_PREEMPT=y
    CONFIG_PREEMPT_COUNT=y
    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 is not set
    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 is not set
    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 is not set
    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_MEMORY_PROBE=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=y
    CONFIG_MEMORY_HOTPLUG_SPARSE=y
    CONFIG_MEMORY_HOTREMOVE=y
    CONFIG_PAGEFLAGS_EXTENDED=y
    CONFIG_SPLIT_PTLOCK_CPUS=4
    CONFIG_COMPACTION=y
    CONFIG_MIGRATION=y
    CONFIG_PHYS_ADDR_T_64BIT=y
    CONFIG_ZONE_DMA_FLAG=1
    CONFIG_BOUNCE=y
    CONFIG_VIRT_TO_BUS=y
    CONFIG_KSM=y
    CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
    CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
    CONFIG_MEMORY_FAILURE=y
    CONFIG_TRANSPARENT_HUGEPAGE=y
    CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
    # CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
    CONFIG_CLEANCACHE=y
    # CONFIG_X86_CHECK_BIOS_CORRUPTION is not set
    CONFIG_X86_RESERVE_LOW=64
    CONFIG_MTRR=y
    CONFIG_MTRR_SANITIZER=y
    CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
    CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
    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=y
    # 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 is not set
    CONFIG_PHYSICAL_START=0x1000000
    CONFIG_RELOCATABLE=y
    CONFIG_PHYSICAL_ALIGN=0x1000000
    CONFIG_HOTPLUG_CPU=y
    # CONFIG_CMDLINE_BOOL is not set
    CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
    CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
    CONFIG_USE_PERCPU_NUMA_NODE_ID=y
    # Power management and ACPI options
    CONFIG_SUSPEND=y
    CONFIG_SUSPEND_FREEZER=y
    CONFIG_PM_SLEEP=y
    CONFIG_PM_SLEEP_SMP=y
    CONFIG_PM_RUNTIME=y
    CONFIG_PM=y
    CONFIG_PM_DEBUG=y
    # CONFIG_PM_ADVANCED_DEBUG is not set
    # CONFIG_PM_TEST_SUSPEND is not set
    CONFIG_CAN_PM_TRACE=y
    # CONFIG_PM_TRACE_RTC is not set
    CONFIG_ACPI=y
    CONFIG_ACPI_SLEEP=y
    # CONFIG_ACPI_PROCFS is not set
    # CONFIG_ACPI_PROCFS_POWER is not set
    # CONFIG_ACPI_EC_DEBUGFS is not set
    # CONFIG_ACPI_PROC_EVENT is not set
    CONFIG_ACPI_AC=y
    CONFIG_ACPI_BATTERY=y
    CONFIG_ACPI_BUTTON=y
    CONFIG_ACPI_VIDEO=y
    CONFIG_ACPI_FAN=y
    CONFIG_ACPI_DOCK=y
    CONFIG_ACPI_PROCESSOR=y
    CONFIG_ACPI_HOTPLUG_CPU=y
    CONFIG_ACPI_PROCESSOR_AGGREGATOR=y
    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=y
    CONFIG_X86_PM_TIMER=y
    CONFIG_ACPI_CONTAINER=y
    CONFIG_ACPI_HOTPLUG_MEMORY=y
    CONFIG_ACPI_SBS=y
    # CONFIG_ACPI_HED is not set
    CONFIG_ACPI_APEI=y
    # CONFIG_ACPI_APEI_GHES is not set
    # CONFIG_ACPI_APEI_PCIEAER is not set
    # CONFIG_ACPI_APEI_MEMORY_FAILURE is not set
    # CONFIG_ACPI_APEI_ERST_DEBUG is not set
    CONFIG_SFI=y
    # CPU Frequency scaling
    CONFIG_CPU_FREQ=y
    CONFIG_CPU_FREQ_TABLE=y
    # CONFIG_CPU_FREQ_STAT is not set
    CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
    # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
    CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
    CONFIG_CPU_FREQ_GOV_POWERSAVE=y
    CONFIG_CPU_FREQ_GOV_USERSPACE=y
    # CONFIG_CPU_FREQ_GOV_ONDEMAND is not set
    # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
    # x86 CPU frequency scaling drivers
    CONFIG_X86_PCC_CPUFREQ=y
    CONFIG_X86_ACPI_CPUFREQ=y
    # CONFIG_X86_POWERNOW_K8 is not set
    # 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_INTEL_IDLE=y
    # 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_DOMAINS=y
    # CONFIG_PCI_CNB20LE_QUIRK is not set
    CONFIG_PCIEPORTBUS=y
    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_PCIE_PME=y
    CONFIG_ARCH_SUPPORTS_MSI=y
    CONFIG_PCI_MSI=y
    # CONFIG_PCI_STUB is not set
    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 is not set
    # CONFIG_PD6729 is not set
    # CONFIG_I82092 is not set
    # CONFIG_HOTPLUG_PCI is not set
    # CONFIG_RAPIDIO is not set
    # Executable file formats / Emulations
    CONFIG_BINFMT_ELF=y
    CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y
    # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
    # CONFIG_HAVE_AOUT is not set
    # CONFIG_BINFMT_MISC is not set
    # CONFIG_IA32_EMULATION is not set
    # CONFIG_COMPAT_FOR_U64_ALIGNMENT is not set
    CONFIG_HAVE_TEXT_POKE_SMP=y
    CONFIG_NET=y
    # Networking options
    CONFIG_PACKET=y
    CONFIG_UNIX=y
    CONFIG_UNIX_DIAG=y
    CONFIG_XFRM=y
    # CONFIG_XFRM_USER is not set
    # CONFIG_XFRM_SUB_POLICY is not set
    # CONFIG_XFRM_MIGRATE is not set
    # CONFIG_XFRM_STATISTICS is not set
    CONFIG_XFRM_IPCOMP=y
    # CONFIG_NET_KEY is not set
    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_PNP is not set
    # CONFIG_NET_IPIP is not set
    # CONFIG_NET_IPGRE_DEMUX is not set
    CONFIG_IP_MROUTE=y
    # CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set
    CONFIG_IP_PIMSM_V1=y
    CONFIG_IP_PIMSM_V2=y
    # CONFIG_ARPD is not set
    CONFIG_SYN_COOKIES=y
    # CONFIG_INET_AH is not set
    # CONFIG_INET_ESP is not set
    # CONFIG_INET_IPCOMP is not set
    # CONFIG_INET_XFRM_TUNNEL is not set
    CONFIG_INET_TUNNEL=y
    # CONFIG_INET_XFRM_MODE_TRANSPORT is not set
    # CONFIG_INET_XFRM_MODE_TUNNEL is not set
    # CONFIG_INET_XFRM_MODE_BEET is not set
    CONFIG_INET_LRO=y
    CONFIG_INET_DIAG=y
    CONFIG_INET_TCP_DIAG=y
    CONFIG_INET_UDP_DIAG=y
    CONFIG_TCP_CONG_ADVANCED=y
    # CONFIG_TCP_CONG_BIC is not set
    CONFIG_TCP_CONG_CUBIC=y
    # CONFIG_TCP_CONG_WESTWOOD is not set
    # CONFIG_TCP_CONG_HTCP is not set
    # CONFIG_TCP_CONG_HSTCP is not set
    # CONFIG_TCP_CONG_HYBLA is not set
    # CONFIG_TCP_CONG_VEGAS is not set
    # CONFIG_TCP_CONG_SCALABLE is not set
    # CONFIG_TCP_CONG_LP is not set
    # CONFIG_TCP_CONG_VENO is not set
    # CONFIG_TCP_CONG_YEAH is not set
    # CONFIG_TCP_CONG_ILLINOIS is not set
    CONFIG_DEFAULT_CUBIC=y
    # CONFIG_DEFAULT_RENO is not set
    CONFIG_DEFAULT_TCP_CONG="cubic"
    # CONFIG_TCP_MD5SIG is not set
    CONFIG_IPV6=y
    CONFIG_IPV6_PRIVACY=y
    CONFIG_IPV6_ROUTER_PREF=y
    CONFIG_IPV6_ROUTE_INFO=y
    CONFIG_IPV6_OPTIMISTIC_DAD=y
    CONFIG_INET6_AH=y
    CONFIG_INET6_ESP=y
    CONFIG_INET6_IPCOMP=y
    CONFIG_IPV6_MIP6=y
    CONFIG_INET6_XFRM_TUNNEL=y
    CONFIG_INET6_TUNNEL=y
    CONFIG_INET6_XFRM_MODE_TRANSPORT=y
    CONFIG_INET6_XFRM_MODE_TUNNEL=y
    CONFIG_INET6_XFRM_MODE_BEET=y
    CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=y
    CONFIG_IPV6_SIT=y
    # CONFIG_IPV6_SIT_6RD is not set
    CONFIG_IPV6_NDISC_NODETYPE=y
    # CONFIG_IPV6_TUNNEL is not set
    CONFIG_IPV6_MULTIPLE_TABLES=y
    # CONFIG_IPV6_SUBTREES is not set
    # CONFIG_IPV6_MROUTE is not set
    CONFIG_NETWORK_SECMARK=y
    CONFIG_NETWORK_PHY_TIMESTAMPING=y
    CONFIG_NETFILTER=y
    # CONFIG_NETFILTER_DEBUG is not set
    CONFIG_NETFILTER_ADVANCED=y
    # Core Netfilter Configuration
    CONFIG_NETFILTER_NETLINK=y
    CONFIG_NETFILTER_NETLINK_ACCT=y
    # CONFIG_NETFILTER_NETLINK_QUEUE is not set
    # CONFIG_NETFILTER_NETLINK_LOG is not set
    # CONFIG_NF_CONNTRACK is not set
    # CONFIG_NETFILTER_XTABLES is not set
    CONFIG_IP_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 is not set
    # CONFIG_IP_NF_QUEUE is not set
    # CONFIG_IP_NF_IPTABLES is not set
    # CONFIG_IP_NF_ARPTABLES is not set
    # IPv6: Netfilter Configuration
    # CONFIG_NF_DEFRAG_IPV6 is not set
    # CONFIG_IP6_NF_QUEUE is not set
    # CONFIG_IP6_NF_IPTABLES is not set
    # CONFIG_IP_DCCP is not set
    CONFIG_IP_SCTP=y
    # 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=y
    # CONFIG_SCTP_HMAC_MD5 is not set
    # CONFIG_RDS is not set
    # CONFIG_TIPC is not set
    # CONFIG_ATM is not set
    # CONFIG_L2TP is not set
    # CONFIG_BRIDGE is not set
    # CONFIG_NET_DSA is not set
    # CONFIG_VLAN_8021Q is not set
    # CONFIG_DECNET is not set
    # 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_ECONET is not set
    # CONFIG_WAN_ROUTER is not set
    # CONFIG_PHONET is not set
    # CONFIG_IEEE802154 is not set
    CONFIG_NET_SCHED=y
    # Queueing/Scheduling
    # CONFIG_NET_SCH_CBQ is not set
    # CONFIG_NET_SCH_HTB is not set
    # CONFIG_NET_SCH_HFSC is not set
    # CONFIG_NET_SCH_PRIO is not set
    # CONFIG_NET_SCH_MULTIQ is not set
    # CONFIG_NET_SCH_RED is not set
    # CONFIG_NET_SCH_SFB is not set
    # CONFIG_NET_SCH_SFQ is not set
    # CONFIG_NET_SCH_TEQL is not set
    # CONFIG_NET_SCH_TBF is not set
    # CONFIG_NET_SCH_GRED is not set
    # CONFIG_NET_SCH_DSMARK is not set
    # CONFIG_NET_SCH_NETEM is not set
    # CONFIG_NET_SCH_DRR is not set
    # CONFIG_NET_SCH_MQPRIO is not set
    # CONFIG_NET_SCH_CHOKE is not set
    # CONFIG_NET_SCH_QFQ is not set
    # CONFIG_NET_SCH_INGRESS is not set
    # Classification
    CONFIG_NET_CLS=y
    # CONFIG_NET_CLS_BASIC is not set
    # CONFIG_NET_CLS_TCINDEX is not set
    # CONFIG_NET_CLS_ROUTE4 is not set
    # CONFIG_NET_CLS_FW is not set
    # CONFIG_NET_CLS_U32 is not set
    # CONFIG_NET_CLS_RSVP is not set
    # CONFIG_NET_CLS_RSVP6 is not set
    # CONFIG_NET_CLS_FLOW is not set
    CONFIG_NET_CLS_CGROUP=y
    # CONFIG_NET_EMATCH is not set
    CONFIG_NET_CLS_ACT=y
    # CONFIG_NET_ACT_POLICE is not set
    # CONFIG_NET_ACT_GACT is not set
    # CONFIG_NET_ACT_MIRRED is not set
    # CONFIG_NET_ACT_NAT is not set
    # CONFIG_NET_ACT_PEDIT is not set
    # CONFIG_NET_ACT_SIMP is not set
    # CONFIG_NET_ACT_SKBEDIT is not set
    # CONFIG_NET_ACT_CSUM is not set
    CONFIG_NET_SCH_FIFO=y
    # CONFIG_DCB is not set
    CONFIG_DNS_RESOLVER=y
    CONFIG_BATMAN_ADV=y
    # CONFIG_BATMAN_ADV_DEBUG is not set
    # CONFIG_OPENVSWITCH is not set
    CONFIG_RPS=y
    CONFIG_RFS_ACCEL=y
    CONFIG_XPS=y
    CONFIG_NETPRIO_CGROUP=y
    CONFIG_BQL=y
    CONFIG_HAVE_BPF_JIT=y
    CONFIG_BPF_JIT=y
    # Network testing
    # CONFIG_NET_PKTGEN is not set
    # CONFIG_HAMRADIO is not set
    # CONFIG_CAN is not set
    # CONFIG_IRDA is not set
    CONFIG_BT=m
    CONFIG_BT_RFCOMM=m
    CONFIG_BT_RFCOMM_TTY=y
    CONFIG_BT_BNEP=m
    CONFIG_BT_BNEP_MC_FILTER=y
    CONFIG_BT_BNEP_PROTO_FILTER=y
    CONFIG_BT_HIDP=m
    # Bluetooth device drivers
    CONFIG_BT_HCIBTUSB=m
    # CONFIG_BT_HCIUART is not set
    # CONFIG_BT_HCIBCM203X is not set
    # CONFIG_BT_HCIBPA10X is not set
    # CONFIG_BT_HCIBFUSB is not set
    # CONFIG_BT_HCIDTL1 is not set
    # CONFIG_BT_HCIBT3C is not set
    # CONFIG_BT_HCIBLUECARD is not set
    # CONFIG_BT_HCIBTUART is not set
    # CONFIG_BT_HCIVHCI is not set
    # CONFIG_BT_MRVL is not set
    # CONFIG_BT_ATH3K is not set
    # CONFIG_AF_RXRPC is not set
    CONFIG_FIB_RULES=y
    CONFIG_WIRELESS=y
    CONFIG_WEXT_CORE=y
    CONFIG_WEXT_PROC=y
    CONFIG_CFG80211=y
    # CONFIG_NL80211_TESTMODE is not set
    # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
    # CONFIG_CFG80211_REG_DEBUG is not set
    CONFIG_CFG80211_DEFAULT_PS=y
    # CONFIG_CFG80211_INTERNAL_REGDB is not set
    CONFIG_CFG80211_WEXT=y
    # CONFIG_WIRELESS_EXT_SYSFS is not set
    # CONFIG_LIB80211 is not set
    CONFIG_MAC80211=y
    CONFIG_MAC80211_HAS_RC=y
    CONFIG_MAC80211_RC_MINSTREL=y
    CONFIG_MAC80211_RC_MINSTREL_HT=y
    CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
    CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
    CONFIG_MAC80211_MESH=y
    CONFIG_MAC80211_LEDS=y
    # CONFIG_MAC80211_DEBUG_MENU is not set
    # CONFIG_WIMAX is not set
    CONFIG_RFKILL=y
    CONFIG_RFKILL_LEDS=y
    CONFIG_RFKILL_INPUT=y
    # CONFIG_NET_9P is not set
    # CONFIG_CAIF is not set
    # CONFIG_CEPH_LIB is not set
    # CONFIG_NFC is not set
    # Device Drivers
    # Generic Driver Options
    CONFIG_UEVENT_HELPER_PATH=""
    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/REDWOOD_me.bin radeon/REDWOOD_pfp.bin radeon/REDWOOD_rlc.bin"
    CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware"
    # CONFIG_SYS_HYPERVISOR is not set
    # CONFIG_GENERIC_CPU_DEVICES is not set
    # CONFIG_DMA_SHARED_BUFFER is not set
    CONFIG_CONNECTOR=y
    CONFIG_PROC_EVENTS=y
    # CONFIG_MTD is not set
    # CONFIG_PARPORT is not set
    CONFIG_PNP=y
    # CONFIG_PNP_DEBUG_MESSAGES is not set
    # Protocols
    CONFIG_PNPACPI=y
    CONFIG_BLK_DEV=y
    # CONFIG_BLK_DEV_FD is not set
    # CONFIG_BLK_CPQ_DA is not set
    # CONFIG_BLK_CPQ_CISS_DA is not set
    # CONFIG_BLK_DEV_DAC960 is not set
    # CONFIG_BLK_DEV_UMEM is not set
    # CONFIG_BLK_DEV_COW_COMMON is not set
    CONFIG_BLK_DEV_LOOP=y
    CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
    # CONFIG_BLK_DEV_CRYPTOLOOP is not set
    # CONFIG_BLK_DEV_DRBD is not set
    # CONFIG_BLK_DEV_NBD is not set
    # CONFIG_BLK_DEV_NVME is not set
    # CONFIG_BLK_DEV_SX8 is not set
    # CONFIG_BLK_DEV_UB is not set
    # CONFIG_BLK_DEV_RAM is not set
    # CONFIG_CDROM_PKTCDVD is not set
    # CONFIG_ATA_OVER_ETH is not set
    # CONFIG_BLK_DEV_HD is not set
    # CONFIG_BLK_DEV_RBD is not set
    # 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 is not set
    # CONFIG_ICS932S401 is not set
    # CONFIG_ENCLOSURE_SERVICES 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 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 is not set
    # CONFIG_EEPROM_LEGACY is not set
    # CONFIG_EEPROM_MAX6875 is not set
    # CONFIG_EEPROM_93CX6 is not set
    # CONFIG_CB710_CORE is not set
    # Texas Instruments shared transport line discipline
    # CONFIG_SENSORS_LIS3_I2C is not set
    # Altera FPGA firmware download module
    # CONFIG_ALTERA_STAPL is not set
    CONFIG_HAVE_IDE=y
    # CONFIG_IDE is not set
    # SCSI device support
    CONFIG_SCSI_MOD=y
    # CONFIG_RAID_ATTRS is not set
    CONFIG_SCSI=y
    CONFIG_SCSI_DMA=y
    # CONFIG_SCSI_TGT is not set
    CONFIG_SCSI_NETLINK=y
    # CONFIG_SCSI_PROC_FS is not set
    # SCSI support type (disk, tape, CD-ROM)
    CONFIG_BLK_DEV_SD=y
    # CONFIG_CHR_DEV_ST is not set
    # CONFIG_CHR_DEV_OSST is not set
    # CONFIG_BLK_DEV_SR is not set
    CONFIG_CHR_DEV_SG=y
    # CONFIG_CHR_DEV_SCH is not set
    CONFIG_SCSI_MULTI_LUN=y
    # CONFIG_SCSI_CONSTANTS is not set
    # CONFIG_SCSI_LOGGING is not set
    CONFIG_SCSI_SCAN_ASYNC=y
    CONFIG_SCSI_WAIT_SCAN=m
    # SCSI Transports
    # CONFIG_SCSI_SPI_ATTRS is not set
    CONFIG_SCSI_FC_ATTRS=y
    CONFIG_SCSI_ISCSI_ATTRS=y
    # CONFIG_SCSI_SAS_ATTRS is not set
    # CONFIG_SCSI_SAS_LIBSAS is not set
    # CONFIG_SCSI_SRP_ATTRS is not set
    # CONFIG_SCSI_LOWLEVEL is not set
    # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set
    # CONFIG_SCSI_DH is not set
    # 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 is not set
    # CONFIG_SATA_ACARD_AHCI is not set
    # CONFIG_SATA_SIL24 is not set
    # CONFIG_ATA_SFF is not set
    # CONFIG_MD is not set
    # 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 is not set
    CONFIG_NETDEVICES=y
    CONFIG_NET_CORE=y
    # CONFIG_BONDING is not set
    # CONFIG_DUMMY is not set
    # CONFIG_EQUALIZER is not set
    # CONFIG_NET_FC is not set
    CONFIG_MII=y
    # CONFIG_IFB is not set
    CONFIG_NET_TEAM=y
    CONFIG_NET_TEAM_MODE_ROUNDROBIN=y
    CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=y
    # CONFIG_MACVLAN is not set
    # CONFIG_NETCONSOLE is not set
    # CONFIG_NETPOLL is not set
    # CONFIG_NET_POLL_CONTROLLER is not set
    # CONFIG_TUN is not set
    # CONFIG_VETH is not set
    # CONFIG_ARCNET is not set
    # CAIF transport drivers
    CONFIG_ETHERNET=y
    # CONFIG_NET_VENDOR_3COM is not set
    # CONFIG_NET_VENDOR_ADAPTEC is not set
    # CONFIG_NET_VENDOR_ALTEON is not set
    # CONFIG_NET_VENDOR_AMD is not set
    CONFIG_NET_VENDOR_ATHEROS=y
    # CONFIG_ATL2 is not set
    # CONFIG_ATL1 is not set
    # CONFIG_ATL1E is not set
    CONFIG_ATL1C=y
    # CONFIG_NET_VENDOR_BROADCOM is not set
    # CONFIG_NET_VENDOR_BROCADE is not set
    # CONFIG_NET_CALXEDA_XGMAC is not set
    # CONFIG_NET_VENDOR_CHELSIO is not set
    # CONFIG_NET_VENDOR_CISCO is not set
    # CONFIG_DNET is not set
    # CONFIG_NET_VENDOR_DEC is not set
    # CONFIG_NET_VENDOR_DLINK is not set
    # CONFIG_NET_VENDOR_EMULEX is not set
    # CONFIG_NET_VENDOR_EXAR is not set
    # CONFIG_NET_VENDOR_FUJITSU is not set
    # CONFIG_NET_VENDOR_HP is not set
    # CONFIG_NET_VENDOR_INTEL is not set
    # CONFIG_IP1000 is not set
    # CONFIG_JME is not set
    # CONFIG_NET_VENDOR_MARVELL is not set
    # CONFIG_NET_VENDOR_MELLANOX is not set
    # CONFIG_NET_VENDOR_MICREL is not set
    # CONFIG_NET_VENDOR_MYRI is not set
    # CONFIG_FEALNX is not set
    # CONFIG_NET_VENDOR_NATSEMI is not set
    # CONFIG_NET_VENDOR_NVIDIA is not set
    # CONFIG_NET_VENDOR_OKI is not set
    # CONFIG_ETHOC is not set
    # CONFIG_NET_PACKET_ENGINE is not set
    # CONFIG_NET_VENDOR_QLOGIC is not set
    # CONFIG_NET_VENDOR_REALTEK is not set
    # CONFIG_NET_VENDOR_RDC is not set
    # CONFIG_NET_VENDOR_SEEQ is not set
    # CONFIG_NET_VENDOR_SILAN is not set
    # CONFIG_NET_VENDOR_SIS is not set
    # CONFIG_SFC is not set
    # CONFIG_NET_VENDOR_SMSC is not set
    # CONFIG_NET_VENDOR_STMICRO is not set
    # CONFIG_NET_VENDOR_SUN is not set
    # CONFIG_NET_VENDOR_TEHUTI is not set
    # CONFIG_NET_VENDOR_TI is not set
    # CONFIG_NET_VENDOR_VIA is not set
    # CONFIG_NET_VENDOR_XIRCOM is not set
    # CONFIG_FDDI is not set
    # CONFIG_HIPPI is not set
    # CONFIG_NET_SB1000 is not set
    # CONFIG_PHYLIB is not set
    CONFIG_PPP=y
    CONFIG_PPP_BSDCOMP=y
    CONFIG_PPP_DEFLATE=y
    CONFIG_PPP_FILTER=y
    CONFIG_PPP_MPPE=y
    CONFIG_PPP_MULTILINK=y
    CONFIG_PPPOE=y
    CONFIG_PPP_ASYNC=y
    CONFIG_PPP_SYNC_TTY=y
    # CONFIG_SLIP is not set
    CONFIG_SLHC=y
    # CONFIG_TR is not set
    # USB Network Adapters
    # CONFIG_USB_CATC is not set
    # CONFIG_USB_KAWETH is not set
    # CONFIG_USB_PEGASUS is not set
    # CONFIG_USB_RTL8150 is not set
    # CONFIG_USB_USBNET is not set
    # CONFIG_USB_HSO is not set
    # CONFIG_USB_IPHETH is not set
    CONFIG_WLAN=y
    # CONFIG_PCMCIA_RAYCS is not set
    # CONFIG_LIBERTAS_THINFIRM is not set
    # CONFIG_AIRO is not set
    # CONFIG_ATMEL is not set
    # CONFIG_AT76C50X_USB is not set
    # CONFIG_AIRO_CS is not set
    # CONFIG_PCMCIA_WL3501 is not set
    # CONFIG_PRISM54 is not set
    # CONFIG_USB_ZD1201 is not set
    # CONFIG_USB_NET_RNDIS_WLAN is not set
    # CONFIG_RTL8180 is not set
    # CONFIG_RTL8187 is not set
    # CONFIG_ADM8211 is not set
    # CONFIG_MAC80211_HWSIM is not set
    # CONFIG_MWL8K is not set
    CONFIG_ATH_COMMON=y
    # CONFIG_ATH_DEBUG is not set
    # CONFIG_ATH5K is not set
    # CONFIG_ATH5K_PCI is not set
    CONFIG_ATH9K_HW=y
    CONFIG_ATH9K_COMMON=y
    CONFIG_ATH9K=y
    CONFIG_ATH9K_PCI=y
    CONFIG_ATH9K_AHB=y
    CONFIG_ATH9K_RATE_CONTROL=y
    CONFIG_ATH9K_BTCOEX_SUPPORT=y
    # CONFIG_ATH9K_HTC is not set
    # CONFIG_CARL9170 is not set
    # CONFIG_B43 is not set
    # CONFIG_B43LEGACY is not set
    # CONFIG_BRCMFMAC is not set
    # CONFIG_HOSTAP is not set
    # CONFIG_IPW2100 is not set
    # CONFIG_IPW2200 is not set
    # CONFIG_IWLWIFI is not set
    # CONFIG_IWL4965 is not set
    # CONFIG_IWL3945 is not set
    # CONFIG_LIBERTAS is not set
    # CONFIG_HERMES is not set
    # CONFIG_P54_COMMON is not set
    # CONFIG_RT2X00 is not set
    # CONFIG_RTL8192CE is not set
    # CONFIG_RTL8192SE is not set
    # CONFIG_RTL8192DE is not set
    # CONFIG_RTL8192CU is not set
    # CONFIG_WL1251 is not set
    # CONFIG_WL12XX_MENU is not set
    # CONFIG_ZD1211RW is not set
    # CONFIG_MWIFIEX is not set
    # Enable WiMAX (Networking options) to see the WiMAX drivers
    # CONFIG_WAN is not set
    # CONFIG_VMXNET3 is not set
    # CONFIG_ISDN is not set
    # CONFIG_PHONE is not set
    # Input device support
    CONFIG_INPUT=y
    # CONFIG_INPUT_FF_MEMLESS is not set
    # CONFIG_INPUT_POLLDEV is not set
    CONFIG_INPUT_SPARSEKMAP=y
    # 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_ADP5588 is not set
    # CONFIG_KEYBOARD_ADP5589 is not set
    CONFIG_KEYBOARD_ATKBD=y
    # CONFIG_KEYBOARD_QT1070 is not set
    # CONFIG_KEYBOARD_QT2160 is not set
    # CONFIG_KEYBOARD_LKKBD is not set
    # CONFIG_KEYBOARD_TCA6416 is not set
    # CONFIG_KEYBOARD_TCA8418 is not set
    # CONFIG_KEYBOARD_LM8323 is not set
    # CONFIG_KEYBOARD_MAX7359 is not set
    # CONFIG_KEYBOARD_MCS is not set
    # CONFIG_KEYBOARD_MPR121 is not set
    # CONFIG_KEYBOARD_NEWTON is not set
    # CONFIG_KEYBOARD_OPENCORES is not set
    # CONFIG_KEYBOARD_STOWAWAY is not set
    # CONFIG_KEYBOARD_SUNKBD is not set
    # CONFIG_KEYBOARD_XTKBD is not set
    CONFIG_INPUT_MOUSE=y
    CONFIG_MOUSE_PS2=y
    CONFIG_MOUSE_PS2_ALPS=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 is not set
    # CONFIG_MOUSE_APPLETOUCH is not set
    # CONFIG_MOUSE_BCM5974 is not set
    # CONFIG_MOUSE_VSXXXAA is not set
    # CONFIG_MOUSE_SYNAPTICS_I2C is not set
    # CONFIG_INPUT_JOYSTICK is not set
    # CONFIG_INPUT_TABLET is not set
    # CONFIG_INPUT_TOUCHSCREEN is not set
    # CONFIG_INPUT_MISC is not set
    # Hardware I/O ports
    CONFIG_SERIO=y
    CONFIG_SERIO_I8042=y
    # CONFIG_SERIO_SERPORT is not set
    # CONFIG_SERIO_CT82C710 is not set
    # CONFIG_SERIO_PCIPS2 is not set
    CONFIG_SERIO_LIBPS2=y
    # CONFIG_SERIO_RAW is not set
    # CONFIG_SERIO_ALTERA_PS2 is not set
    # CONFIG_SERIO_PS2MULT is not set
    # CONFIG_GAMEPORT is not set
    # 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=y
    # CONFIG_LEGACY_PTYS is not set
    # CONFIG_SERIAL_NONSTANDARD is not set
    # CONFIG_NOZOMI is not set
    # CONFIG_N_GSM is not set
    # CONFIG_TRACE_SINK is not set
    # CONFIG_DEVKMEM 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 is not set
    CONFIG_SERIAL_8250_NR_UARTS=32
    CONFIG_SERIAL_8250_RUNTIME_UARTS=4
    # CONFIG_SERIAL_8250_EXTENDED is not set
    # Non-8250 serial port support
    # CONFIG_SERIAL_MFD_HSU is not set
    CONFIG_SERIAL_CORE=y
    CONFIG_SERIAL_CORE_CONSOLE=y
    # CONFIG_SERIAL_JSM is not set
    # CONFIG_SERIAL_TIMBERDALE is not set
    # CONFIG_SERIAL_ALTERA_JTAGUART is not set
    # CONFIG_SERIAL_ALTERA_UART is not set
    # CONFIG_SERIAL_PCH_UART is not set
    # CONFIG_SERIAL_XILINX_PS_UART is not set
    # CONFIG_IPMI_HANDLER is not set
    CONFIG_HW_RANDOM=y
    # CONFIG_HW_RANDOM_TIMERIOMEM is not set
    CONFIG_HW_RANDOM_INTEL=y
    # CONFIG_HW_RANDOM_AMD is not set
    # CONFIG_HW_RANDOM_VIA is not set
    CONFIG_NVRAM=y
    # CONFIG_R3964 is not set
    # CONFIG_APPLICOM is not set
    # PCMCIA character devices
    # CONFIG_SYNCLINK_CS is not set
    # CONFIG_CARDMAN_4000 is not set
    # CONFIG_CARDMAN_4040 is not set
    # CONFIG_IPWIRELESS is not set
    # CONFIG_MWAVE is not set
    # CONFIG_RAW_DRIVER is not set
    CONFIG_HPET=y
    CONFIG_HPET_MMAP=y
    # CONFIG_HANGCHECK_TIMER is not set
    # CONFIG_TCG_TPM is not set
    # CONFIG_TELCLOCK is not set
    CONFIG_DEVPORT=y
    # CONFIG_RAMOOPS is not set
    CONFIG_I2C=y
    CONFIG_I2C_BOARDINFO=y
    # CONFIG_I2C_COMPAT is not set
    CONFIG_I2C_CHARDEV=y
    # CONFIG_I2C_MUX is not set
    CONFIG_I2C_HELPER_AUTO=y
    CONFIG_I2C_ALGOBIT=y
    # I2C Hardware Bus support
    # PC SMBus host controller drivers
    # CONFIG_I2C_ALI1535 is not set
    # CONFIG_I2C_ALI1563 is not set
    # CONFIG_I2C_ALI15X3 is not set
    # CONFIG_I2C_AMD756 is not set
    # CONFIG_I2C_AMD8111 is not set
    CONFIG_I2C_I801=y
    CONFIG_I2C_ISCH=y
    # CONFIG_I2C_PIIX4 is not set
    # CONFIG_I2C_NFORCE2 is not set
    # CONFIG_I2C_SIS5595 is not set
    # CONFIG_I2C_SIS630 is not set
    # CONFIG_I2C_SIS96X is not set
    # CONFIG_I2C_VIA is not set
    # CONFIG_I2C_VIAPRO is not set
    # ACPI drivers
    # CONFIG_I2C_SCMI is not set
    # I2C system bus drivers (mostly embedded / system-on-chip)
    # CONFIG_I2C_DESIGNWARE_PCI is not set
    # CONFIG_I2C_INTEL_MID is not set
    # CONFIG_I2C_OCORES is not set
    # CONFIG_I2C_PCA_PLATFORM is not set
    # CONFIG_I2C_PXA_PCI is not set
    # CONFIG_I2C_SIMTEC is not set
    # CONFIG_I2C_XILINX is not set
    # CONFIG_I2C_EG20T is not set
    # External I2C/SMBus adapter drivers
    # CONFIG_I2C_DIOLAN_U2C is not set
    # CONFIG_I2C_PARPORT_LIGHT is not set
    # CONFIG_I2C_TAOS_EVM is not set
    # CONFIG_I2C_TINY_USB is not set
    # Other I2C/SMBus bus drivers
    # CONFIG_I2C_STUB is not set
    # 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
    # PPS support
    # CONFIG_PPS is not set
    # PPS generators support
    # PTP clock support
    # Enable Device Drivers -> PPS to see the PTP clock options.
    CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
    # CONFIG_GPIOLIB is not set
    # CONFIG_W1 is not set
    CONFIG_POWER_SUPPLY=y
    # CONFIG_POWER_SUPPLY_DEBUG is not set
    # CONFIG_PDA_POWER is not set
    # CONFIG_TEST_POWER is not set
    # CONFIG_BATTERY_DS2780 is not set
    # CONFIG_BATTERY_DS2782 is not set
    # CONFIG_BATTERY_SBS is not set
    # CONFIG_BATTERY_BQ27x00 is not set
    # CONFIG_BATTERY_MAX17040 is not set
    # CONFIG_BATTERY_MAX17042 is not set
    # CONFIG_CHARGER_MAX8903 is not set
    # CONFIG_CHARGER_LP8727 is not set
    CONFIG_HWMON=y
    # CONFIG_HWMON_VID is not set
    # CONFIG_HWMON_DEBUG_CHIP is not set
    # Native drivers
    # CONFIG_SENSORS_ABITUGURU is not set
    # CONFIG_SENSORS_ABITUGURU3 is not set
    # CONFIG_SENSORS_AD7414 is not set
    # CONFIG_SENSORS_AD7418 is not set
    # CONFIG_SENSORS_ADM1021 is not set
    # CONFIG_SENSORS_ADM1025 is not set
    # CONFIG_SENSORS_ADM1026 is not set
    # CONFIG_SENSORS_ADM1029 is not set
    # CONFIG_SENSORS_ADM1031 is not set
    # CONFIG_SENSORS_ADM9240 is not set
    # CONFIG_SENSORS_ADT7411 is not set
    # CONFIG_SENSORS_ADT7462 is not set
    # CONFIG_SENSORS_ADT7470 is not set
    # CONFIG_SENSORS_ADT7475 is not set
    # CONFIG_SENSORS_ASC7621 is not set
    # CONFIG_SENSORS_K8TEMP is not set
    # CONFIG_SENSORS_K10TEMP is not set
    # CONFIG_SENSORS_FAM15H_POWER is not set
    # CONFIG_SENSORS_ASB100 is not set
    # CONFIG_SENSORS_ATXP1 is not set
    # CONFIG_SENSORS_DS620 is not set
    # CONFIG_SENSORS_DS1621 is not set
    # CONFIG_SENSORS_I5K_AMB is not set
    # CONFIG_SENSORS_F71805F is not set
    # CONFIG_SENSORS_F71882FG is not set
    # CONFIG_SENSORS_F75375S is not set
    # CONFIG_SENSORS_FSCHMD is not set
    # CONFIG_SENSORS_G760A is not set
    # CONFIG_SENSORS_GL518SM is not set
    # CONFIG_SENSORS_GL520SM is not set
    CONFIG_SENSORS_CORETEMP=y
    # CONFIG_SENSORS_IT87 is not set
    CONFIG_SENSORS_JC42=y
    # CONFIG_SENSORS_LINEAGE is not set
    # CONFIG_SENSORS_LM63 is not set
    # CONFIG_SENSORS_LM73 is not set
    # CONFIG_SENSORS_LM75 is not set
    # CONFIG_SENSORS_LM77 is not set
    # CONFIG_SENSORS_LM78 is not set
    # CONFIG_SENSORS_LM80 is not set
    # CONFIG_SENSORS_LM83 is not set
    # CONFIG_SENSORS_LM85 is not set
    # CONFIG_SENSORS_LM87 is not set
    # CONFIG_SENSORS_LM90 is not set
    # CONFIG_SENSORS_LM92 is not set
    # CONFIG_SENSORS_LM93 is not set
    # CONFIG_SENSORS_LTC4151 is not set
    # CONFIG_SENSORS_LTC4215 is not set
    # CONFIG_SENSORS_LTC4245 is not set
    # CONFIG_SENSORS_LTC4261 is not set
    # CONFIG_SENSORS_LM95241 is not set
    # CONFIG_SENSORS_LM95245 is not set
    # CONFIG_SENSORS_MAX16065 is not set
    # CONFIG_SENSORS_MAX1619 is not set
    # CONFIG_SENSORS_MAX1668 is not set
    # CONFIG_SENSORS_MAX6639 is not set
    # CONFIG_SENSORS_MAX6642 is not set
    # CONFIG_SENSORS_MAX6650 is not set
    # CONFIG_SENSORS_NTC_THERMISTOR is not set
    # CONFIG_SENSORS_PC87360 is not set
    # CONFIG_SENSORS_PC87427 is not set
    # CONFIG_SENSORS_PCF8591 is not set
    # CONFIG_PMBUS is not set
    # CONFIG_SENSORS_SHT21 is not set
    # CONFIG_SENSORS_SIS5595 is not set
    # CONFIG_SENSORS_SMM665 is not set
    # CONFIG_SENSORS_DME1737 is not set
    # CONFIG_SENSORS_EMC1403 is not set
    # CONFIG_SENSORS_EMC2103 is not set
    # CONFIG_SENSORS_EMC6W201 is not set
    # CONFIG_SENSORS_SMSC47M1 is not set
    # CONFIG_SENSORS_SMSC47M192 is not set
    # CONFIG_SENSORS_SMSC47B397 is not set
    # CONFIG_SENSORS_SCH56XX_COMMON is not set
    # CONFIG_SENSORS_SCH5627 is not set
    # CONFIG_SENSORS_SCH5636 is not set
    # CONFIG_SENSORS_ADS1015 is not set
    # CONFIG_SENSORS_ADS7828 is not set
    # CONFIG_SENSORS_AMC6821 is not set
    # CONFIG_SENSORS_THMC50 is not set
    # CONFIG_SENSORS_TMP102 is not set
    # CONFIG_SENSORS_TMP401 is not set
    # CONFIG_SENSORS_TMP421 is not set
    # CONFIG_SENSORS_VIA_CPUTEMP is not set
    # CONFIG_SENSORS_VIA686A is not set
    # CONFIG_SENSORS_VT1211 is not set
    # CONFIG_SENSORS_VT8231 is not set
    # CONFIG_SENSORS_W83781D is not set
    # CONFIG_SENSORS_W83791D is not set
    # CONFIG_SENSORS_W83792D is not set
    # CONFIG_SENSORS_W83793 is not set
    # CONFIG_SENSORS_W83795 is not set
    # CONFIG_SENSORS_W83L785TS is not set
    # CONFIG_SENSORS_W83L786NG is not set
    # CONFIG_SENSORS_W83627HF is not set
    # CONFIG_SENSORS_W83627EHF is not set
    # CONFIG_SENSORS_APPLESMC is not set
    # ACPI drivers
    CONFIG_SENSORS_ACPI_POWER=y
    # CONFIG_SENSORS_ATK0110 is not set
    CONFIG_THERMAL=y
    CONFIG_THERMAL_HWMON=y
    # CONFIG_WATCHDOG is not set
    CONFIG_SSB_POSSIBLE=y
    # Sonics Silicon Backplane
    # CONFIG_SSB is not set
    CONFIG_BCMA_POSSIBLE=y
    # Broadcom specific AMBA
    # CONFIG_BCMA is not set
    # Multifunction device drivers
    CONFIG_MFD_CORE=y
    # CONFIG_MFD_88PM860X is not set
    # CONFIG_MFD_SM501 is not set
    # CONFIG_HTC_PASIC3 is not set
    # CONFIG_TPS6105X is not set
    # CONFIG_TPS6507X is not set
    # CONFIG_TWL4030_CORE is not set
    # CONFIG_MFD_STMPE is not set
    # CONFIG_MFD_TC3589X is not set
    # CONFIG_MFD_TMIO is not set
    # CONFIG_PMIC_DA903X is not set
    # CONFIG_MFD_DA9052_I2C is not set
    # CONFIG_PMIC_ADP5520 is not set
    # CONFIG_MFD_MAX8925 is not set
    # CONFIG_MFD_MAX8997 is not set
    # CONFIG_MFD_MAX8998 is not set
    # CONFIG_MFD_S5M_CORE is not set
    # CONFIG_MFD_WM8400 is not set
    # CONFIG_MFD_WM831X_I2C is not set
    # CONFIG_MFD_WM8350_I2C is not set
    # CONFIG_MFD_WM8994 is not set
    # CONFIG_MFD_PCF50633 is not set
    # CONFIG_ABX500_CORE is not set
    # CONFIG_MFD_CS5535 is not set
    CONFIG_LPC_SCH=y
    # CONFIG_MFD_RDC321X is not set
    # CONFIG_MFD_JANZ_CMODIO is not set
    # CONFIG_MFD_VX855 is not set
    # CONFIG_MFD_WL1273_CORE is not set
    # CONFIG_REGULATOR is not set
    CONFIG_MEDIA_SUPPORT=y
    # Multimedia core support
    # CONFIG_MEDIA_CONTROLLER is not set
    CONFIG_VIDEO_DEV=m
    CONFIG_VIDEO_V4L2_COMMON=m
    # CONFIG_DVB_CORE is not set
    CONFIG_VIDEO_MEDIA=m
    # Multimedia drivers
    # CONFIG_RC_CORE is not set
    # CONFIG_MEDIA_ATTACH is not set
    CONFIG_MEDIA_TUNER=m
    # CONFIG_MEDIA_TUNER_CUSTOMISE is not set
    CONFIG_MEDIA_TUNER_SIMPLE=m
    CONFIG_MEDIA_TUNER_TDA8290=m
    CONFIG_MEDIA_TUNER_TDA827X=m
    CONFIG_MEDIA_TUNER_TDA18271=m
    CONFIG_MEDIA_TUNER_TDA9887=m
    CONFIG_MEDIA_TUNER_TEA5761=m
    CONFIG_MEDIA_TUNER_TEA5767=m
    CONFIG_MEDIA_TUNER_MT20XX=m
    CONFIG_MEDIA_TUNER_XC2028=m
    CONFIG_MEDIA_TUNER_XC5000=m
    CONFIG_MEDIA_TUNER_XC4000=m
    CONFIG_MEDIA_TUNER_MC44S803=m
    CONFIG_VIDEO_V4L2=m
    CONFIG_VIDEOBUF2_CORE=m
    CONFIG_VIDEOBUF2_MEMOPS=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 is not set
    # Encoders, decoders, sensors and other helper chips
    # Audio decoders, processors and mixers
    # CONFIG_VIDEO_TVAUDIO is not set
    # CONFIG_VIDEO_TDA7432 is not set
    # CONFIG_VIDEO_TDA9840 is not set
    # CONFIG_VIDEO_TEA6415C is not set
    # CONFIG_VIDEO_TEA6420 is not set
    CONFIG_VIDEO_MSP3400=m
    CONFIG_VIDEO_CS5345=m
    CONFIG_VIDEO_CS53L32A=m
    # CONFIG_VIDEO_TLV320AIC23B is not set
    CONFIG_VIDEO_WM8775=m
    CONFIG_VIDEO_WM8739=m
    CONFIG_VIDEO_VP27SMPX=m
    # RDS decoders
    # CONFIG_VIDEO_SAA6588 is not set
    # Video decoders
    # CONFIG_VIDEO_ADV7180 is not set
    # CONFIG_VIDEO_BT819 is not set
    # CONFIG_VIDEO_BT856 is not set
    # CONFIG_VIDEO_BT866 is not set
    # CONFIG_VIDEO_KS0127 is not set
    # CONFIG_VIDEO_SAA7110 is not set
    CONFIG_VIDEO_SAA711X=m
    # CONFIG_VIDEO_SAA7191 is not set
    # CONFIG_VIDEO_TVP514X is not set
    # CONFIG_VIDEO_TVP5150 is not set
    # CONFIG_VIDEO_TVP7002 is not set
    # CONFIG_VIDEO_VPX3220 is not set
    # 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 is not set
    # CONFIG_VIDEO_ADV7170 is not set
    # CONFIG_VIDEO_ADV7175 is not set
    # CONFIG_VIDEO_ADV7343 is not set
    # CONFIG_VIDEO_AK881X is not set
    # Camera sensor devices
    # CONFIG_VIDEO_OV7670 is not set
    # CONFIG_VIDEO_MT9V011 is not set
    # CONFIG_VIDEO_TCM825X is not set
    # CONFIG_VIDEO_SR030PC30 is not set
    # Flash devices
    # Video improvement chips
    CONFIG_VIDEO_UPD64031A=m
    CONFIG_VIDEO_UPD64083=m
    # Miscelaneous helper chips
    # CONFIG_VIDEO_THS7303 is not set
    CONFIG_VIDEO_M52790=m
    # CONFIG_VIDEO_VIVI is not set
    CONFIG_V4L_USB_DRIVERS=y
    CONFIG_USB_VIDEO_CLASS=m
    CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
    # CONFIG_USB_GSPCA is not set
    # CONFIG_VIDEO_PVRUSB2 is not set
    # CONFIG_VIDEO_HDPVR is not set
    # CONFIG_VIDEO_EM28XX is not set
    # CONFIG_VIDEO_USBVISION is not set
    # CONFIG_USB_ET61X251 is not set
    # CONFIG_USB_SN9C102 is not set
    # CONFIG_USB_PWC is not set
    # CONFIG_VIDEO_CPIA2 is not set
    # CONFIG_USB_ZR364XX is not set
    # CONFIG_USB_STKWEBCAM is not set
    # CONFIG_USB_S2255 is not set
    # CONFIG_V4L_PCI_DRIVERS is not set
    # CONFIG_V4L_PLATFORM_DRIVERS is not set
    # CONFIG_V4L_MEM2MEM_DRIVERS is not set
    # CONFIG_RADIO_ADAPTERS is not set
    # Graphics support
    # CONFIG_AGP is not set
    CONFIG_VGA_ARB=y
    CONFIG_VGA_ARB_MAX_GPUS=16
    # CONFIG_VGA_SWITCHEROO is not set
    CONFIG_DRM=y
    CONFIG_DRM_KMS_HELPER=y
    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_MGA 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_STUB_POULSBO is not set
    # CONFIG_VGASTATE is not set
    CONFIG_VIDEO_OUTPUT_CONTROL=y
    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 is not set
    # CONFIG_FB_SYS_COPYAREA is not set
    # CONFIG_FB_SYS_IMAGEBLIT is not set
    # CONFIG_FB_FOREIGN_ENDIAN is not set
    # CONFIG_FB_SYS_FOPS is not set
    # CONFIG_FB_WMT_GE_ROPS is not set
    # CONFIG_FB_SVGALIB is not set
    # CONFIG_FB_MACMODES is not set
    # CONFIG_FB_BACKLIGHT is not set
    # CONFIG_FB_MODE_HELPERS is not set
    # CONFIG_FB_TILEBLITTING is not set
    # 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_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_SMSCUFX is not set
    # CONFIG_FB_UDL is not set
    # CONFIG_FB_VIRTUAL is not set
    # CONFIG_FB_METRONOME is not set
    # CONFIG_FB_MB862XX is not set
    # CONFIG_FB_BROADSHEET is not set
    CONFIG_BACKLIGHT_LCD_SUPPORT=y
    # CONFIG_LCD_CLASS_DEVICE is not set
    CONFIG_BACKLIGHT_CLASS_DEVICE=y
    # CONFIG_BACKLIGHT_GENERIC is not set
    # CONFIG_BACKLIGHT_PROGEAR is not set
    # CONFIG_BACKLIGHT_APPLE is not set
    # CONFIG_BACKLIGHT_SAHARA is not set
    # CONFIG_BACKLIGHT_ADP8860 is not set
    # CONFIG_BACKLIGHT_ADP8870 is not set
    # Console display driver support
    CONFIG_VGA_CONSOLE=y
    # CONFIG_VGACON_SOFT_SCROLLBACK is not set
    CONFIG_DUMMY_CONSOLE=y
    CONFIG_FRAMEBUFFER_CONSOLE=y
    CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
    # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
    CONFIG_FONTS=y
    # CONFIG_FONT_8x8 is not set
    CONFIG_FONT_8x16=y
    # CONFIG_FONT_6x11 is not set
    # CONFIG_FONT_7x14 is not set
    # CONFIG_FONT_PEARL_8x8 is not set
    # CONFIG_FONT_ACORN_8x8 is not set
    # CONFIG_FONT_MINI_4x6 is not set
    # CONFIG_FONT_SUN8x16 is not set
    # CONFIG_FONT_SUN12x22 is not set
    # CONFIG_FONT_10x18 is not set
    # CONFIG_LOGO is not set
    CONFIG_SOUND=y
    # CONFIG_SOUND_OSS_CORE is not set
    CONFIG_SND=y
    CONFIG_SND_TIMER=y
    CONFIG_SND_PCM=y
    CONFIG_SND_HWDEP=y
    CONFIG_SND_JACK=y
    CONFIG_SND_SEQUENCER=y
    # CONFIG_SND_SEQ_DUMMY is not set
    # CONFIG_SND_MIXER_OSS is not set
    # CONFIG_SND_PCM_OSS is not set
    # CONFIG_SND_SEQUENCER_OSS is not set
    CONFIG_SND_HRTIMER=y
    CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
    CONFIG_SND_DYNAMIC_MINORS=y
    # CONFIG_SND_SUPPORT_OLD_API is not set
    # CONFIG_SND_VERBOSE_PROCFS is not set
    # 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 is not set
    # CONFIG_SND_OPL3_LIB_SEQ is not set
    # CONFIG_SND_OPL4_LIB_SEQ is not set
    # CONFIG_SND_SBAWE_SEQ is not set
    # CONFIG_SND_EMU10K1_SEQ is not set
    # CONFIG_SND_DRIVERS is not set
    CONFIG_SND_PCI=y
    # CONFIG_SND_AD1889 is not set
    # CONFIG_SND_ALS300 is not set
    # CONFIG_SND_ALS4000 is not set
    # CONFIG_SND_ALI5451 is not set
    # CONFIG_SND_ASIHPI is not set
    # CONFIG_SND_ATIIXP is not set
    # CONFIG_SND_ATIIXP_MODEM is not set
    # CONFIG_SND_AU8810 is not set
    # CONFIG_SND_AU8820 is not set
    # CONFIG_SND_AU8830 is not set
    # CONFIG_SND_AW2 is not set
    # CONFIG_SND_AZT3328 is not set
    # CONFIG_SND_BT87X is not set
    # CONFIG_SND_CA0106 is not set
    # CONFIG_SND_CMIPCI is not set
    # CONFIG_SND_OXYGEN is not set
    # CONFIG_SND_CS4281 is not set
    # CONFIG_SND_CS46XX is not set
    # CONFIG_SND_CS5530 is not set
    # CONFIG_SND_CS5535AUDIO is not set
    # CONFIG_SND_CTXFI is not set
    # CONFIG_SND_DARLA20 is not set
    # CONFIG_SND_GINA20 is not set
    # CONFIG_SND_LAYLA20 is not set
    # CONFIG_SND_DARLA24 is not set
    # CONFIG_SND_GINA24 is not set
    # CONFIG_SND_LAYLA24 is not set
    # CONFIG_SND_MONA is not set
    # CONFIG_SND_MIA is not set
    # CONFIG_SND_ECHO3G is not set
    # CONFIG_SND_INDIGO is not set
    # CONFIG_SND_INDIGOIO is not set
    # CONFIG_SND_INDIGODJ is not set
    # CONFIG_SND_INDIGOIOX is not set
    # CONFIG_SND_INDIGODJX is not set
    # CONFIG_SND_EMU10K1 is not set
    # CONFIG_SND_EMU10K1X is not set
    # CONFIG_SND_ENS1370 is not set
    # CONFIG_SND_ENS1371 is not set
    # CONFIG_SND_ES1938 is not set
    # CONFIG_SND_ES1968 is not set
    # CONFIG_SND_FM801 is not set
    CONFIG_SND_HDA_INTEL=y
    CONFIG_SND_HDA_PREALLOC_SIZE=64
    CONFIG_SND_HDA_HWDEP=y
    CONFIG_SND_HDA_RECONFIG=y
    CONFIG_SND_HDA_INPUT_BEEP=y
    CONFIG_SND_HDA_INPUT_BEEP_MODE=1
    CONFIG_SND_HDA_INPUT_JACK=y
    CONFIG_SND_HDA_PATCH_LOADER=y
    CONFIG_SND_HDA_CODEC_REALTEK=y
    CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS=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=y
    CONFIG_SND_HDA_POWER_SAVE_DEFAULT=10
    # CONFIG_SND_HDSP is not set
    # CONFIG_SND_HDSPM is not set
    # CONFIG_SND_ICE1712 is not set
    # CONFIG_SND_ICE1724 is not set
    # CONFIG_SND_INTEL8X0 is not set
    # CONFIG_SND_INTEL8X0M is not set
    # CONFIG_SND_KORG1212 is not set
    # CONFIG_SND_LOLA is not set
    # CONFIG_SND_LX6464ES is not set
    # CONFIG_SND_MAESTRO3 is not set
    # CONFIG_SND_MIXART is not set
    # CONFIG_SND_NM256 is not set
    # CONFIG_SND_PCXHR is not set
    # CONFIG_SND_RIPTIDE is not set
    # CONFIG_SND_RME32 is not set
    # CONFIG_SND_RME96 is not set
    # CONFIG_SND_RME9652 is not set
    # CONFIG_SND_SONICVIBES is not set
    # CONFIG_SND_TRIDENT is not set
    # CONFIG_SND_VIA82XX is not set
    # CONFIG_SND_VIA82XX_MODEM is not set
    # CONFIG_SND_VIRTUOSO is not set
    # CONFIG_SND_VX222 is not set
    # CONFIG_SND_YMFPCI is not set
    # CONFIG_SND_USB is not set
    # CONFIG_SND_PCMCIA is not set
    # CONFIG_SND_SOC is not set
    # CONFIG_SOUND_PRIME is not set
    CONFIG_HID_SUPPORT=y
    CONFIG_HID=y
    CONFIG_HID_BATTERY_STRENGTH=y
    CONFIG_HIDRAW=y
    # USB Input Devices
    CONFIG_USB_HID=y
    CONFIG_HID_PID=y
    # CONFIG_USB_HIDDEV is not set
    # Special HID drivers
    CONFIG_HID_A4TECH=y
    # CONFIG_HID_ACRUX is not set
    CONFIG_HID_APPLE=y
    CONFIG_HID_BELKIN=y
    CONFIG_HID_CHERRY=y
    CONFIG_HID_CHICONY=y
    # CONFIG_HID_PRODIKEYS is not set
    CONFIG_HID_CYPRESS=y
    # CONFIG_HID_DRAGONRISE is not set
    # CONFIG_HID_EMS_FF is not set
    # CONFIG_HID_ELECOM is not set
    CONFIG_HID_EZKEY=y
    # CONFIG_HID_HOLTEK is not set
    # CONFIG_HID_KEYTOUCH is not set
    CONFIG_HID_KYE=y
    # CONFIG_HID_UCLOGIC is not set
    # CONFIG_HID_WALTOP is not set
    # CONFIG_HID_GYRATION is not set
    # CONFIG_HID_TWINHAN is not set
    CONFIG_HID_KENSINGTON=y
    # CONFIG_HID_LCPOWER is not set
    CONFIG_HID_LOGITECH=y
    CONFIG_HID_LOGITECH_DJ=y
    # CONFIG_LOGITECH_FF is not set
    # CONFIG_LOGIRUMBLEPAD2_FF is not set
    # CONFIG_LOGIG940_FF is not set
    # CONFIG_LOGIWHEELS_FF is not set
    # CONFIG_HID_MAGICMOUSE is not set
    CONFIG_HID_MICROSOFT=y
    CONFIG_HID_MONTEREY=y
    # CONFIG_HID_MULTITOUCH is not set
    # CONFIG_HID_NTRIG is not set
    # CONFIG_HID_ORTEK is not set
    # CONFIG_HID_PANTHERLORD is not set
    # CONFIG_HID_PETALYNX is not set
    # CONFIG_HID_PICOLCD is not set
    # CONFIG_HID_PRIMAX is not set
    # CONFIG_HID_ROCCAT is not set
    # CONFIG_HID_SAMSUNG is not set
    # CONFIG_HID_SONY is not set
    # CONFIG_HID_SPEEDLINK is not set
    # CONFIG_HID_SUNPLUS is not set
    # CONFIG_HID_GREENASIA is not set
    # CONFIG_HID_SMARTJOYPLUS is not set
    # CONFIG_HID_TOPSEED is not set
    # CONFIG_HID_THRUSTMASTER is not set
    # CONFIG_HID_WACOM is not set
    # CONFIG_HID_WIIMOTE is not set
    # CONFIG_HID_ZEROPLUS is not set
    # CONFIG_HID_ZYDACRON is not set
    CONFIG_USB_SUPPORT=y
    CONFIG_USB_COMMON=y
    CONFIG_USB_ARCH_HAS_HCD=y
    CONFIG_USB_ARCH_HAS_OHCI=y
    CONFIG_USB_ARCH_HAS_EHCI=y
    CONFIG_USB_ARCH_HAS_XHCI=y
    CONFIG_USB=y
    # CONFIG_USB_DEBUG is not set
    # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
    # Miscellaneous USB options
    # CONFIG_USB_DEVICEFS is not set
    # CONFIG_USB_DEVICE_CLASS is not set
    CONFIG_USB_DYNAMIC_MINORS=y
    CONFIG_USB_SUSPEND=y
    # CONFIG_USB_OTG is not set
    # CONFIG_USB_MON is not set
    # CONFIG_USB_WUSB_CBAF is not set
    # USB Host Controller Drivers
    # CONFIG_USB_C67X00_HCD is not set
    CONFIG_USB_XHCI_HCD=y
    # 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_EHCI_MV is not set
    # CONFIG_USB_OXU210HP_HCD is not set
    # CONFIG_USB_ISP116X_HCD is not set
    # CONFIG_USB_ISP1760_HCD is not set
    # CONFIG_USB_ISP1362_HCD is not set
    # CONFIG_USB_OHCI_HCD is not set
    CONFIG_USB_UHCI_HCD=y
    # CONFIG_USB_SL811_HCD is not set
    # CONFIG_USB_R8A66597_HCD is not set
    # USB Device Class drivers
    # CONFIG_USB_ACM is not set
    CONFIG_USB_PRINTER=m
    # CONFIG_USB_WDM is not set
    # CONFIG_USB_TMC is not set
    # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
    # also be needed; see USB_STORAGE Help for more info
    CONFIG_USB_STORAGE=y
    # CONFIG_USB_STORAGE_DEBUG is not set
    # CONFIG_USB_STORAGE_REALTEK is not set
    # CONFIG_USB_STORAGE_DATAFAB is not set
    # CONFIG_USB_STORAGE_FREECOM is not set
    # CONFIG_USB_STORAGE_ISD200 is not set
    # CONFIG_USB_STORAGE_USBAT is not set
    # CONFIG_USB_STORAGE_SDDR09 is not set
    # CONFIG_USB_STORAGE_SDDR55 is not set
    # CONFIG_USB_STORAGE_JUMPSHOT is not set
    # CONFIG_USB_STORAGE_ALAUDA is not set
    # CONFIG_USB_STORAGE_ONETOUCH is not set
    # CONFIG_USB_STORAGE_KARMA is not set
    # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
    # CONFIG_USB_STORAGE_ENE_UB6250 is not set
    CONFIG_USB_UAS=y
    # CONFIG_USB_LIBUSUAL is not set
    # USB Imaging devices
    # CONFIG_USB_MDC800 is not set
    # CONFIG_USB_MICROTEK is not set
    # USB port drivers
    # CONFIG_USB_SERIAL is not set
    # USB Miscellaneous drivers
    # CONFIG_USB_EMI62 is not set
    # CONFIG_USB_EMI26 is not set
    # CONFIG_USB_ADUTUX is not set
    # CONFIG_USB_SEVSEG is not set
    # CONFIG_USB_RIO500 is not set
    # CONFIG_USB_LEGOTOWER is not set
    # CONFIG_USB_LCD is not set
    # CONFIG_USB_LED is not set
    # CONFIG_USB_CYPRESS_CY7C63 is not set
    # CONFIG_USB_CYTHERM is not set
    # CONFIG_USB_IDMOUSE is not set
    # CONFIG_USB_FTDI_ELAN is not set
    # CONFIG_USB_APPLEDISPLAY is not set
    # CONFIG_USB_SISUSBVGA is not set
    # CONFIG_USB_LD is not set
    # CONFIG_USB_TRANCEVIBRATOR is not set
    # CONFIG_USB_IOWARRIOR is not set
    # CONFIG_USB_TEST is not set
    # CONFIG_USB_ISIGHTFW is not set
    # CONFIG_USB_YUREX is not set
    # CONFIG_USB_GADGET is not set
    # OTG and related infrastructure
    # CONFIG_NOP_USB_XCEIV is not set
    # CONFIG_UWB is not set
    # CONFIG_MMC is not set
    # CONFIG_MEMSTICK is not set
    CONFIG_NEW_LEDS=y
    CONFIG_LEDS_CLASS=y
    # LED drivers
    # CONFIG_LEDS_LM3530 is not set
    # CONFIG_LEDS_PCA9532 is not set
    # CONFIG_LEDS_LP3944 is not set
    # CONFIG_LEDS_LP5521 is not set
    # CONFIG_LEDS_LP5523 is not set
    # CONFIG_LEDS_CLEVO_MAIL is not set
    # CONFIG_LEDS_PCA955X is not set
    # CONFIG_LEDS_BD2802 is not set
    # CONFIG_LEDS_INTEL_SS4200 is not set
    # CONFIG_LEDS_DELL_NETBOOKS is not set
    # CONFIG_LEDS_TCA6507 is not set
    # CONFIG_LEDS_OT200 is not set
    CONFIG_LEDS_TRIGGERS=y
    # LED Triggers
    # CONFIG_LEDS_TRIGGER_TIMER is not set
    # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
    # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
    # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
    # iptables trigger is under Netfilter config (LED target)
    # CONFIG_ACCESSIBILITY is not set
    # CONFIG_INFINIBAND is not set
    # CONFIG_EDAC is not set
    CONFIG_RTC_LIB=y
    CONFIG_RTC_CLASS=y
    CONFIG_RTC_HCTOSYS=y
    CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
    # 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=y
    # CONFIG_RTC_DRV_TEST is not set
    # I2C RTC drivers
    # CONFIG_RTC_DRV_DS1307 is not set
    # CONFIG_RTC_DRV_DS1374 is not set
    # CONFIG_RTC_DRV_DS1672 is not set
    # CONFIG_RTC_DRV_DS3232 is not set
    # CONFIG_RTC_DRV_MAX6900 is not set
    # CONFIG_RTC_DRV_RS5C372 is not set
    # CONFIG_RTC_DRV_

    Solved! But how
    udisks/udisks2 requires CONFIG_SWAP to be enabled in the kernel!
    I can't imagine why this kernel option is required by udisks now. Personally I can't see any obvious reason, there is no sense.
    I will try to contact the developers. Because I can't imagine why SWAP is required.

Maybe you are looking for

  • Support Package error

    Hi Experts, Currently i am installing suppport package for  PI 7.10. SP : SAP_BASIS. Just newly installed the sap system -> after kernel upgrade, i applied latest SPAM verion - 27. NowBusiness package SAP -basis is in the process. I started the packa

  • Lost Previous Downloaded Songs Help?

    Received an iPod Shuffle for Christmas and have some problems. Redeemed a download card at iTunes Music Store while visiting my aunt. Downloaded (2) songs, worked with no problems. Now I go home and can't get the iTunes set-up disk to work on my home

  • How to send any text as soap attachment without SAAJ ?

    I have to send XML or text file as an attachment in the web service, just like email attachment. Currently I am intercepting the SOAP message (sent from web service client) and then adding an attachment using SAAJ. Can we send an attachment without i

  • E-mailing multiple pictures

    Hey guys, my frist post. I'm having trouble sending multiple files, via e-mail. I can send one, at a time. But i don't see how to add more then one picture to an e-mail as an attachment. Can someone please guide me in the right direction. Thanks, Far

  • Outlook Express problem

    I occasionally receive e-mail with Visio attachments that I KNOW are not harmful yet a message at the top of the e-mail says "OE removed access to the following unsafe attachments in your mail: HSHA.vsd"  What changes can I make to my outlook express