WMI Script resume a suspended messag

Hi All,
Can anyone help me with a WMI script to resume a suspended message (resumable) for a messaging instance of a particular receive port.

Hi,
You could use the following code from MSDN Resuming Suspended Service Instances of a Specific Orchestration Using WMI:
using System.Management;
        public
void ResumeSvcInstByOrchestrationName(string strOrchestrationName)
try
const uint SERVICE_CLASS_ORCHESTRATION = 1;
const uint SERVICE_STATUS_SUSPENDED_RESUMABLE = 4;
const uint REGULAR_RESUME_MODE = 1;
// Query for suspended (resumable) service instances of the specified orchestration
// Suggestion: Similar queries can be written for Suspend/Terminate operations by using different ServiceStatus value. See MOF definition for details.
string strWQL = string.Format(
"SELECT * FROM MSBTS_ServiceInstance WHERE ServiceClass = {0} AND ServiceStatus = {1} AND ServiceName = \"{2}\"",
                    SERVICE_CLASS_ORCHESTRATION.ToString(), SERVICE_STATUS_SUSPENDED_RESUMABLE.ToString(), strOrchestrationName);
                ManagementObjectSearcher searcherServiceInstance =
new ManagementObjectSearcher (new ManagementScope ("root\\MicrosoftBizTalkServer"),
new WqlObjectQuery(strWQL),
null);
int nNumSvcInstFound = searcherServiceInstance.Get().Count;
// If we found any
if ( nNumSvcInstFound > 0 )
// Construct ID arrays to be passed into ResumeServiceInstancesByID() method
string[] InstIdList = new
string[nNumSvcInstFound];
string[] ClassIdList = new
string[nNumSvcInstFound];
string[] TypeIdList = new
string[nNumSvcInstFound];
string strHost = string.Empty;
string strReport = string.Empty;
int i = 0;
foreach ( ManagementObject objServiceInstance
in searcherServiceInstance.Get() )
// It is safe to assume that all service instances belong to a single Host.
if ( strHost == string.Empty )
                            strHost = objServiceInstance["HostName"].ToString();
                        ClassIdList[i] = objServiceInstance["ServiceClassId"].ToString();
                        TypeIdList[i]  = objServiceInstance["ServiceTypeId"].ToString();
                        InstIdList[i]  = objServiceInstance["InstanceID"].ToString();
                        strReport +=
string.Format(" {0}\n", objServiceInstance["InstanceID"].ToString());
                        i++;
// Load the MSBTS_HostQueue with Host name and invoke the "ResumeServiceInstancesByID" method
string strHostQueueFullPath =
string.Format("root\\MicrosoftBizTalkServer:MSBTS_HostQueue.HostName=\"{0}\"", strHost);
                    ManagementObject objHostQueue =
new ManagementObject(strHostQueueFullPath);
// Note: The ResumeServiceInstanceByID() method processes at most 2047 service instances with each call.
// If you are dealing with larger number of service instances, this script needs to be modified to break down the
// service instances into multiple batches.
                    objHostQueue.InvokeMethod("ResumeServiceInstancesByID",
new object[] {ClassIdList, TypeIdList, InstIdList, REGULAR_RESUME_MODE}
                    Console.WriteLine(
string.Format("Service instances with the following service instance IDs have been resumed:\n{0}", strReport) );
else
                    System.Console.WriteLine(string.Format("There is no suspended
(resumable) service instance found for orchestration '{0}'.", strOrchestrationName));
catch(Exception excep)
                Console.WriteLine("Error: " + excep.Message);
[VBScript]
' wbemChangeFlagEnum Setting
const REGULAR_RESUME_MODE = 1
'Module to Resume service instances
Sub ResumeServiceInstance(strOrchestrationName)
   Dim objLocator : Set objLocator = CreateObject("WbemScripting.SWbemLocator")
   Dim objServices : Set objServices = objLocator.ConnectServer(,
"root/MicrosoftBizTalkServer")
   Dim strQueryString
   Dim objQueue
   Dim svcInsts
   Dim count
   Dim inst
   '=============================
   ' Resume service instances
   '=============================
   wscript.Echo "Bulk Resuming service instances - "
   Wscript.Echo ""
   On Error Resume Next
   ' Query for suspended (resumable) service instances of the specified orchestration
   ' Suggestion: Similar queries can be written
for Suspend/Terminate operations by using different ServiceStatus value.  See MOF definition
for details.
   set svcInsts = objServices.ExecQuery("Select * from MSBTS_ServiceInstance where ServiceClass = 1 AND ServiceStatus = 4 AND ServiceName = """
& strOrchestrationName & """")
   count = svcInsts.count
   If ( count > 0 ) Then
      Dim strHostName
      Dim aryClassIDs()
      Dim aryTypeIDs()
      Dim aryInstanceIDs()
      redim aryClassIDs(count-1)
      redim aryTypeIDs(count-1)
      redim aryInstanceIDs(count-1)
      ' Enumerate the ServiceInstance classes to construct ID arrays to be passed into ResumeServiceInstancesByID() method
      Dim i : i= 0
      For each inst in svcInsts
         strHostName = inst.Properties_("HostName")
         aryClassIDs(i) = inst.Properties_("ServiceClassId")
         aryTypeIDs(i) = inst.Properties_("ServiceTypeId")
         aryInstanceIDs(i) = inst.Properties_("InstanceId")
         i = i + 1
      Next
      wscript.Echo "Total instances found during enumeration: " & i
      wscript.Echo " "
      'Get the HostQueue instance
      strQueryString = "MSBTS_HostQueue.HostName=""" & strHostName &
      set objQueue = objServices.Get(strQueryString)
      CheckWMIError
      'Execute the Resume method of the HostQueue instance
      ' Note: The ResumeServiceInstanceByID() method processes at most 2047 service instances with each call.
      '   If you are dealing with larger number of service instances,
this script needs to be modified to
break down the
      '   service instances into multiple batches.
      objQueue.ResumeServiceInstancesByID aryClassIDs, aryTypeIDs, aryInstanceIDs, REGULAR_RESUME_MODE
      CheckWMIError
      Wscript.Echo ""
      wscript.Echo "Instances resumed - " &  i &
   Else
      wscript.echo "There is no suspended (resumable) service instance found for orchestration '" & strOrchestrationName &
   End If
   Set objLocator = Nothing
   Set objServices = Nothing
   Set objQueue = Nothing
   On Error Goto 0
End Sub
'This subroutine deals with all errors using the WbemScripting object.  Error descriptions
'are returned to the user by printing to the console.
Sub   CheckWMIError()
   If Err <> 0   Then
      On Error Resume   Next
      Dim strErrDesc: strErrDesc = Err.Description
      Dim ErrNum: ErrNum = Err.Number
      Dim WMIError : Set WMIError = CreateObject("WbemScripting.SwbemLastError")
      If ( TypeName(WMIError) =
"Empty" ) Then
         wscript.echo strErrDesc &
" (HRESULT: "   & Hex(ErrNum) &
      Else
         wscript.echo WMIError.Description &
"(HRESULT: " & Hex(ErrNum) &
         Set WMIError = nothing
      End   If
      wscript.quit 0
   End If
End Sub
HTH
Steef-Jan Wiggers
Ordina ICT B.V. | MVP & MCTS BizTalk Server 2010
http://soa-thoughts.blogspot.com/
| @SteefJan
If this answers your question please mark it accordingly
BizTalk

Similar Messages

  • On resuming instance of suspended message moving to active state?

    In my current scenario I am inserting data to Teradata table. As per the requirement if due to some issue if transaction fails I have to notify admin using email and suspend message for resuming.
    I am receiving a message
    Making a connection to Teradata to check if db is up or not. If it downs I am shooting mail from exception block.
    Then I am opening new scope and inserting data into Teradata.
    In order to test scenario at the beginning I am updating wrong connection string in SSO. So that it fails in first scope and I will get mail. This part is working file.
    After that I am again updating my SSO with correct connection string and restarting the host instance. But when I am resuming my orchestration instance, it is going into Active state.
    Also there is no other instance running on the server, so there is no issue in opening new connection with db.
    Can any one suggest me what could be the issue.

    Atomic transaction is failing due to db timeout issue. When I am resuming orchestration it is going into active state. So I have two scope the one is for checking if Teradata is available or not by opening and closing connection and notifying
    in case of exception. That part is working fine. After completion of scope as we don't have inbuilt Teradata I am trying to open connection under atomic transactional to insert data into db in second scope.
    But suspended message is going into active state.

  • Resume from suspend/ibernation sometimes freeze

    When closing the lid of my laptop, my system is set to freeze.
    Sometimes when i open the lid i see the graphics turn on (on the login screen) BUT everything is frozen, even the keyboard. If i close and reopen the lid, it somehow turn back to normal.
    this message is in dmegs:
    ------------[ cut here ]------------
    [ 4366.308099] WARNING: CPU: 0 PID: 0 at drivers/gpu/drm/i915/intel_display.c:9713 intel_check_page_flip+0xda/0xf0 [i915]()
    [ 4366.308100] Kicking stuck page flip: queued at 261481, now 261490
    [ 4366.308101] Modules linked in: joydev mousedev ecb arc4 nls_iso8859_1 nls_cp437 vfat fat coretemp intel_rapl iosf_mbi x86_pkg_temp_thermal iwlmvm intel_powerclamp kvm_intel snd_hda_codec_hdmi kvm uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core crct10dif_pclmul crc32_pclmul iTCO_wdt v4l2_common crc32c_intel btusb iTCO_vendor_support videodev amdkfd ghash_clmulni_intel mac80211 bluetooth amd_iommu_v2 media aesni_intel aes_x86_64 lrw gf128mul radeon glue_helper ablk_helper cryptd iwlwifi pcspkr evdev psmouse cfg80211 rtsx_pci_ms mac_hid r8169 sparse_keymap ttm serio_raw led_class snd_hda_codec_realtek i2c_i801 memstick ac toshiba_bluetooth thermal toshiba_haps i915 hwmon mii rfkill wmi battery snd_hda_codec_generic button video drm_kms_helper snd_hda_intel snd_hda_controller drm snd_hda_codec
    [ 4366.308125]  snd_hwdep intel_gtt snd_pcm i2c_algo_bit i2c_core snd_timer ie31200_edac snd mei_me edac_core mei lpc_ich shpchp soundcore processor sch_fq_codel nfs lockd grace sunrpc fscache ext4 crc16 mbcache jbd2 sd_mod rtsx_pci_sdmmc mmc_core atkbd libps2 ahci libahci xhci_pci ehci_pci libata xhci_hcd ehci_hcd usbcore scsi_mod rtsx_pci usb_common i8042 serio
    [ 4366.308143] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 3.19.3-3-ARCH #1
    [ 4366.308144] Hardware name: TOSHIBA SATELLITE P50-B-115/VG20SQ, BIOS 1.50 12/09/2014
    [ 4366.308145]  0000000000000000 886cbefc2155fb8d ffff88032fa03d18 ffffffff8155d19f
    [ 4366.308146]  0000000000000000 ffff88032fa03d70 ffff88032fa03d58 ffffffff81073a4a
    [ 4366.308147]  ffff88032fa03d58 ffff88032127c000 ffff88031f735000 ffff88031f7351a0
    [ 4366.308149] Call Trace:
    [ 4366.308150]  <IRQ>  [<ffffffff8155d19f>] dump_stack+0x4c/0x6e
    [ 4366.308159]  [<ffffffff81073a4a>] warn_slowpath_common+0x8a/0xc0
    [ 4366.308161]  [<ffffffff81073ad5>] warn_slowpath_fmt+0x55/0x70
    [ 4366.308168]  [<ffffffffa051258a>] intel_check_page_flip+0xda/0xf0 [i915]
    [ 4366.308175]  [<ffffffffa04df968>] ironlake_irq_handler+0x2e8/0xfe0 [i915]
    [ 4366.308178]  [<ffffffff812be8e0>] ? timerqueue_add+0x60/0xb0
    [ 4366.308181]  [<ffffffff810dcd69>] ? enqueue_hrtimer+0x29/0xa0
    [ 4366.308184]  [<ffffffff810cc01e>] handle_irq_event_percpu+0x3e/0x1f0
    [ 4366.308185]  [<ffffffff810cc211>] handle_irq_event+0x41/0x70
    [ 4366.308187]  [<ffffffff810cf30e>] handle_edge_irq+0x9e/0x110
    [ 4366.308191]  [<ffffffff81018242>] handle_irq+0x22/0x40
    [ 4366.308193]  [<ffffffff8156557f>] do_IRQ+0x4f/0xf0
    [ 4366.308195]  [<ffffffff8156352d>] common_interrupt+0x6d/0x6d
    [ 4366.308195]  <EOI>  [<ffffffff814215d5>] ? cpuidle_enter_state+0x65/0x190
    [ 4366.308198]  [<ffffffff814215c1>] ? cpuidle_enter_state+0x51/0x190
    [ 4366.308200]  [<ffffffff814217e7>] cpuidle_enter+0x17/0x20
    [ 4366.308201]  [<ffffffff810b4aa8>] cpu_startup_entry+0x388/0x410
    [ 4366.308203]  [<ffffffff815536b5>] rest_init+0x85/0x90
    [ 4366.308205]  [<ffffffff818fe020>] start_kernel+0x48e/0x4af
    [ 4366.308207]  [<ffffffff818fd120>] ? early_idt_handlers+0x120/0x120
    [ 4366.308208]  [<ffffffff818fd4d7>] x86_64_start_reservations+0x2a/0x2c
    [ 4366.308210]  [<ffffffff818fd62b>] x86_64_start_kernel+0x152/0x175
    [ 4366.308210] ---[ end trace e9f540c04cbb56d5 ]---

    This happens to me 100% of the time with 3.11.6 and 3.10.17, resuming from suspend results in naught but an underscore top left. VT switching appears to work temporarily, I was able to enter in my user name in the VT, but then everything hung on pressing enter. Not sure about earlier kernel versions because this is a fresh install on this hardware. Happens with and without X.
    Hibernate results in an underscore before the computer is able to shut down. I tried using pm_trace and dumping logs before/after as recommended around the internet, pm_trace didn't match any hashes & there are no logs after suspend that get written out as far as I can tell. The computer is also unresponsive to the network. I also tried using pm_debug but I wasn't really sure what I was doing, running the core test I thought shouldn't cause the computer to actually suspend, but it did & there was my underscore again in all its glory.
    Wish I knew a way to get some more information..

  • Heavy Color Banding on Resume From Suspend

    Hey Y'all,
    I'm getting heavy color banding on my Dell E4310 running arch64, after resuming from suspend.  I'm using pm-utils, video card is an intel GMA4500HD.  Has anyone else seen this issue, and have you found a solution?  Searches of google, the arch wiki, and arch forums haven't been friutful.
    /var/log/messages.log
    Jul 15 12:29:02 themonkey kernel: ACPI: Waking up from system sleep state S3
    Jul 15 12:29:02 themonkey kernel: PM: early resume of devices complete after 1.295 msecs
    Jul 15 12:29:02 themonkey kernel: e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    Jul 15 12:29:02 themonkey kernel: e1000e 0000:00:19.0: wake-up capability disabled by ACPI
    Jul 15 12:29:02 themonkey kernel: ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Jul 15 12:29:02 themonkey kernel: HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Jul 15 12:29:02 themonkey kernel: ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Jul 15 12:29:02 themonkey kernel: pci 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Jul 15 12:29:02 themonkey kernel: sdhci-pci 0000:03:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Jul 15 12:29:02 themonkey kernel: sdhci-pci 0000:03:00.0: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 15 12:29:02 themonkey kernel: sd 0:0:0:0: [sda] Starting disk
    Jul 15 12:29:02 themonkey kernel: dell-wmi: Received unknown WMI event (0x11)
    Jul 15 12:29:02 themonkey kernel: usb 1-1.4: reset high speed USB device using ehci_hcd and address 3
    Jul 15 12:29:02 themonkey kernel: ata5: SATA link down (SStatus 0 SControl 300)
    Jul 15 12:29:02 themonkey kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 15 12:29:02 themonkey kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jul 15 12:29:02 themonkey kernel: ata6: SATA link down (SStatus 0 SControl 300)
    Jul 15 12:29:02 themonkey kernel: usb 2-1.7: reset full speed USB device using ehci_hcd and address 4
    Jul 15 12:29:02 themonkey kernel: ata2.00: configured for UDMA/100
    Jul 15 12:29:02 themonkey kernel: btusb 2-1.7:1.0: no reset_resume for driver btusb?
    Jul 15 12:29:02 themonkey kernel: btusb 2-1.7:1.1: no reset_resume for driver btusb?
    Jul 15 12:29:02 themonkey kernel: ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
    Jul 15 12:29:02 themonkey kernel: ata1.00: configured for UDMA/133
    Jul 15 12:29:02 themonkey kernel: usb 2-1.1: reset low speed USB device using ehci_hcd and address 3
    Jul 15 12:29:02 themonkey kernel: PM: resume of devices complete after 1348.210 msecs
    Jul 15 12:29:02 themonkey kernel: Restarting tasks ... done.
    Jul 15 12:29:02 themonkey kernel: video LNXVIDEO:00: Restoring backlight state
    Jul 15 12:29:03 themonkey bluetoothd[2545]: Bluetooth deamon 4.69
    Jul 15 12:29:03 themonkey logger: ACPI action undefined: BAT1
    Jul 15 12:29:03 themonkey logger: ACPI group/action undefined: video / VID
    Jul 15 12:29:03 themonkey bluetoothd[2564]: Starting SDP server
    Jul 15 12:29:03 themonkey kernel: Bluetooth: L2CAP ver 2.14
    Jul 15 12:29:03 themonkey kernel: Bluetooth: L2CAP socket layer initialized
    Jul 15 12:29:03 themonkey kernel: e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: RX
    Jul 15 12:29:03 themonkey kernel: 0000:00:19.0: eth0: 10/100 speed: disabling TSO
    Jul 15 12:29:03 themonkey dhcpcd[1943]: eth0: carrier acquired
    Jul 15 12:29:03 themonkey dhcpcd[1943]: eth0: rebinding lease of 192.168.2.122
    Jul 15 12:29:03 themonkey bluetoothd[2564]: Starting experimental netlink support
    Jul 15 12:29:03 themonkey kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    Jul 15 12:29:03 themonkey kernel: Bluetooth: SCO (Voice Link) ver 0.6
    Jul 15 12:29:03 themonkey kernel: Bluetooth: SCO socket layer initialized
    Jul 15 12:29:03 themonkey bluetoothd[2564]: HCI dev 0 registered
    Jul 15 12:29:04 themonkey kernel: ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20100121/evregion-474)
    Jul 15 12:29:04 themonkey kernel: ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPCB.ECDV.ECR1] (Node ffff88011bc28b80), AE_TIME
    Jul 15 12:29:04 themonkey kernel: ACPI Error (psparse-0537): Method parse/execution failed [\ECBT] (Node ffff88011bc28c60), AE_TIME
    Jul 15 12:29:04 themonkey kernel: ACPI Error (psparse-0537): Method parse/execution failed [\ECG2] (Node ffff88011bc28d20), AE_TIME
    Jul 15 12:29:04 themonkey kernel: ACPI Error (psparse-0537): Method parse/execution failed [\ECG6] (Node ffff88011bc28de0), AE_TIME
    Jul 15 12:29:04 themonkey kernel: ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.BAT0._BST] (Node ffff88011bc2a3e0), AE_TIME
    Jul 15 12:29:04 themonkey kernel: ACPI Exception: AE_TIME, Evaluating _BST (20100121/battery-439)
    Jul 15 12:29:04 themonkey bluetoothd[2564]: HCI dev 0 up
    Jul 15 12:29:04 themonkey bluetoothd[2564]: Starting security manager 0
    Jul 15 12:29:04 themonkey kernel: Bluetooth: RFCOMM TTY layer initialized
    Jul 15 12:29:04 themonkey kernel: Bluetooth: RFCOMM socket layer initialized
    Jul 15 12:29:04 themonkey kernel: Bluetooth: RFCOMM ver 1.11
    Jul 15 12:29:04 themonkey bluetoothd[2564]: Adapter /org/bluez/2545/hci0 has been enabled
    Jul 15 12:29:06 themonkey kernel: ACPI Exception: AE_TIME, Returned by Handler for [EmbeddedControl] (20100121/evregion-474)
    Jul 15 12:29:06 themonkey kernel: ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0.LPCB.ECDV.ECR1] (Node ffff88011bc28b80), AE_TIME
    Jul 15 12:29:06 themonkey kernel: ACPI Error (psparse-0537): Method parse/execution failed [\ECBT] (Node ffff88011bc28c60), AE_TIME
    Jul 15 12:29:06 themonkey kernel: ACPI Error (psparse-0537): Method parse/execution failed [\ECG2] (Node ffff88011bc28d20), AE_TIME
    Jul 15 12:29:06 themonkey kernel: ACPI Error (psparse-0537): Method parse/execution failed [\ECG6] (Node ffff88011bc28de0), AE_TIME
    Jul 15 12:29:06 themonkey kernel: ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.BAT0._BST] (Node ffff88011bc2a3e0), AE_TIME
    Jul 15 12:29:06 themonkey kernel: ACPI Exception: AE_TIME, Evaluating _BST (20100121/battery-439)
    Jul 15 12:29:06 themonkey acpid: client connected from 2097[0:100]
    Jul 15 12:29:06 themonkey acpid: 1 client rule loaded
    Jul 15 12:29:06 themonkey kernel: dell-wmi: Received unknown WMI event (0x0)
    lspci:
    00:00.0 Host bridge: Intel Corporation Core Processor DRAM Controller (rev 02)
    00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 02)
    00:19.0 Ethernet controller: Intel Corporation 82577LM Gigabit Network Connection (rev 05)
    00:1a.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05)
    00:1b.0 Audio device: Intel Corporation Device 3b57 (rev 05)
    00:1c.0 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 05)
    00:1c.1 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 (rev 05)
    00:1c.2 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 3 (rev 05)
    00:1c.3 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 4 (rev 05)
    00:1d.0 USB Controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev a5)
    00:1f.0 ISA bridge: Intel Corporation 5 Series/3400 Series Chipset LPC Interface Controller (rev 05)
    00:1f.2 RAID bus controller: Intel Corporation Mobile 82801 SATA RAID Controller (rev 05)
    00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 05)
    00:1f.6 Signal processing controller: Intel Corporation 5 Series/3400 Series Chipset Thermal Subsystem (rev 05)
    02:00.0 Network controller: Intel Corporation WiFi Link 6000 Series (rev 35)
    03:00.0 SD Host controller: Ricoh Co Ltd Device e822 (rev 01)
    3f:00.0 Host bridge: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers (rev 02)
    3f:00.1 Host bridge: Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 02)
    3f:02.0 Host bridge: Intel Corporation Core Processor QPI Link 0 (rev 02)
    3f:02.1 Host bridge: Intel Corporation Core Processor QPI Physical 0 (rev 02)
    3f:02.2 Host bridge: Intel Corporation Core Processor Reserved (rev 02)
    3f:02.3 Host bridge: Intel Corporation Core Processor Reserved (rev 02)
    uname -a:
    Linux themonkey 2.6.34-ARCH #1 SMP PREEMPT Mon Jul 5 22:12:11 CEST 2010 x86_64 Intel(R) Core(TM) i5 CPU M 540 @ 2.53GHz GenuineIntel GNU/Linux
    Any help would be greatly appreciated.  Not a show stopper, just an annoyance.
    Thanks,
    Kevin
    Last edited by qchapter (2010-07-15 22:09:24)

    Oops . . .  sorry Profjim .... didn't see your post before I bumped!  The dhcpcd commands don't seem to work after a resume.
    However -- I figured out how to make it work -- not sure WHY, but it works!
    I had added the 's2ram -f' command to /etc/acpi/handler.sh under the lid/button event to trigger the suspend (since pm-suspend would freeze on resume). BUT -- after adding /etc/pm/config.d/config with:
    SLEEP_MODULE=uswsusp
    ADD_PARAMETERS="--force"
    in order to force pm-suspend to use the uswsusp suspend (which works properly for my hp dv6000), AND change the 's2ram -f' to 'pm-suspend' in /etc/acpi/handler.sh -- it WORKS! Ok -- well, the resume at work on the unencrypted network works now to restore the connection. Still have to check it at home on Sun.
    Thanks all!
    Scott

  • How to get current suspended message ID from context

    Hi all,
    I'm trying to get the Suspended Message Id from my orchestration.
    I don't want to get the this inside the orchestration, because that I already know how to do it.
    I've search inside this forum and get a solution, but actually does not work. 
    Using this: Microsoft.XLANGs.Core.Service.RootService.InstanceId  
    (http://social.msdn.microsoft.com/Forums/en-US/95d2c9d9-5cbe-4bca-9cef-da7aba984d3c/how-do-i-access-instance-id-of-a-message-from-orchestration?forum=biztalkgeneral)
    Also, I have searched in "all" properties of Microsoft.XLANGs.Core.Service.RootService and didn't had any luck
    My goal?
    I have a service that logs, to SQL, all errors in my biztalk applications. Right now is not saving the message id, and I do need.  (I can easily change the method to receive the message id, but I'm trying to avoid that because I have 30 applications
    using the same method/application).
    Also, I have another service that is listening to all suspended messages.. In here I have the message Id (and other data) using WMI... 
    Now, I need to correlate both info..
    Any help would be appreciated
    Ricardo Bessa

    Hi,
    Thanks for the reply. My answers inline.
    I already understood the logic that you said and I'm working on it. However, if you have more good inputs to give, please do! 
    Thanks
    Hi Ricardo,
    Let us be clear with your requirement.
    “I
    have another service that is listening to all suspended messages.. In here I have the message Id (and other data) using WMI... ” 
    - What this “service” is? Is this some service external to BizTalk from where you want to access the detail of the suspended message? If so then you go to use some way similar to my earlier reply. When you want to access the suspended message details,
    you got to access it from management db. The code which I have given in my earlier reply would do that. No other option in this case.
    Yes, I am already doing that. I'm using a Windows service that is listening for all suspended messages in BizTalk. In this
    windows service I can access to everything that I want (message Id; service type id; instance id; and many other properties...). My issue is not in here.
    “Actually
    when i call Microsoft.XLANGs.Core.Service.RootService.InstanceId I'm getting the property SendingOrchestrationID.” 
    - Are you try to access the message Instance ID from another child orchestration?
    SendingOrchestrationID is the orchestration instance
    ID where the message originated and you would get it when another orchestration (subprocess) which has been triggered by another orchestration (parent orch whose ID is
    SendingOrchestrationID). Detail us about where and how
    to you get this SendingOrchestrationID.
    Because when you want to access “Suspended” Orchestration’s message instance ID, you can’t achieve it by calling it from sub-processes.
    I'm using a external (custom) class library. 
    I have a custom log which tracks everything that goes in our BizTalk applications. When errors / warning I write that to a database table.
    This is made in different times, so when I log the error to the database I need "something" that exists in my other service (MEssageID; service type
    id; instance id; or other 'unique' property). Also, I don't want to change the log method, because (if I do that, I would need to change 30 applications).
    That's why I'm looking for a 'global' property that I can use, without changing (a lot) my code.
    When an Orchestration is suspended, it will be marked as “Suspended” in db and to get the messages associated with it, access the suspended Orchestration instance
    ID from the db and use this ID from db to get its related contents/messages IDs.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.
    Ricardo Bessa

  • [SOLVED] Cannot resume from suspend but hibernate works fine

    Please help me figuring out what can be the issues..
    I cannot resume from suspend while "sudo pm-hibernate" works fine..
    When I use "sudo pm-suspend", the system (samsung N210 netbook) goes to sleep and I can see the power light blinking as expected. But, when I try to resume the system from suspend by pressing the power button, the screen remains black with no HDD activity. Only thing I can see is the power LED on.
    After I do "sudo pm-suspend" and try to resume from suspend but fails. So, I do a HARD reboot and then this is the content of  /var/log/pm-suspend.log
    Initial commandline parameters:
    Thu Dec 16 12:00:27 IST 2010: Running hooks for suspend.
    Running hook /usr/lib/pm-utils/sleep.d/00logging suspend suspend:
    Linux archlinux-N210 2.6.36-ARCH #1 SMP PREEMPT Fri Dec 10 20:32:37 CET 2010 x86_64 Intel(R) Atom(TM) CPU N450 @ 1.66GHz GenuineIntel GNU/Linux
    Module Size Used by
    dm_mod 66662 0
    rfcomm 34874 4
    sco 8828 2
    bnep 8726 2
    l2cap 42585 16 rfcomm,bnep
    ipv6 281833 24
    nls_utf8 1288 0
    cifs 242984 0
    fscache 39915 1 cifs
    fuse 64259 3
    arc4 1378 2
    snd_seq_dummy 1431 0
    snd_hda_codec_realtek 275887 1
    uvcvideo 61404 0
    videodev 64318 1 uvcvideo
    v4l1_compat 15578 2 uvcvideo,videodev
    ecb 2041 2
    snd_seq_oss 28760 0
    ath9k 80424 0
    joydev 10055 0
    btusb 11385 2
    v4l2_compat_ioctl32 10212 1 videodev
    bluetooth 52419 9 rfcomm,sco,bnep,l2cap,btusb
    snd_seq_midi_event 5436 1 snd_seq_oss
    mac80211 196159 1 ath9k
    ath9k_common 3624 1 ath9k
    ath9k_hw 290909 2 ath9k,ath9k_common
    snd_hda_intel 22285 1
    snd_hda_codec 79384 2 snd_hda_codec_realtek,snd_hda_intel
    ath 8822 2 ath9k,ath9k_hw
    snd_seq 50082 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
    snd_seq_device 5297 3 snd_seq_dummy,snd_seq_oss,snd_seq
    snd_pcm_oss 39221 0
    cfg80211 143110 3 ath9k,mac80211,ath
    snd_hwdep 6110 1 snd_hda_codec
    uhci_hcd 21926 0
    easy_slow_down_manager 3185 0
    snd_mixer_oss 17106 2 snd_pcm_oss
    snd_pcm 71921 3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
    snd_timer 19265 2 snd_seq,snd_pcm
    cpufreq_powersave 958 0
    sky2 46293 0
    rfkill 15882 3 bluetooth,cfg80211
    led_class 2331 1 ath9k
    snd 57562 11 snd_hda_codec_realtek,snd_seq_oss,snd_hda_intel,snd_hda_codec,snd_seq,snd_seq_device,snd_pcm_oss,snd_hwdep,snd_mixer_oss,snd_pcm,snd_timer
    psmouse 52592 0
    cpufreq_ondemand 8215 2
    soundcore 5969 2 snd
    ehci_hcd 36988 0
    tpm_tis 7928 0
    shpchp 26453 0
    sg 25652 0
    phc_intel 9527 1
    battery 10231 0
    tpm 10957 1 tpm_tis
    samsung_backlight 2844 0
    serio_raw 4486 0
    snd_page_alloc 7249 2 snd_hda_intel,snd_pcm
    usbcore 137570 5 uvcvideo,btusb,uhci_hcd,ehci_hcd
    ac 3105 0
    pci_hotplug 24319 1 shpchp
    tpm_bios 5505 1 tpm
    i2c_i801 8550 0
    freq_table 2323 2 cpufreq_ondemand,phc_intel
    pcspkr 1819 0
    thermal 12242 0
    evdev 8519 14
    processor 25936 1 phc_intel
    mperf 1243 1 phc_intel
    ext4 313574 1
    mbcache 5722 1 ext4
    jbd2 69002 1 ext4
    crc16 1297 2 l2cap,ext4
    sd_mod 25856 4
    ahci 20353 3
    libahci 17982 1 ahci
    libata 156316 2 ahci,libahci
    scsi_mod 124891 3 sg,sd_mod,libata
    i915 321187 3
    drm_kms_helper 25963 1 i915
    drm 175314 3 i915,drm_kms_helper
    i2c_algo_bit 4911 1 i915
    button 4834 1 i915
    i2c_core 18726 6 videodev,i2c_i801,i915,drm_kms_helper,drm,i2c_algo_bit
    video 19305 1 i915
    output 1940 1 video
    intel_agp 29459 2 i915
    total used free shared buffers cached
    Mem: 2046212 603128 1443084 0 11400 258660
    -/+ buffers/cache: 333068 1713144
    Swap: 2250748 0 2250748
    /usr/lib/pm-utils/sleep.d/00logging suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/00powersave suspend suspend:
    /usr/lib/pm-utils/sleep.d/00powersave suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01grub suspend suspend:
    /usr/lib/pm-utils/sleep.d/01grub suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/01laptop-mode suspend suspend:
    /usr/lib/pm-utils/sleep.d/01laptop-mode suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend:
    /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend: success.
    Running hook /etc/pm/sleep.d/20_samsung-tools suspend suspend:
    /etc/pm/sleep.d/20_samsung-tools suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend:
    /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/75modules suspend suspend:
    /usr/lib/pm-utils/sleep.d/75modules suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/90clock suspend suspend:
    /usr/lib/pm-utils/sleep.d/90clock suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/91wicd suspend suspend:
    /usr/lib/pm-utils/sleep.d/91wicd suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend:
    /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/95led suspend suspend:
    /usr/lib/pm-utils/sleep.d/95led suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend:
    Kernel modesetting video driver detected, not using quirks.
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend: success.
    Running hook /usr/lib/pm-utils/sleep.d/99video suspend suspend:
    /usr/lib/pm-utils/sleep.d/99video suspend suspend: success.
    Thu Dec 16 12:00:31 IST 2010: performing suspend
    Since, the last time I checked about suspend was 1.5 months back, I cant really make out as to what package caused the issue as I had a few upgrades since that time.
    I am no expert but it seems like it is the log of suspending the system, it seems like the system didnt even go to initial stage of resuming.
    Last edited by shadyabhi (2010-12-27 17:54:19)

    Well this is a long shot... But my laptop had some issues with suspending due to low-power governors preventing it from fully working at times.
    Because of that I manually suspend with the following script:
    #!/bin/bash
    clear
    cpufreq-set -g performance
    cpufreq-info
    echo "Continue? y/n? ";read bevestiging
    if [ $bevestiging = "y" ]
    then
    echo "System going down for suspension NOW!"
    pm-suspend
    else
    echo "Exiting..."
    exit 0
    fi
    exit 0
    All it really does in the end, is change the governer from which it's currently on to "performance", thus allowing maximum clock speed.
    I've also added in a little confirmation dialog to check whether it's properly switched.
    Of course, this will only work for you if you're also using laptop-mode and cpufrequtils.
    Edit: You need to run this script with sudo or as the root user.
    Last edited by Aeva (2010-12-16 14:16:32)

  • Resume after suspend / upgrades

    Hi all, I've been using arch for about half a year and I'm very satisfied with it. There is, however, one thing that I can't change/find in arch, that is "after which event my laptop resumes after suspend". Suspend (s2ram or default scripts, that were in the system) / resume work fine, but after every (almost every) kernel upgrade somehow "resume event trigger" changes. It becomes or "resume after lid is open" or "resume after lid is open _and_ any key is pressed". I want it to resume just after lid is open without pressing key, but I can't find where I can set it. Could someone help me, please? Thanks.
    Sorry for my English, it's my third language.
    About the system:
    laptop is Sony Vaio vpcea3s1e;
    Latest upgrades (kde 4.6.2/kernel 2.6.38);
    Suspend is done by s2ram.
    here is my /proc/acpi/wakeup:
    Device S-state Status Sysfs node
    P0PF S4 *disabled pci:0000:00:1e.0
    USB1 S3 *disabled
    USB2 S3 *disabled
    USB3 S3 *disabled
    USB4 S3 *disabled
    USB5 S3 *disabled
    USB6 S3 *disabled
    USB7 S3 *disabled
    HDEF S4 *disabled pci:0000:00:1b.0
    RP01 S3 *disabled pci:0000:00:1c.0
    PXSX S3 *disabled pci:0000:02:00.0
    RP03 S3 *disabled pci:0000:00:1c.2
    PXSX S3 *disabled pci:0000:04:00.0
    EHC1 S3 *disabled pci:0000:00:1d.0
    EHC2 S3 *disabled pci:0000:00:1a.0
    RP06 S3 *disabled pci:0000:00:1c.5
    PXSX S3 *disabled
    PWRB S4 *enabled
    It works exactly the same whether apcid is started, though.
    and /etc/mkinitcpio.conf (HOOKS) :
    HOOKS="base udev v86d autodetect pata scsi sata uresume filesystems "

    Hi all, I've been using arch for about half a year and I'm very satisfied with it. There is, however, one thing that I can't change/find in arch, that is "after which event my laptop resumes after suspend". Suspend (s2ram or default scripts, that were in the system) / resume work fine, but after every (almost every) kernel upgrade somehow "resume event trigger" changes. It becomes or "resume after lid is open" or "resume after lid is open _and_ any key is pressed". I want it to resume just after lid is open without pressing key, but I can't find where I can set it. Could someone help me, please? Thanks.
    Sorry for my English, it's my third language.
    About the system:
    laptop is Sony Vaio vpcea3s1e;
    Latest upgrades (kde 4.6.2/kernel 2.6.38);
    Suspend is done by s2ram.
    here is my /proc/acpi/wakeup:
    Device S-state Status Sysfs node
    P0PF S4 *disabled pci:0000:00:1e.0
    USB1 S3 *disabled
    USB2 S3 *disabled
    USB3 S3 *disabled
    USB4 S3 *disabled
    USB5 S3 *disabled
    USB6 S3 *disabled
    USB7 S3 *disabled
    HDEF S4 *disabled pci:0000:00:1b.0
    RP01 S3 *disabled pci:0000:00:1c.0
    PXSX S3 *disabled pci:0000:02:00.0
    RP03 S3 *disabled pci:0000:00:1c.2
    PXSX S3 *disabled pci:0000:04:00.0
    EHC1 S3 *disabled pci:0000:00:1d.0
    EHC2 S3 *disabled pci:0000:00:1a.0
    RP06 S3 *disabled pci:0000:00:1c.5
    PXSX S3 *disabled
    PWRB S4 *enabled
    It works exactly the same whether apcid is started, though.
    and /etc/mkinitcpio.conf (HOOKS) :
    HOOKS="base udev v86d autodetect pata scsi sata uresume filesystems "

  • Resume after suspend with uvesafb

    Hello. I have an install with lxde on my acer one. It did resume after suspend before I did install v86d and set the framebuffer. No with uvesafb and v86d I do have a nice-looking framebuffer but I'm not able to resume after suspend. All I get is a black screen. I suppose it doesn't load proper modules. What to do?
    Jan

    I'll post my /var/log/pm-suspend.log:
    Initial commandline parameters: --quirk-none
    Sat Jan 24 18:02:52 CET 2009: Running hooks for suspend.
    /usr/lib/pm-utils/sleep.d/00auto-quirk suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/00logging suspend suspend: Linux acerone 2.6.28-ARCH #1 SMP PREEMPT Sun Jan 18 20:17:17 UTC 2009 i686 Intel(R) Atom(TM) CPU N270 @ 1.60GHz GenuineIntel GNU/Linux
    Module                  Size  Used by
    i915                   58500  2
    drm                    83752  3 i915
    joydev                 11712  0
    uvcvideo               57736  0
    compat_ioctl32          3072  1 uvcvideo
    videodev               34176  1 uvcvideo
    v4l1_compat            15364  2 uvcvideo,videodev
    mmc_block              11012  0
    psmouse                55828  0
    iTCO_wdt               12836  0
    iTCO_vendor_support     4996  1 iTCO_wdt
    serio_raw               7172  0
    sg                     26804  0
    i2c_i801               10896  0
    i2c_core               22804  1 i2c_i801
    pcspkr                  4352  0
    video                  18576  0
    output                  4608  1 video
    uhci_hcd               24592  0
    ehci_hcd               36876  0
    jmb38x_ms              11396  0
    intel_agp              27580  1
    agpgart                31572  3 drm,intel_agp
    usbcore               136976  4 uvcvideo,uhci_hcd,ehci_hcd
    sdhci_pci               9088  0
    sdhci                  17028  1 sdhci_pci
    memstick               10652  1 jmb38x_ms
    mmc_core               46876  2 mmc_block,sdhci
    acer_wmi               16320  0
    rfkill                 11724  2 acer_wmi
    wmi                     7848  1 acer_wmi
    evdev                  11296  8
    thermal                17180  0
    processor              41388  3 thermal
    fan                     6276  0
    snd_seq_oss            31872  0
    snd_seq_midi_event      8192  1 snd_seq_oss
    button                  7824  0
    battery                12036  0
    snd_seq                49968  4 snd_seq_oss,snd_seq_midi_event
    snd_seq_device          8332  2 snd_seq_oss,snd_seq
    ac                      6020  0
    snd_hda_intel         411956  0
    snd_hwdep               9092  1 snd_hda_intel
    snd_pcm_oss            40320  0
    snd_pcm                70020  2 snd_hda_intel,snd_pcm_oss
    snd_timer              21384  2 snd_seq,snd_pcm
    snd_page_alloc         10120  2 snd_hda_intel,snd_pcm
    snd_mixer_oss          16512  1 snd_pcm_oss
    snd                    50852  9 snd_seq_oss,snd_seq,snd_seq_device,snd_hda_intel,snd_hwdep,snd_pcm_oss,snd_pcm,snd_timer,snd_mixer_oss
    soundcore               8160  1 snd
    arc4                    3712  2
    ecb                     4608  2
    ath5k                 100864  0
    mac80211              161184  1 ath5k
    led_class               5508  2 acer_wmi,ath5k
    cfg80211               31760  2 ath5k,mac80211
    r8169                  33924  0
    mii                     6528  1 r8169
    rtc_cmos               12332  0
    rtc_core               17564  1 rtc_cmos
    rtc_lib                 4480  1 rtc_core
    ext2                   66184  1
    mbcache                 8708  1 ext2
    uvesafb                28388  1
    cn                      9120  2 uvesafb
    sd_mod                 26904  2
    ata_piix               23300  1
    ata_generic             6788  0
    pata_acpi               6016  0
    libata                158240  3 ata_piix,ata_generic,pata_acpi
    scsi_mod              102036  3 sg,sd_mod,libata
                 total       used       free     shared    buffers     cached
    Mem:       1543124     250256    1292868          0       2712      44088
    -/+ buffers/cache:     203456    1339668
    Swap:            0          0          0
    success.
    /usr/lib/pm-utils/sleep.d/00powersave suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/01grub suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend: /bin/stty: standard input: Invalid argument
    success.
    /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/55NetworkManager suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/75modules suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/90chvt suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/90clock suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/95led suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/98smart-kernel-video suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/99video suspend suspend: kernel.acpi_video_flags = 0
    success.
    Sat Jan 24 18:02:54 CET 2009: performing suspend
    Sat Jan 24 18:03:20 CET 2009: Awake.
    Sat Jan 24 18:03:20 CET 2009: Running hooks for resume
    /usr/lib/pm-utils/sleep.d/99video resume suspend: success.
    /usr/lib/pm-utils/sleep.d/98smart-kernel-video resume suspend: success.
    /usr/lib/pm-utils/sleep.d/95led resume suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/94cpufreq resume suspend: success.
    /usr/lib/pm-utils/sleep.d/90clock resume suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/90chvt resume suspend: success.
    /usr/lib/pm-utils/sleep.d/75modules resume suspend: success.
    /usr/lib/pm-utils/sleep.d/55NetworkManager resume suspend: success.
    /usr/lib/pm-utils/sleep.d/49bluetooth resume suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/11netcfg resume suspend: /bin/stty: standard input: Invalid argument
    success.
    /usr/lib/pm-utils/sleep.d/01grub resume suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/00powersave resume suspend: success.
    /usr/lib/pm-utils/sleep.d/00logging resume suspend: success.
    /usr/lib/pm-utils/sleep.d/00auto-quirk resume suspend: success.
    Sat Jan 24 18:03:20 CET 2009: Finished.

  • Resuming from suspend breaks function key on laptop

    I have an Asus K40IN laptop.  Up until a few days ago, suspending worked perfectly.  However, now when I resume from suspend, my function key no longer works.  I use it for some global shortcuts like play/pause, volume up/down, brightness up/down, etc.  I checked in xev, and it's actually registering no key press at all.  However, if I press it twice quickly, it will start registering infinite presses of the d key (keycode 43).  This also completely incapacitates the keyboard -- many keys do not do what they should.  It stops if I press the actual d key once.
    I'm guessing the most likely cause is a recent update.  Here's my recent /var/log/pacman.log:
    [2010-01-08 14:45] upgraded kernel26-firmware (2.6.32.2-2 -> 2.6.32.3-1)
    [2010-01-08 14:45] >>> Updating module dependencies. Please wait ...
    [2010-01-08 14:45] >>> MKINITCPIO SETUP
    [2010-01-08 14:45] >>> ----------------
    [2010-01-08 14:45] >>> If you use LVM2, Encrypted root or software RAID,
    [2010-01-08 14:45] >>> Ensure you enable support in /etc/mkinitcpio.conf .
    [2010-01-08 14:45] >>> More information about mkinitcpio setup can be found here:
    [2010-01-08 14:45] >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    [2010-01-08 14:45]
    [2010-01-08 14:45] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2010-01-08 14:45] ==> Building image "default"
    [2010-01-08 14:45] ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    [2010-01-08 14:45] :: Begin build
    [2010-01-08 14:45] :: Parsing hook [base]
    [2010-01-08 14:45] :: Parsing hook [udev]
    [2010-01-08 14:45] :: Parsing hook [autodetect]
    [2010-01-08 14:45] :: Parsing hook [pata]
    [2010-01-08 14:45] :: Parsing hook [scsi]
    [2010-01-08 14:45] :: Parsing hook [sata]
    [2010-01-08 14:45] :: Parsing hook [lvm2]
    [2010-01-08 14:45] :: Parsing hook [filesystems]
    [2010-01-08 14:45] :: Generating module dependencies
    [2010-01-08 14:45] :: Generating image '/boot/kernel26.img'...SUCCESS
    [2010-01-08 14:45] ==> SUCCESS
    [2010-01-08 14:45] ==> Building image "fallback"
    [2010-01-08 14:45] ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    [2010-01-08 14:45] :: Begin build
    [2010-01-08 14:45] :: Parsing hook [base]
    [2010-01-08 14:45] :: Parsing hook [udev]
    [2010-01-08 14:45] :: Parsing hook [pata]
    [2010-01-08 14:46] :: Parsing hook [scsi]
    [2010-01-08 14:46] :: Parsing hook [sata]
    [2010-01-08 14:46] :: Parsing hook [lvm2]
    [2010-01-08 14:46] :: Parsing hook [filesystems]
    [2010-01-08 14:46] :: Generating module dependencies
    [2010-01-08 14:46] :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    [2010-01-08 14:46] ==> SUCCESS
    [2010-01-08 14:46] upgraded kernel26 (2.6.32.2-2 -> 2.6.32.3-1)
    [2010-01-08 14:46] upgraded zlib (1.2.3.3-3 -> 1.2.3.4-3)
    [2010-01-09 03:18] synchronizing package lists
    [2010-01-09 03:19] starting full system upgrade
    [2010-01-09 03:44] warning: /etc/arno-iptables-firewall/firewall.conf installed as /etc/arno-iptables-firewall/firewall.conf.pacnew
    [2010-01-09 03:44] upgraded arno-iptables-firewall (1.9.2g-1 -> 1.9.2h-1)
    [2010-01-09 20:46] synchronizing package lists
    [2010-01-09 20:47] starting full system upgrade
    [2010-01-09 20:47] starting full system upgrade
    [2010-01-10 03:06] synchronizing package lists
    [2010-01-10 03:06] starting full system upgrade
    [2010-01-10 03:08] In order to use the new nvidia module, exit Xserver and unload it manually.
    [2010-01-10 03:08] upgraded nvidia (190.53-1 -> 190.53-3)
    [2010-01-10 03:32] synchronizing package lists
    [2010-01-10 03:32] starting full system upgrade
    [2010-01-10 03:32] upgraded nvidia (190.53-3 -> 190.53-3)
    [2010-01-10 16:05] synchronizing package lists
    [2010-01-10 16:06] starting full system upgrade
    [2010-01-10 22:50] synchronizing package lists
    [2010-01-10 22:50] starting full system upgrade
    [2010-01-10 22:50] starting full system upgrade
    [2010-01-10 22:50] upgraded freeglut (2.4.0-4 -> 2.6.0-1)
    [2010-01-10 22:51] upgraded kid3 (1.2-1 -> 1.3-1)
    [2010-01-10 23:16] upgraded x264-git (20100107-1 -> 20100110-1)
    [2010-01-10 23:20] upgraded ffmpeg-svn (21082-1 -> 21132-1)
    [2010-01-10 23:27] upgraded mplayer-mt-git (20100107-1 -> 20100110-1)
    [2010-01-10 23:39] upgraded amarok-git (20100107-1 -> 20100110-1)
    [2010-01-10 23:39] upgraded depot_tools-svn (35767-1 -> 35900-1)
    [2010-01-11 00:25] upgraded chromium-svn (35770-1 -> 35902-1)
    [2010-01-11 02:19] installed speedcrunch (0.10.1-1)
    [2010-01-11 06:01] synchronizing package lists
    [2010-01-11 06:01] starting full system upgrade
    [2010-01-11 15:12] synchronizing package lists
    [2010-01-11 15:13] starting full system upgrade
    [2010-01-11 15:14] upgraded x264-git (20100110-1 -> 20100111-1)
    [2010-01-11 15:16] upgraded ffmpeg-svn (21132-1 -> 21152-1)
    [2010-01-11 15:19] upgraded mplayer-mt-git (20100110-1 -> 20100111-1)
    [2010-01-11 17:04] synchronizing package lists
    [2010-01-11 17:04] starting full system upgrade
    [2010-01-11 17:04] starting full system upgrade
    [2010-01-11 17:04] upgraded qtcurve-gtk2 (1.0.0-1 -> 1.0.1-1)
    [2010-01-12 15:32] synchronizing package lists
    [2010-01-12 15:33] starting full system upgrade
    [2010-01-12 15:33] starting full system upgrade
    [2010-01-12 15:34] upgraded dhcpcd (5.1.3-1 -> 5.1.4-1)
    [2010-01-12 15:34] upgraded live-media (2009.09.28-2 -> 2010.01.11-1)
    [2010-01-12 15:34] upgraded strigi (0.7.0-1 -> 0.7.1-1)
    Any ideas?

    Well I still haven't been able to fix it, but here's what I've figured out:
    - Some of the buttons (for example brightness adjust and turn screen off) do not have keycodes.  They seem to work directly through the bios, not through the operating system.  Other buttons (like volume control) do have keycodes, and do work through the OS.
    - If I unload the kernel module asus_laptop, the OS-dependent buttons stop working, but the others continue to work.
    - When I suspend and resume, all the buttons stop working.
    - Putting asus_laptop in SUSPEND_MODULES for pm-utils does not help.
    - Using s2ram from uswsusp does not help.
    - After a suspend and resume (so the buttons are all broken), when I press a button twice and start getting infinite presses of d, I get the following message in dmesg:
    Jan 17 10:45:53 firefly kernel: atkbd.c: Unknown key released (translated set 2, code 0xe1 on isa0060/serio0).
    Jan 17 10:45:53 firefly kernel: atkbd.c: Use 'setkeycodes e061 <keycode>' to make it known.
    I tried running the suggested command using a keycode for a volume button, but it didn't help.  It did stop this message from coming up in dmesg for that particular button, but the other behaviors were the same.
    I can't think of anything else to do to fix it.  Does this mean anything to anyone?

  • Resume from suspend occasionally fails.

    Sometimes when I resume after suspending to RAM, all that shows up is a blank screen with a single underscore at the top left. There is no mouse cursor and the system is completely unresponsive. It only happens occasionally (maybe 1/4).
    I have not found any related messages in the logs. Memtest completes successfully too. Does anyone have any idea of what might cause this?
    It's like the system is playing Russian roulette with itself whenever I resume.
    Last edited by Xyne (2013-02-06 11:54:41)

    This happens to me 100% of the time with 3.11.6 and 3.10.17, resuming from suspend results in naught but an underscore top left. VT switching appears to work temporarily, I was able to enter in my user name in the VT, but then everything hung on pressing enter. Not sure about earlier kernel versions because this is a fresh install on this hardware. Happens with and without X.
    Hibernate results in an underscore before the computer is able to shut down. I tried using pm_trace and dumping logs before/after as recommended around the internet, pm_trace didn't match any hashes & there are no logs after suspend that get written out as far as I can tell. The computer is also unresponsive to the network. I also tried using pm_debug but I wasn't really sure what I was doing, running the core test I thought shouldn't cause the computer to actually suspend, but it did & there was my underscore again in all its glory.
    Wish I knew a way to get some more information..

  • Cannot resume from suspend to ram (fglrx)

    Hello,
    I have recently installed Catalyst drivers, instead of xf86-video-ati. I have laptop with PowerXPress(Intel/AMD hybrid graphics).
    I can't resume after suspend to ram. System freezes with black screen, tty switching doesn't work and I have to shutdown by holding power button.
    If I add "nomodeset" to GRUB, X fails to start. xorg.conf generated using "aticonfig --initial". Catalyst driver works fine.
    DE/DM: KDE 4/kwin
    Graphic cards: Intel HD Graphics 3000; AMD Radeon 7600M.
    Laptop: HP pavillion g6 2004er.

    Welcome to the forum!
    Yes, some Lenovo employees do read and post to this forum.  Mark is quite active, and several others post as well.  In addition, there are lurkers who just read without making public comments although sometimes they ask the mod team to either gather more information or pass along advice.
    However, here are the expectations of their participation from the Welcome message:
    These communities have been created to provide a high quality atmosphere in which users of Lenovo products and services may share experiences and expertise. While members from Lenovo may participate at intervals to engage in the discussions and offer advice and suggestions, this forum is not designed as a dedicated and staffed support channel.
    The bottom line is there's no guarantee that you will get an answer to a question here directly from Lenovo. 
    On the other hand, you just might!  ;-)
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Jane
    2015 X1 Carbon, ThinkPad Slate, T410s, X301, X200 Tablet, T60p, HP TouchPad, iPad Air 2, iPhone 5S, IdeaTab A2107A, Yoga Tablet, Yoga 3 Pro
    I am not a Lenovo Employee.
    I AM one of those crazy ThinkPad zealots!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!

  • Catalyst 10.4 & kernel26 no resume from suspend [SOLVED]

    I installed catalyst 10.4 from AUR & kernel26 on my Dell 1555 - ATI 4570.
    All work OK except resume fom suspend, when I got black screen (all xorg-server pkg's).
    Is there a solution for that problem?
    With catalyst 10.3 all is ok.
    Last edited by mits (2010-05-27 10:14:57)

    Bump!
    Any ideas?
    /var/log/pm-suspend.log
    Initial commandline parameters: --quirk-dpms-suspend
    --quirk-dpms-on
    --quirk-vbestate-restore
    --quirk-vbemode-restore
    --quirk-vga-mode3
    --quirk-vbe-post
    --quirk-radeon-off
    Thu May 6 16:30:23 EEST 2010: Running hooks for suspend.
    /usr/lib/pm-utils/sleep.d/00logging suspend suspend:Linux dell 2.6.33-ARCH #1 SMP PREEMPT Mon Apr 26 19:31:00 CEST 2010 x86_64 Intel(R) Core(TM)2 Duo CPU T6600 @ 2.20GHz GenuineIntel GNU/Linux
    Module Size Used by
    michael_mic 2018 8
    arc4 1354 4
    ecb 1985 4
    rfcomm 34769 8
    sco 8489 2
    bridge 47229 0
    stp 1584 1 bridge
    llc 3688 2 bridge,stp
    bnep 8702 2
    l2cap 33600 16 rfcomm,bnep
    coretemp 4837 0
    loop 15097 0
    fuse 59189 2
    joydev 9698 0
    snd_hda_codec_atihdmi 2715 1
    snd_hda_codec_idt 52539 1
    btusb 11425 2
    bluetooth 50432 9 rfcomm,sco,bnep,l2cap,btusb
    lib80211_crypt_tkip 8421 0
    snd_hda_intel 22514 3
    snd_hda_codec 68863 3 snd_hda_codec_atihdmi,snd_hda_codec_idt,snd_hda_intel
    snd_hwdep 6150 1 snd_hda_codec
    snd_pcm 70924 2 snd_hda_intel,snd_hda_codec
    snd_timer 19684 1 snd_pcm
    snd 57209 12 snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer
    soundcore 6153 1 snd
    snd_page_alloc 7161 2 snd_hda_intel,snd_pcm
    dell_wmi 2923 0
    video 18845 0
    output 1948 1 video
    sdhci_pci 6738 0
    sdhci 16075 1 sdhci_pci
    firewire_ohci 23477 0
    firewire_core 44030 1 firewire_ohci
    crc_itu_t 1273 1 firewire_core
    mmc_core 52043 1 sdhci
    led_class 2609 1 sdhci
    wl 1944142 0
    lib80211 3942 2 lib80211_crypt_tkip,wl
    cpufreq_powersave 934 0
    uvcvideo 60671 0
    psmouse 53352 0
    dell_laptop 2389 0
    videodev 39355 1 uvcvideo
    v4l1_compat 15546 2 uvcvideo,videodev
    cpufreq_ondemand 7982 1
    ricoh_mmc 3117 0
    v4l2_compat_ioctl32 10641 1 videodev
    rfkill 15214 4 bluetooth,dell_laptop
    wmi 5893 1 dell_wmi
    battery 9535 0
    ac 3081 0
    serio_raw 4526 0
    acpi_cpufreq 6483 1
    tg3 120226 0
    libphy 16276 1 tg3
    freq_table 2331 2 cpufreq_ondemand,acpi_cpufreq
    thermal 12154 0
    button 4778 0
    usbhid 38146 0
    hid 75579 1 usbhid
    processor 29630 3 acpi_cpufreq
    iTCO_wdt 10541 0
    iTCO_vendor_support 1841 1 iTCO_wdt
    evdev 8711 22
    intel_agp 27329 0
    i2c_i801 8558 0
    i2c_core 17863 2 videodev,i2c_i801
    dcdbas 5472 1 dell_laptop
    vhba 8075 1
    sg 25200 0
    tpm_tis 8208 0
    tpm 11109 1 tpm_tis
    tpm_bios 5449 1 tpm
    fglrx 2314227 31
    vboxdrv 1725736 0
    rtc_cmos 8886 0
    rtc_core 14471 1 rtc_cmos
    rtc_lib 1874 1 rtc_core
    ext4 331927 2
    mbcache 5754 1 ext4
    jbd2 75433 1 ext4
    crc16 1273 2 l2cap,ext4
    uhci_hcd 22067 0
    ehci_hcd 35119 0
    usbcore 144320 6 btusb,uvcvideo,usbhid,uhci_hcd,ehci_hcd
    sr_mod 14810 0
    cdrom 35745 1 sr_mod
    sd_mod 27507 5
    ahci 34898 4
    libata 154235 1 ahci
    scsi_mod 94276 5 vhba,sg,sr_mod,sd_mod,libata
    total used free shared buffers cached
    Mem: 4021656 1097212 2924444 0 52848 295760
    -/+ buffers/cache: 748604 3273052
    Swap: 2104472 0 2104472
    success.
    /usr/lib/pm-utils/sleep.d/00powersave suspend suspend:success.
    /usr/lib/pm-utils/sleep.d/01grub suspend suspend:not applicable.
    /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend:success.
    /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend:not applicable.
    /usr/lib/pm-utils/sleep.d/55NetworkManager suspend suspend:success.
    /usr/lib/pm-utils/sleep.d/75modules suspend suspend:success.
    /usr/lib/pm-utils/sleep.d/90clock suspend suspend:not applicable.
    /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend:success.
    /usr/lib/pm-utils/sleep.d/95led suspend suspend:not applicable.
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend:success.
    /usr/lib/pm-utils/sleep.d/99video suspend suspend:disabled.
    Thu May 6 16:30:23 EEST 2010: performing suspend
    Switching from vt7 to vt1
    switching back to vt7
    Thu May 6 16:30:36 EEST 2010: Awake.
    Thu May 6 16:30:36 EEST 2010: Running hooks for resume
    /usr/lib/pm-utils/sleep.d/99video resume suspend:disabled.
    /usr/lib/pm-utils/sleep.d/98video-quirk-db-handler resume suspend:success.
    /usr/lib/pm-utils/sleep.d/95led resume suspend:not applicable.
    /usr/lib/pm-utils/sleep.d/94cpufreq resume suspend:success.
    /usr/lib/pm-utils/sleep.d/90clock resume suspend:not applicable.
    /usr/lib/pm-utils/sleep.d/75modules resume suspend:success.
    /usr/lib/pm-utils/sleep.d/55NetworkManager resume suspend:success.
    /usr/lib/pm-utils/sleep.d/49bluetooth resume suspend:not applicable.
    /usr/lib/pm-utils/sleep.d/11netcfg resume suspend:success.
    /usr/lib/pm-utils/sleep.d/01grub resume suspend:not applicable.
    /usr/lib/pm-utils/sleep.d/00powersave resume suspend:success.
    /usr/lib/pm-utils/sleep.d/00logging resume suspend:success.
    Thu May 6 16:30:37 EEST 2010: Finished.
    Last edited by mits (2010-05-06 13:34:08)

  • Office 2013 - Word cannot establish a connection with this document after the system resumed from suspend mode

    Hiya!
    This issue has been answered numerous times for Office 2010 and Office 2007, but I have yet to any solutions or Hotfixes that work for Office 2013 (x64) on Win7.
    How to replicate the issue:
    Open a file from a network share.
    Edit file.
    Leave computer on with file open. Computer goes to sleep or into stand-by mode.
    Wait a bit
    Wake up computer
    CPU opens file in Read-Only mode and gives you the following error "Word cannot establish a network connection with this document after the system resumed from suspend mode. Save the document into a different file to keep any changes."
    What I've tried:
    http://support.microsoft.com/kb/2434898 - Office 2007 registry fixes. Does not apply.
    http://support.microsoft.com/kb/2413659 - Office 2010 problem. This exact issue. Says 'No microsoft products that match this hotfix are installed'
    Work Around:
    I can saving new versions of these files overrides this issue, but this is sometimes not possible for end-users who only have specific access to ONE SPECIFIC FILE in a particular network share.
    Please let me know how I can alleviate this issue!
    Thanks
    -Chris

    Hi,
    Are those problematic documents created via previous versions of Office?
    Please also try to run a repair of your Office 2013 installtion and check if it helps. See:
    http://office.microsoft.com/en-in/excel-help/repair-office-programs-HA010357402.aspx
    Regards,
    Steve Fan
    TechNet Community Support

  • I'm all of a sudden getting a ( Java Script Application "download error" message) when trying to use Ant Video Downloader. What could cause this?

    When an FLV is playing and I want to download it. I click on the Ant download button. A little window appears reading ( Java Script Application "download error" message)

    This works for me on YouTube.
    Cancel the download and then immediately right click and choose retry.

  • Problems resuming from suspend on IBM Thinkpad R51

    I have been searching the forums and google for the past several days trying to fix this problem. When I enter suspend through fn+f4 or close the lid, I am unable to resume from suspend status, and must hard shutdown.
    I followed the instructions with my device IDs from this post, https://bbs.archlinux.org/viewtopic.php … 5#p1030435
    This link seems like it might work, but there aren't any of the /etc/sbin/* or /etc/bin/* files  :: http://www.thinkwiki.org/wiki/ACPI_acti … ed_for_R51
    $ lspci -ks 0:02
    00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02)
    Subsystem: IBM Device 0557
    Kernel driver in use: i915
    Kernel modules: i915
    00:02.1 Display controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02)
    Subsystem: IBM Device 0557
    Kernel modules: i915
    $ cat /etc/default/grub
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR="Arch"
    GRUB_CMDLINE_LINUX_DEFAULT="i915.modeset=1"
    GRUB_CMDLINE_LINUX=""
    # Preload both GPT and MBR modules so that they are not missed
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    GRUB_HIDDEN_TIMEOUT=0
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    # Uncomment to use basic console
    GRUB_TERMINAL_INPUT=console
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL_OUTPUT=console
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    GRUB_GFXMODE=auto
    # Uncomment to allow the kernel use the same resolution used by grub
    GRUB_GFXPAYLOAD_LINUX=keep
    # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
    # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
    #GRUB_DISABLE_LINUX_UUID=true
    # Uncomment to disable generation of recovery mode menu entries
    GRUB_DISABLE_RECOVERY=true
    # Uncomment and set to the desired menu colors. Used by normal and wallpaper
    # modes only. Entries specified as foreground/background.
    #GRUB_COLOR_NORMAL="light-blue/black"
    #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
    # Uncomment one of them for the gfx desired, a image background or a gfxtheme
    #GRUB_BACKGROUND="/path/to/wallpaper"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    #GRUB_SAVEDEFAULT="true"
    $ cat /etc/X11/xorg.conf
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    Screen 2 "Screen2" RightOf "Screen1"
    Screen 3 "Screen3" RightOf "Screen2"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    FontPath "/usr/share/fonts/OTF/"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    EndSection
    Section "Module"
    Load "glx"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor2"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor3"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "ShadowFB" # [<bool>]
    #Option "DefaultRefresh" # [<bool>]
    #Option "ModeSetClearScreen" # [<bool>]
    Identifier "Card0"
    Driver "vesa"
    BusID "PCI:0:2:0"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "Backlight" # <str>
    #Option "DRI" # <str>
    #Option "ColorKey" # <i>
    #Option "VideoKey" # <i>
    #Option "Tiling" # [<bool>]
    #Option "LinearFramebuffer" # [<bool>]
    #Option "SwapbuffersWait" # [<bool>]
    #Option "TripleBuffer" # [<bool>]
    #Option "XvPreferOverlay" # [<bool>]
    #Option "HotPlug" # [<bool>]
    #Option "RelaxedFencing" # [<bool>]
    #Option "XvMC" # [<bool>]
    #Option "ZaphodHeads" # <str>
    #Option "TearFree" # [<bool>]
    #Option "PerCrtcPixmaps" # [<bool>]
    #Option "FallbackDebug" # [<bool>]
    #Option "DebugFlushBatches" # [<bool>]
    #Option "DebugFlushCaches" # [<bool>]
    #Option "DebugWait" # [<bool>]
    #Option "BufferCache" # [<bool>]
    Identifier "Card1"
    Driver "intel"
    BusID "PCI:0:2:0"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "Backlight" # <str>
    #Option "DRI" # <str>
    #Option "ColorKey" # <i>
    #Option "VideoKey" # <i>
    #Option "Tiling" # [<bool>]
    #Option "LinearFramebuffer" # [<bool>]
    #Option "SwapbuffersWait" # [<bool>]
    #Option "TripleBuffer" # [<bool>]
    #Option "XvPreferOverlay" # [<bool>]
    #Option "HotPlug" # [<bool>]
    #Option "RelaxedFencing" # [<bool>]
    #Option "XvMC" # [<bool>]
    #Option "ZaphodHeads" # <str>
    #Option "TearFree" # [<bool>]
    #Option "PerCrtcPixmaps" # [<bool>]
    #Option "FallbackDebug" # [<bool>]
    #Option "DebugFlushBatches" # [<bool>]
    #Option "DebugFlushCaches" # [<bool>]
    #Option "DebugWait" # [<bool>]
    #Option "BufferCache" # [<bool>]
    Identifier "Card2"
    Driver "intel"
    BusID "PCI:0:2:1"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "ShadowFB" # [<bool>]
    #Option "Rotate" # <str>
    #Option "fbdev" # <str>
    #Option "debug" # [<bool>]
    Identifier "Card3"
    Driver "fbdev"
    BusID "PCI:0:2:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Card1"
    Monitor "Monitor1"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen2"
    Device "Card2"
    Monitor "Monitor2"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen3"
    Device "Card3"
    Monitor "Monitor3"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    $ cat /etc/X11/xorg.conf.d/20-intel.conf
    Section "Device
    Identifier "card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Intel Corporation 82852/855GM Integrated Graphics Device (rev 02)"
    BusID "PCI:0:2:0"
    EndSection
    $ modinfo i915
    filename: /lib/modules/3.9.9-1-ARCH/kernel/drivers/gpu/drm/i915/i915.ko.gz
    license: GPL and additional rights
    description: Intel Graphics
    author: Tungsten Graphics, Inc.
    license: GPL and additional rights
    alias: pci:v00008086d00000155sv*sd*bc03sc*i*
    alias: pci:v00008086d00000157sv*sd*bc03sc*i*
    alias: pci:v00008086d00000F30sv*sd*bc03sc*i*
    alias: pci:v00008086d00000D2Esv*sd*bc03sc*i*
    alias: pci:v00008086d00000D1Esv*sd*bc03sc*i*
    alias: pci:v00008086d00000D0Esv*sd*bc03sc*i*
    alias: pci:v00008086d00000D2Bsv*sd*bc03sc*i*
    alias: pci:v00008086d00000D1Bsv*sd*bc03sc*i*
    alias: pci:v00008086d00000D0Bsv*sd*bc03sc*i*
    alias: pci:v00008086d00000D26sv*sd*bc03sc*i*
    alias: pci:v00008086d00000D16sv*sd*bc03sc*i*
    alias: pci:v00008086d00000D06sv*sd*bc03sc*i*
    alias: pci:v00008086d00000D2Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000D1Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000D0Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000D22sv*sd*bc03sc*i*
    alias: pci:v00008086d00000D12sv*sd*bc03sc*i*
    alias: pci:v00008086d00000D02sv*sd*bc03sc*i*
    alias: pci:v00008086d00000A2Esv*sd*bc03sc*i*
    alias: pci:v00008086d00000A1Esv*sd*bc03sc*i*
    alias: pci:v00008086d00000A0Esv*sd*bc03sc*i*
    alias: pci:v00008086d00000A2Bsv*sd*bc03sc*i*
    alias: pci:v00008086d00000A1Bsv*sd*bc03sc*i*
    alias: pci:v00008086d00000A0Bsv*sd*bc03sc*i*
    alias: pci:v00008086d00000A26sv*sd*bc03sc*i*
    alias: pci:v00008086d00000A16sv*sd*bc03sc*i*
    alias: pci:v00008086d00000A06sv*sd*bc03sc*i*
    alias: pci:v00008086d00000A2Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000A1Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000A0Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000A22sv*sd*bc03sc*i*
    alias: pci:v00008086d00000A12sv*sd*bc03sc*i*
    alias: pci:v00008086d00000A02sv*sd*bc03sc*i*
    alias: pci:v00008086d00000C2Esv*sd*bc03sc*i*
    alias: pci:v00008086d00000C1Esv*sd*bc03sc*i*
    alias: pci:v00008086d00000C0Esv*sd*bc03sc*i*
    alias: pci:v00008086d00000C2Bsv*sd*bc03sc*i*
    alias: pci:v00008086d00000C1Bsv*sd*bc03sc*i*
    alias: pci:v00008086d00000C0Bsv*sd*bc03sc*i*
    alias: pci:v00008086d00000C26sv*sd*bc03sc*i*
    alias: pci:v00008086d00000C16sv*sd*bc03sc*i*
    alias: pci:v00008086d00000C06sv*sd*bc03sc*i*
    alias: pci:v00008086d00000C2Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000C1Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000C0Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000C22sv*sd*bc03sc*i*
    alias: pci:v00008086d00000C12sv*sd*bc03sc*i*
    alias: pci:v00008086d00000C02sv*sd*bc03sc*i*
    alias: pci:v00008086d0000042Esv*sd*bc03sc*i*
    alias: pci:v00008086d0000041Esv*sd*bc03sc*i*
    alias: pci:v00008086d0000040Esv*sd*bc03sc*i*
    alias: pci:v00008086d0000042Bsv*sd*bc03sc*i*
    alias: pci:v00008086d0000041Bsv*sd*bc03sc*i*
    alias: pci:v00008086d0000040Bsv*sd*bc03sc*i*
    alias: pci:v00008086d00000426sv*sd*bc03sc*i*
    alias: pci:v00008086d00000416sv*sd*bc03sc*i*
    alias: pci:v00008086d00000406sv*sd*bc03sc*i*
    alias: pci:v00008086d0000042Asv*sd*bc03sc*i*
    alias: pci:v00008086d0000041Asv*sd*bc03sc*i*
    alias: pci:v00008086d0000040Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000422sv*sd*bc03sc*i*
    alias: pci:v00008086d00000412sv*sd*bc03sc*i*
    alias: pci:v00008086d00000402sv*sd*bc03sc*i*
    alias: pci:v00008086d0000016Asv*sd*bc03sc*i*
    alias: pci:v00008086d0000015Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000162sv*sd*bc03sc*i*
    alias: pci:v00008086d00000152sv*sd*bc03sc*i*
    alias: pci:v00008086d00000166sv*sd*bc03sc*i*
    alias: pci:v00008086d00000156sv*sd*bc03sc*i*
    alias: pci:v00008086d0000010Asv*sd*bc03sc*i*
    alias: pci:v00008086d00000126sv*sd*bc03sc*i*
    alias: pci:v00008086d00000116sv*sd*bc03sc*i*
    alias: pci:v00008086d00000106sv*sd*bc03sc*i*
    alias: pci:v00008086d00000122sv*sd*bc03sc*i*
    alias: pci:v00008086d00000112sv*sd*bc03sc*i*
    alias: pci:v00008086d00000102sv*sd*bc03sc*i*
    alias: pci:v00008086d00000046sv*sd*bc03sc*i*
    alias: pci:v00008086d00000042sv*sd*bc03sc*i*
    alias: pci:v00008086d0000A011sv*sd*bc03sc*i*
    alias: pci:v00008086d0000A001sv*sd*bc03sc*i*
    alias: pci:v00008086d00002E92sv*sd*bc03sc*i*
    alias: pci:v00008086d00002E42sv*sd*bc03sc*i*
    alias: pci:v00008086d00002E32sv*sd*bc03sc*i*
    alias: pci:v00008086d00002E22sv*sd*bc03sc*i*
    alias: pci:v00008086d00002E12sv*sd*bc03sc*i*
    alias: pci:v00008086d00002E02sv*sd*bc03sc*i*
    alias: pci:v00008086d00002A42sv*sd*bc03sc*i*
    alias: pci:v00008086d00002A12sv*sd*bc03sc*i*
    alias: pci:v00008086d00002A02sv*sd*bc03sc*i*
    alias: pci:v00008086d000029D2sv*sd*bc03sc*i*
    alias: pci:v00008086d000029C2sv*sd*bc03sc*i*
    alias: pci:v00008086d000029B2sv*sd*bc03sc*i*
    alias: pci:v00008086d000029A2sv*sd*bc03sc*i*
    alias: pci:v00008086d00002992sv*sd*bc03sc*i*
    alias: pci:v00008086d00002982sv*sd*bc03sc*i*
    alias: pci:v00008086d00002972sv*sd*bc03sc*i*
    alias: pci:v00008086d000027AEsv*sd*bc03sc*i*
    alias: pci:v00008086d000027A2sv*sd*bc03sc*i*
    alias: pci:v00008086d00002772sv*sd*bc03sc*i*
    alias: pci:v00008086d00002592sv*sd*bc03sc*i*
    alias: pci:v00008086d0000258Asv*sd*bc03sc*i*
    alias: pci:v00008086d00002582sv*sd*bc03sc*i*
    alias: pci:v00008086d00002572sv*sd*bc03sc*i*
    alias: pci:v00008086d0000358Esv*sd*bc03sc*i*
    alias: pci:v00008086d00003582sv*sd*bc03sc*i*
    alias: pci:v00008086d00002562sv*sd*bc03sc*i*
    alias: pci:v00008086d00003577sv*sd*bc03sc*i*
    depends: drm_kms_helper,drm,intel-gtt,i2c-core,video,button,i2c-algo-bit,intel-agp
    intree: Y
    vermagic: 3.9.9-1-ARCH SMP preempt mod_unload modversions 686
    parm: invert_brightness:Invert backlight brightness (-1 force normal, 0 machine defaults, 1 force inversion), please report PCI device ID, subsystem vendor and subsystem device ID to [email protected], if your machine needs it. It will then be included in an upcoming module version. (int)
    parm: modeset:Use kernel modesetting [KMS] (0=DRM_I915_KMS from .config, 1=on, -1=force vga console preference [default]) (int)
    parm: fbpercrtc:int
    parm: panel_ignore_lid:Override lid status (0=autodetect, 1=autodetect disabled [default], -1=force lid closed, -2=force lid open) (int)
    parm: powersave:Enable powersavings, fbc, downclocking, etc. (default: true) (int)
    parm: semaphores:Use semaphores for inter-ring sync (default: -1 (use per-chip defaults)) (int)
    parm: i915_enable_rc6:Enable power-saving render C-state 6. Different stages can be selected via bitmask values (0 = disable; 1 = enable rc6; 2 = enable deep rc6; 4 = enable deepest rc6). For example, 3 would enable rc6 and deep rc6, and 7 would enable everything. default: -1 (use per-chip default) (int)
    parm: i915_enable_fbc:Enable frame buffer compression for power savings (default: -1 (use per-chip default)) (int)
    parm: lvds_downclock:Use panel (LVDS/eDP) downclocking for power savings (default: false) (int)
    parm: lvds_channel_mode:Specify LVDS channel mode (0=probe BIOS [default], 1=single-channel, 2=dual-channel) (int)
    parm: lvds_use_ssc:Use Spread Spectrum Clock with panels [LVDS/eDP] (default: auto from VBT) (int)
    parm: vbt_sdvo_panel_type:Override/Ignore selection of SDVO panel mode in the VBT (-2=ignore, -1=auto [default], index in VBT BIOS table) (int)
    parm: reset:Attempt GPU resets (default: true) (bool)
    parm: enable_hangcheck:Periodically check GPU activity for detecting hangs. WARNING: Disabling this can cause system wide hangs. (default: true) (bool)
    parm: i915_enable_ppgtt:Enable PPGTT (default: true) (int)
    parm: preliminary_hw_support:Enable preliminary hardware support. Enable Haswell and ValleyView Support. (default: false) (int)
    parm: disable_power_well:Disable the power well when possible (default: false) (int)
    $ zcat /proc/config.gz
    # Automatically generated file; DO NOT EDIT.
    # Linux/x86 3.9.9-1 Kernel Configuration
    # CONFIG_64BIT is not set
    CONFIG_X86_32=y
    CONFIG_X86=y
    CONFIG_INSTRUCTION_DECODER=y
    CONFIG_OUTPUT_FORMAT="elf32-i386"
    CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig"
    CONFIG_LOCKDEP_SUPPORT=y
    CONFIG_STACKTRACE_SUPPORT=y
    CONFIG_HAVE_LATENCYTOP_SUPPORT=y
    CONFIG_MMU=y
    CONFIG_NEED_DMA_MAP_STATE=y
    CONFIG_NEED_SG_DMA_LENGTH=y
    CONFIG_GENERIC_ISA_DMA=y
    CONFIG_GENERIC_BUG=y
    CONFIG_GENERIC_HWEIGHT=y
    CONFIG_GENERIC_GPIO=y
    CONFIG_ARCH_MAY_HAVE_PC_FDC=y
    CONFIG_RWSEM_XCHGADD_ALGORITHM=y
    CONFIG_GENERIC_CALIBRATE_DELAY=y
    CONFIG_ARCH_HAS_CPU_RELAX=y
    CONFIG_ARCH_HAS_DEFAULT_IDLE=y
    CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
    CONFIG_ARCH_HAS_CPU_AUTOPROBE=y
    CONFIG_HAVE_SETUP_PER_CPU_AREA=y
    CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
    CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
    CONFIG_ARCH_HIBERNATION_POSSIBLE=y
    CONFIG_ARCH_SUSPEND_POSSIBLE=y
    # CONFIG_ZONE_DMA32 is not set
    # CONFIG_AUDIT_ARCH is not set
    CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
    CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
    CONFIG_HAVE_INTEL_TXT=y
    CONFIG_X86_32_SMP=y
    CONFIG_X86_HT=y
    CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-ecx -fcall-saved-edx"
    CONFIG_ARCH_CPU_PROBE_RELEASE=y
    CONFIG_ARCH_SUPPORTS_UPROBES=y
    CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
    CONFIG_IRQ_WORK=y
    CONFIG_BUILDTIME_EXTABLE_SORT=y
    # General setup
    CONFIG_INIT_ENV_ARG_LIMIT=32
    CONFIG_CROSS_COMPILE=""
    CONFIG_LOCALVERSION="-ARCH"
    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=y
    # CONFIG_KERNEL_BZIP2 is not set
    # CONFIG_KERNEL_LZMA is not set
    # CONFIG_KERNEL_XZ is not set
    # CONFIG_KERNEL_LZO is not set
    CONFIG_DEFAULT_HOSTNAME="(none)"
    CONFIG_SWAP=y
    CONFIG_SYSVIPC=y
    CONFIG_SYSVIPC_SYSCTL=y
    CONFIG_POSIX_MQUEUE=y
    CONFIG_POSIX_MQUEUE_SYSCTL=y
    CONFIG_FHANDLE=y
    CONFIG_AUDIT=y
    CONFIG_AUDITSYSCALL=y
    CONFIG_AUDIT_WATCH=y
    CONFIG_AUDIT_TREE=y
    CONFIG_AUDIT_LOGINUID_IMMUTABLE=y
    CONFIG_HAVE_GENERIC_HARDIRQS=y
    # IRQ subsystem
    CONFIG_GENERIC_HARDIRQS=y
    CONFIG_GENERIC_IRQ_PROBE=y
    CONFIG_GENERIC_IRQ_SHOW=y
    CONFIG_GENERIC_PENDING_IRQ=y
    CONFIG_IRQ_DOMAIN=y
    # CONFIG_IRQ_DOMAIN_DEBUG is not set
    CONFIG_IRQ_FORCED_THREADING=y
    CONFIG_SPARSE_IRQ=y
    CONFIG_CLOCKSOURCE_WATCHDOG=y
    CONFIG_KTIME_SCALAR=y
    CONFIG_GENERIC_CLOCKEVENTS=y
    CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
    CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
    CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
    CONFIG_GENERIC_CMOS_UPDATE=y
    # Timers subsystem
    CONFIG_TICK_ONESHOT=y
    CONFIG_NO_HZ=y
    CONFIG_HIGH_RES_TIMERS=y
    # CPU/Task time and stats accounting
    CONFIG_TICK_CPU_ACCOUNTING=y
    # CONFIG_IRQ_TIME_ACCOUNTING is not set
    CONFIG_BSD_PROCESS_ACCT=y
    CONFIG_BSD_PROCESS_ACCT_V3=y
    CONFIG_TASKSTATS=y
    CONFIG_TASK_DELAY_ACCT=y
    CONFIG_TASK_XACCT=y
    CONFIG_TASK_IO_ACCOUNTING=y
    # RCU Subsystem
    CONFIG_TREE_PREEMPT_RCU=y
    CONFIG_PREEMPT_RCU=y
    CONFIG_RCU_STALL_COMMON=y
    CONFIG_RCU_FANOUT=32
    CONFIG_RCU_FANOUT_LEAF=16
    # 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_RCU_NOCB_CPU=y
    CONFIG_IKCONFIG=y
    CONFIG_IKCONFIG_PROC=y
    CONFIG_LOG_BUF_SHIFT=19
    CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
    CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
    CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y
    CONFIG_CGROUPS=y
    # CONFIG_CGROUP_DEBUG is not set
    CONFIG_CGROUP_FREEZER=y
    CONFIG_CGROUP_DEVICE=y
    CONFIG_CPUSETS=y
    CONFIG_PROC_PID_CPUSET=y
    CONFIG_CGROUP_CPUACCT=y
    CONFIG_RESOURCE_COUNTERS=y
    CONFIG_MEMCG=y
    CONFIG_MEMCG_SWAP=y
    # CONFIG_MEMCG_SWAP_ENABLED is not set
    CONFIG_MEMCG_KMEM=y
    # CONFIG_CGROUP_HUGETLB is not set
    # CONFIG_CGROUP_PERF is not set
    CONFIG_CGROUP_SCHED=y
    CONFIG_FAIR_GROUP_SCHED=y
    CONFIG_CFS_BANDWIDTH=y
    CONFIG_RT_GROUP_SCHED=y
    CONFIG_BLK_CGROUP=y
    # CONFIG_DEBUG_BLK_CGROUP is not set
    # CONFIG_CHECKPOINT_RESTORE is not set
    CONFIG_NAMESPACES=y
    CONFIG_UTS_NS=y
    CONFIG_IPC_NS=y
    CONFIG_PID_NS=y
    CONFIG_NET_NS=y
    CONFIG_SCHED_AUTOGROUP=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_HAVE_UID16=y
    CONFIG_UID16=y
    # CONFIG_SYSCTL_SYSCALL is not set
    CONFIG_SYSCTL_EXCEPTION_TRACE=y
    CONFIG_KALLSYMS=y
    # CONFIG_KALLSYMS_ALL is not set
    CONFIG_HOTPLUG=y
    CONFIG_PRINTK=y
    CONFIG_BUG=y
    CONFIG_ELF_CORE=y
    CONFIG_PCSPKR_PLATFORM=y
    CONFIG_HAVE_PCSPKR_PLATFORM=y
    CONFIG_BASE_FULL=y
    CONFIG_FUTEX=y
    CONFIG_EPOLL=y
    CONFIG_SIGNALFD=y
    CONFIG_TIMERFD=y
    CONFIG_EVENTFD=y
    CONFIG_SHMEM=y
    CONFIG_AIO=y
    # CONFIG_EMBEDDED is not set
    CONFIG_HAVE_PERF_EVENTS=y
    # Kernel Performance Events And Counters
    CONFIG_PERF_EVENTS=y
    # CONFIG_DEBUG_PERF_USE_VMALLOC is not set
    CONFIG_VM_EVENT_COUNTERS=y
    CONFIG_PCI_QUIRKS=y
    CONFIG_SLUB_DEBUG=y
    # CONFIG_COMPAT_BRK is not set
    # CONFIG_SLAB is not set
    CONFIG_SLUB=y
    CONFIG_PROFILING=y
    CONFIG_TRACEPOINTS=y
    CONFIG_OPROFILE=m
    # CONFIG_OPROFILE_EVENT_MULTIPLEX is not set
    CONFIG_HAVE_OPROFILE=y
    CONFIG_OPROFILE_NMI_TIMER=y
    CONFIG_KPROBES=y
    CONFIG_JUMP_LABEL=y
    CONFIG_KPROBES_ON_FTRACE=y
    CONFIG_UPROBES=y
    # CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
    CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
    CONFIG_ARCH_USE_BUILTIN_BSWAP=y
    CONFIG_KRETPROBES=y
    CONFIG_USER_RETURN_NOTIFIER=y
    CONFIG_HAVE_IOREMAP_PROT=y
    CONFIG_HAVE_KPROBES=y
    CONFIG_HAVE_KRETPROBES=y
    CONFIG_HAVE_OPTPROBES=y
    CONFIG_HAVE_KPROBES_ON_FTRACE=y
    CONFIG_HAVE_ARCH_TRACEHOOK=y
    CONFIG_HAVE_DMA_ATTRS=y
    CONFIG_HAVE_DMA_CONTIGUOUS=y
    CONFIG_USE_GENERIC_SMP_HELPERS=y
    CONFIG_GENERIC_SMP_IDLE_THREAD=y
    CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
    CONFIG_HAVE_DMA_API_DEBUG=y
    CONFIG_HAVE_HW_BREAKPOINT=y
    CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
    CONFIG_HAVE_USER_RETURN_NOTIFIER=y
    CONFIG_HAVE_PERF_EVENTS_NMI=y
    CONFIG_HAVE_PERF_REGS=y
    CONFIG_HAVE_PERF_USER_STACK_DUMP=y
    CONFIG_HAVE_ARCH_JUMP_LABEL=y
    CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
    CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
    CONFIG_HAVE_CMPXCHG_LOCAL=y
    CONFIG_HAVE_CMPXCHG_DOUBLE=y
    CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
    CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
    CONFIG_SECCOMP_FILTER=y
    CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
    CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
    CONFIG_MODULES_USE_ELF_REL=y
    CONFIG_CLONE_BACKWARDS=y
    CONFIG_OLD_SIGSUSPEND3=y
    CONFIG_OLD_SIGACTION=y
    # GCOV-based kernel profiling
    # CONFIG_GCOV_KERNEL is not set
    CONFIG_HAVE_GENERIC_DMA_COHERENT=y
    CONFIG_SLABINFO=y
    CONFIG_RT_MUTEXES=y
    CONFIG_BASE_SMALL=0
    CONFIG_MODULES=y
    CONFIG_MODULE_FORCE_LOAD=y
    CONFIG_MODULE_UNLOAD=y
    CONFIG_MODULE_FORCE_UNLOAD=y
    CONFIG_MODVERSIONS=y
    # CONFIG_MODULE_SRCVERSION_ALL is not set
    # CONFIG_MODULE_SIG is not set
    CONFIG_STOP_MACHINE=y
    CONFIG_BLOCK=y
    CONFIG_LBDAF=y
    CONFIG_BLK_DEV_BSG=y
    CONFIG_BLK_DEV_BSGLIB=y
    # CONFIG_BLK_DEV_INTEGRITY is not set
    CONFIG_BLK_DEV_THROTTLING=y
    # Partition Types
    CONFIG_PARTITION_ADVANCED=y
    # CONFIG_ACORN_PARTITION 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=y
    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=y
    CONFIG_IOSCHED_CFQ=y
    CONFIG_CFQ_GROUP_IOSCHED=y
    # CONFIG_DEFAULT_DEADLINE is not set
    CONFIG_DEFAULT_CFQ=y
    # CONFIG_DEFAULT_NOOP is not set
    CONFIG_DEFAULT_IOSCHED="cfq"
    CONFIG_PREEMPT_NOTIFIERS=y
    CONFIG_PADATA=y
    CONFIG_ASN1=m
    CONFIG_UNINLINE_SPIN_UNLOCK=y
    CONFIG_FREEZER=y
    # Processor type and features
    CONFIG_ZONE_DMA=y
    CONFIG_SMP=y
    CONFIG_X86_MPPARSE=y
    # CONFIG_X86_BIGSMP is not set
    # CONFIG_X86_EXTENDED_PLATFORM is not set
    # CONFIG_X86_GOLDFISH is not set
    # CONFIG_X86_INTEL_LPSS is not set
    CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
    CONFIG_X86_32_IRIS=m
    CONFIG_SCHED_OMIT_FRAME_POINTER=y
    CONFIG_PARAVIRT_GUEST=y
    CONFIG_PARAVIRT_TIME_ACCOUNTING=y
    # CONFIG_XEN_PRIVILEGED_GUEST is not set
    CONFIG_KVM_GUEST=y
    CONFIG_LGUEST_GUEST=y
    CONFIG_PARAVIRT=y
    # CONFIG_PARAVIRT_SPINLOCKS is not set
    CONFIG_PARAVIRT_CLOCK=y
    # CONFIG_PARAVIRT_DEBUG is not set
    CONFIG_NO_BOOTMEM=y
    # CONFIG_MEMTEST is not set
    # CONFIG_M486 is not set
    # CONFIG_M586 is not set
    # CONFIG_M586TSC is not set
    # CONFIG_M586MMX is not set
    CONFIG_M686=y
    # CONFIG_MPENTIUMII is not set
    # CONFIG_MPENTIUMIII is not set
    # CONFIG_MPENTIUMM is not set
    # CONFIG_MPENTIUM4 is not set
    # CONFIG_MK6 is not set
    # CONFIG_MK7 is not set
    # CONFIG_MK8 is not set
    # CONFIG_MCRUSOE is not set
    # CONFIG_MEFFICEON is not set
    # CONFIG_MWINCHIPC6 is not set
    # CONFIG_MWINCHIP3D is not set
    # CONFIG_MELAN is not set
    # CONFIG_MGEODEGX1 is not set
    # CONFIG_MGEODE_LX is not set
    # CONFIG_MCYRIXIII is not set
    # CONFIG_MVIAC3_2 is not set
    # CONFIG_MVIAC7 is not set
    # CONFIG_MCORE2 is not set
    # CONFIG_MATOM is not set
    CONFIG_X86_GENERIC=y
    CONFIG_X86_INTERNODE_CACHE_SHIFT=6
    CONFIG_X86_L1_CACHE_SHIFT=6
    # CONFIG_X86_PPRO_FENCE is not set
    CONFIG_X86_INTEL_USERCOPY=y
    CONFIG_X86_USE_PPRO_CHECKSUM=y
    CONFIG_X86_TSC=y
    CONFIG_X86_CMPXCHG64=y
    CONFIG_X86_CMOV=y
    CONFIG_X86_MINIMUM_CPU_FAMILY=5
    CONFIG_X86_DEBUGCTLMSR=y
    CONFIG_CPU_SUP_INTEL=y
    CONFIG_CPU_SUP_AMD=y
    CONFIG_CPU_SUP_CENTAUR=y
    CONFIG_CPU_SUP_TRANSMETA_32=y
    CONFIG_HPET_TIMER=y
    CONFIG_HPET_EMULATE_RTC=y
    CONFIG_DMI=y
    CONFIG_NR_CPUS=8
    CONFIG_SCHED_SMT=y
    CONFIG_SCHED_MC=y
    # 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=y
    # CONFIG_X86_ANCIENT_MCE is not set
    CONFIG_X86_MCE_THRESHOLD=y
    # CONFIG_X86_MCE_INJECT is not set
    CONFIG_X86_THERMAL_VECTOR=y
    CONFIG_VM86=y
    CONFIG_TOSHIBA=m
    CONFIG_I8K=m
    CONFIG_X86_REBOOTFIXUPS=y
    CONFIG_MICROCODE=m
    CONFIG_MICROCODE_INTEL=y
    CONFIG_MICROCODE_AMD=y
    CONFIG_MICROCODE_OLD_INTERFACE=y
    CONFIG_MICROCODE_INTEL_LIB=y
    CONFIG_MICROCODE_INTEL_EARLY=y
    CONFIG_MICROCODE_EARLY=y
    CONFIG_X86_MSR=m
    CONFIG_X86_CPUID=m
    # CONFIG_NOHIGHMEM is not set
    CONFIG_HIGHMEM4G=y
    # CONFIG_HIGHMEM64G is not set
    CONFIG_PAGE_OFFSET=0xC0000000
    CONFIG_HIGHMEM=y
    CONFIG_ARCH_FLATMEM_ENABLE=y
    CONFIG_ARCH_SPARSEMEM_ENABLE=y
    CONFIG_ARCH_SELECT_MEMORY_MODEL=y
    CONFIG_ILLEGAL_POINTER_VALUE=0
    CONFIG_SELECT_MEMORY_MODEL=y
    CONFIG_FLATMEM_MANUAL=y
    # CONFIG_SPARSEMEM_MANUAL is not set
    CONFIG_FLATMEM=y
    CONFIG_FLAT_NODE_MEM_MAP=y
    CONFIG_SPARSEMEM_STATIC=y
    CONFIG_HAVE_MEMBLOCK=y
    CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
    CONFIG_ARCH_DISCARD_MEMBLOCK=y
    CONFIG_MEMORY_ISOLATION=y
    # CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
    CONFIG_PAGEFLAGS_EXTENDED=y
    CONFIG_SPLIT_PTLOCK_CPUS=4
    CONFIG_BALLOON_COMPACTION=y
    CONFIG_COMPACTION=y
    CONFIG_MIGRATION=y
    # CONFIG_PHYS_ADDR_T_64BIT is not set
    CONFIG_ZONE_DMA_FLAG=1
    CONFIG_BOUNCE=y
    CONFIG_VIRT_TO_BUS=y
    CONFIG_MMU_NOTIFIER=y
    CONFIG_KSM=y
    CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
    CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
    CONFIG_MEMORY_FAILURE=y
    CONFIG_HWPOISON_INJECT=m
    CONFIG_TRANSPARENT_HUGEPAGE=y
    CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
    # CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
    CONFIG_CROSS_MEMORY_ATTACH=y
    CONFIG_CLEANCACHE=y
    CONFIG_FRONTSWAP=y
    # CONFIG_HIGHPTE is not set
    CONFIG_X86_CHECK_BIOS_CORRUPTION=y
    CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
    CONFIG_X86_RESERVE_LOW=64
    # CONFIG_MATH_EMULATION is not set
    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_X86_SMAP=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=y
    # CONFIG_HZ_1000 is not set
    CONFIG_HZ=300
    CONFIG_SCHED_HRTICK=y
    CONFIG_KEXEC=y
    # CONFIG_CRASH_DUMP is not set
    # CONFIG_KEXEC_JUMP is not set
    CONFIG_PHYSICAL_START=0x1000000
    CONFIG_RELOCATABLE=y
    CONFIG_X86_NEED_RELOCS=y
    CONFIG_PHYSICAL_ALIGN=0x100000
    CONFIG_HOTPLUG_CPU=y
    # CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
    # CONFIG_DEBUG_HOTPLUG_CPU0 is not set
    # CONFIG_COMPAT_VDSO is not set
    # CONFIG_CMDLINE_BOOL is not set
    CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
    # Power management and ACPI options
    CONFIG_SUSPEND=y
    CONFIG_SUSPEND_FREEZER=y
    CONFIG_HIBERNATE_CALLBACKS=y
    CONFIG_HIBERNATION=y
    CONFIG_PM_STD_PARTITION=""
    CONFIG_PM_SLEEP=y
    CONFIG_PM_SLEEP_SMP=y
    CONFIG_PM_AUTOSLEEP=y
    CONFIG_PM_WAKELOCKS=y
    CONFIG_PM_WAKELOCKS_LIMIT=100
    CONFIG_PM_WAKELOCKS_GC=y
    CONFIG_PM_RUNTIME=y
    CONFIG_PM=y
    CONFIG_PM_DEBUG=y
    CONFIG_PM_ADVANCED_DEBUG=y
    # CONFIG_PM_TEST_SUSPEND is not set
    CONFIG_PM_SLEEP_DEBUG=y
    CONFIG_PM_TRACE=y
    CONFIG_PM_TRACE_RTC=y
    CONFIG_ACPI=y
    CONFIG_ACPI_SLEEP=y
    # CONFIG_ACPI_PROCFS is not set
    # CONFIG_ACPI_PROCFS_POWER is not set
    CONFIG_ACPI_EC_DEBUGFS=m
    # CONFIG_ACPI_PROC_EVENT is not set
    CONFIG_ACPI_AC=m
    CONFIG_ACPI_BATTERY=m
    CONFIG_ACPI_BUTTON=m
    CONFIG_ACPI_VIDEO=m
    CONFIG_ACPI_FAN=m
    CONFIG_ACPI_DOCK=y
    CONFIG_ACPI_I2C=m
    CONFIG_ACPI_PROCESSOR=m
    CONFIG_ACPI_IPMI=m
    CONFIG_ACPI_HOTPLUG_CPU=y
    CONFIG_ACPI_PROCESSOR_AGGREGATOR=m
    CONFIG_ACPI_THERMAL=m
    # CONFIG_ACPI_CUSTOM_DSDT is not set
    CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y
    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_SBS=m
    CONFIG_ACPI_HED=y
    CONFIG_ACPI_CUSTOM_METHOD=m
    CONFIG_ACPI_BGRT=y
    CONFIG_ACPI_APEI=y
    CONFIG_ACPI_APEI_GHES=y
    CONFIG_ACPI_APEI_PCIEAER=y
    CONFIG_ACPI_APEI_MEMORY_FAILURE=y
    CONFIG_ACPI_APEI_EINJ=m
    CONFIG_ACPI_APEI_ERST_DEBUG=m
    CONFIG_SFI=y
    CONFIG_X86_APM_BOOT=y
    CONFIG_APM=y
    # CONFIG_APM_IGNORE_USER_SUSPEND is not set
    CONFIG_APM_DO_ENABLE=y
    # CONFIG_APM_CPU_IDLE is not set
    # CONFIG_APM_DISPLAY_BLANK is not set
    # CONFIG_APM_ALLOW_INTS is not set
    # CPU Frequency scaling
    CONFIG_CPU_FREQ=y
    CONFIG_CPU_FREQ_TABLE=y
    CONFIG_CPU_FREQ_GOV_COMMON=y
    CONFIG_CPU_FREQ_STAT=m
    CONFIG_CPU_FREQ_STAT_DETAILS=y
    # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
    CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
    # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
    CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
    CONFIG_CPU_FREQ_GOV_POWERSAVE=m
    CONFIG_CPU_FREQ_GOV_USERSPACE=m
    CONFIG_CPU_FREQ_GOV_ONDEMAND=y
    CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m
    # x86 CPU frequency scaling drivers
    CONFIG_X86_INTEL_PSTATE=y
    CONFIG_X86_PCC_CPUFREQ=m
    CONFIG_X86_ACPI_CPUFREQ=m
    CONFIG_X86_ACPI_CPUFREQ_CPB=y
    CONFIG_X86_POWERNOW_K6=m
    CONFIG_X86_POWERNOW_K7=m
    CONFIG_X86_POWERNOW_K7_ACPI=y
    CONFIG_X86_POWERNOW_K8=m
    CONFIG_X86_GX_SUSPMOD=m
    # CONFIG_X86_SPEEDSTEP_CENTRINO is not set
    CONFIG_X86_SPEEDSTEP_ICH=m
    CONFIG_X86_SPEEDSTEP_SMI=m
    CONFIG_X86_P4_CLOCKMOD=m
    CONFIG_X86_CPUFREQ_NFORCE2=m
    CONFIG_X86_LONGRUN=m
    CONFIG_X86_LONGHAUL=m
    CONFIG_X86_E_POWERSAVER=m
    # shared options
    CONFIG_X86_SPEEDSTEP_LIB=m
    CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK=y
    CONFIG_CPU_IDLE=y
    # CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set
    CONFIG_CPU_IDLE_GOV_LADDER=y
    CONFIG_CPU_IDLE_GOV_MENU=y
    # CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
    CONFIG_INTEL_IDLE=y
    # Bus options (PCI etc.)
    CONFIG_PCI=y
    # CONFIG_PCI_GOBIOS is not set
    # CONFIG_PCI_GOMMCONFIG is not set
    # CONFIG_PCI_GODIRECT is not set
    # CONFIG_PCI_GOOLPC is not set
    CONFIG_PCI_GOANY=y
    CONFIG_PCI_BIOS=y
    CONFIG_PCI_DIRECT=y
    CONFIG_PCI_MMCONFIG=y
    CONFIG_PCI_OLPC=y
    CONFIG_PCI_DOMAINS=y
    CONFIG_PCIEPORTBUS=y
    CONFIG_HOTPLUG_PCI_PCIE=m
    CONFIG_PCIEAER=y
    # CONFIG_PCIE_ECRC is not set
    # CONFIG_PCIEAER_INJECT is not set
    CONFIG_PCIEASPM=y
    # CONFIG_PCIEASPM_DEBUG is not set
    CONFIG_PCIEASPM_DEFAULT=y
    # CONFIG_PCIEASPM_POWERSAVE is not set
    # CONFIG_PCIEASPM_PERFORMANCE is not set
    CONFIG_PCIE_PME=y
    CONFIG_ARCH_SUPPORTS_MSI=y
    CONFIG_PCI_MSI=y
    # CONFIG_PCI_DEBUG is not set
    CONFIG_PCI_REALLOC_ENABLE_AUTO=y
    CONFIG_PCI_STUB=m
    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_ISA=y
    # CONFIG_EISA is not set
    # CONFIG_SCx200 is not set
    CONFIG_OLPC=y
    CONFIG_OLPC_XO1_PM=y
    CONFIG_OLPC_XO1_RTC=y
    CONFIG_OLPC_XO1_SCI=y
    CONFIG_OLPC_XO15_SCI=y
    # CONFIG_ALIX is not set
    # CONFIG_NET5501 is not set
    # CONFIG_GEOS is not set
    CONFIG_AMD_NB=y
    CONFIG_PCCARD=m
    CONFIG_PCMCIA=m
    CONFIG_PCMCIA_LOAD_CIS=y
    CONFIG_CARDBUS=y
    # PC-card bridges
    CONFIG_YENTA=m
    CONFIG_YENTA_O2=y
    CONFIG_YENTA_RICOH=y
    CONFIG_YENTA_TI=y
    CONFIG_YENTA_ENE_TUNE=y
    CONFIG_YENTA_TOSHIBA=y
    CONFIG_PD6729=m
    CONFIG_I82092=m
    CONFIG_I82365=m
    CONFIG_TCIC=m
    CONFIG_PCMCIA_PROBE=y
    CONFIG_PCCARD_NONSTATIC=y
    CONFIG_HOTPLUG_PCI=m
    CONFIG_HOTPLUG_PCI_COMPAQ=m
    # CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set
    CONFIG_HOTPLUG_PCI_IBM=m
    CONFIG_HOTPLUG_PCI_ACPI=m
    CONFIG_HOTPLUG_PCI_ACPI_IBM=m
    CONFIG_HOTPLUG_PCI_CPCI=y
    CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m
    CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m
    CONFIG_HOTPLUG_PCI_SHPC=m
    CONFIG_RAPIDIO=y
    CONFIG_RAPIDIO_TSI721=y
    CONFIG_RAPIDIO_DISC_TIMEOUT=30
    # CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS is not set
    CONFIG_RAPIDIO_DMA_ENGINE=y
    CONFIG_RAPIDIO_DEBUG=y
    CONFIG_RAPIDIO_TSI57X=y
    CONFIG_RAPIDIO_CPS_XX=y
    CONFIG_RAPIDIO_TSI568=y
    CONFIG_RAPIDIO_CPS_GEN2=y
    CONFIG_RAPIDIO_TSI500=y
    # 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=y
    CONFIG_BINFMT_AOUT=m
    CONFIG_BINFMT_MISC=y
    CONFIG_COREDUMP=y
    CONFIG_HAVE_ATOMIC_IOMAP=y
    CONFIG_HAVE_TEXT_POKE_SMP=y
    CONFIG_NET=y
    # Networking options
    CONFIG_PACKET=y
    CONFIG_PACKET_DIAG=m
    CONFIG_UNIX=y
    CONFIG_UNIX_DIAG=m
    CONFIG_XFRM=y
    CONFIG_XFRM_ALGO=m
    CONFIG_XFRM_USER=m
    # CONFIG_XFRM_SUB_POLICY is not set
    # CONFIG_XFRM_MIGRATE is not set
    # CONFIG_XFRM_STATISTICS is not set
    CONFIG_XFRM_IPCOMP=m
    CONFIG_NET_KEY=m
    # CONFIG_NET_KEY_MIGRATE is not set
    CONFIG_INET=y
    CONFIG_IP_MULTICAST=y
    CONFIG_IP_ADVANCED_ROUTER=y
    CONFIG_IP_FIB_TRIE_STATS=y
    CONFIG_IP_MULTIPLE_TABLES=y
    CONFIG_IP_ROUTE_MULTIPATH=y
    CONFIG_IP_ROUTE_VERBOSE=y
    CONFIG_IP_ROUTE_CLASSID=y
    # CONFIG_IP_PNP is not set
    CONFIG_NET_IPIP=m
    CONFIG_NET_IPGRE_DEMUX=m
    CONFIG_NET_IPGRE=m
    # CONFIG_NET_IPGRE_BROADCAST 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=y
    CONFIG_SYN_COOKIES=y
    CONFIG_NET_IPVTI=m
    CONFIG_INET_AH=m
    CONFIG_INET_ESP=m
    CONFIG_INET_IPCOMP=m
    CONFIG_INET_XFRM_TUNNEL=m
    CONFIG_INET_TUNNEL=m
    CONFIG_INET_XFRM_MODE_TRANSPORT=m
    CONFIG_INET_XFRM_MODE_TUNNEL=m
    CONFIG_INET_XFRM_MODE_BEET=m
    CONFIG_INET_LRO=y
    CONFIG_INET_DIAG=y
    CONFIG_INET_TCP_DIAG=y
    CONFIG_INET_UDP_DIAG=m
    CONFIG_TCP_CONG_ADVANCED=y
    CONFIG_TCP_CONG_BIC=m
    CONFIG_TCP_CONG_CUBIC=y
    CONFIG_TCP_CONG_WESTWOOD=m
    CONFIG_TCP_CONG_HTCP=m
    CONFIG_TCP_CONG_HSTCP=m
    CONFIG_TCP_CONG_HYBLA=m
    CONFIG_TCP_CONG_VEGAS=m
    CONFIG_TCP_CONG_SCALABLE=m
    CONFIG_TCP_CONG_LP=m
    CONFIG_TCP_CONG_VENO=m
    CONFIG_TCP_CONG_YEAH=m
    CONFIG_TCP_CONG_ILLINOIS=m
    CONFIG_DEFAULT_CUBIC=y
    # CONFIG_DEFAULT_RENO is not set
    CONFIG_DEFAULT_TCP_CONG="cubic"
    # CONFIG_TCP_MD5SIG 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=m
    CONFIG_INET6_ESP=m
    CONFIG_INET6_IPCOMP=m
    CONFIG_IPV6_MIP6=m
    CONFIG_INET6_XFRM_TUNNEL=m
    CONFIG_INET6_TUNNEL=m
    CONFIG_INET6_XFRM_MODE_TRANSPORT=m
    CONFIG_INET6_XFRM_MODE_TUNNEL=m
    CONFIG_INET6_XFRM_MODE_BEET=m
    CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
    CONFIG_IPV6_SIT=m
    CONFIG_IPV6_SIT_6RD=y
    CONFIG_IPV6_NDISC_NODETYPE=y
    CONFIG_IPV6_TUNNEL=m
    CONFIG_IPV6_GRE=m
    CONFIG_IPV6_MULTIPLE_TABLES=y
    CONFIG_IPV6_SUBTREES=y
    # CONFIG_IPV6_MROUTE is not set
    CONFIG_NETLABEL=y
    CONFIG_NETWORK_SECMARK=y
    CONFIG_NETWORK_PHY_TIMESTAMPING=y
    CONFIG_NETFILTER=y
    # CONFIG_NETFILTER_DEBUG is not set
    CONFIG_NETFILTER_ADVANCED=y
    CONFIG_BRIDGE_NETFILTER=y
    # Core Netfilter Configuration
    CONFIG_NETFILTER_NETLINK=m
    CONFIG_NETFILTER_NETLINK_ACCT=m
    CONFIG_NETFILTER_NETLINK_QUEUE=m
    CONFIG_NETFILTER_NETLINK_LOG=m
    CONFIG_NF_CONNTRACK=m
    CONFIG_NF_CONNTRACK_MARK=y
    CONFIG_NF_CONNTRACK_SECMARK=y
    CONFIG_NF_CONNTRACK_ZONES=y
    CONFIG_NF_CONNTRACK_PROCFS=y
    CONFIG_NF_CONNTRACK_EVENTS=y
    CONFIG_NF_CONNTRACK_TIMEOUT=y
    CONFIG_NF_CONNTRACK_TIMESTAMP=y
    CONFIG_NF_CONNTRACK_LABELS=y
    CONFIG_NF_CT_PROTO_DCCP=m
    CONFIG_NF_CT_PROTO_GRE=m
    CONFIG_NF_CT_PROTO_SCTP=m
    CONFIG_NF_CT_PROTO_UDPLITE=m
    CONFIG_NF_CONNTRACK_AMANDA=m
    CONFIG_NF_CONNTRACK_FTP=m
    CONFIG_NF_CONNTRACK_H323=m
    CONFIG_NF_CONNTRACK_IRC=m
    CONFIG_NF_CONNTRACK_BROADCAST=m
    CONFIG_NF_CONNTRACK_NETBIOS_NS=m
    CONFIG_NF_CONNTRACK_SNMP=m
    CONFIG_NF_CONNTRACK_PPTP=m
    CONFIG_NF_CONNTRACK_SANE=m
    CONFIG_NF_CONNTRACK_SIP=m
    CONFIG_NF_CONNTRACK_TFTP=m
    CONFIG_NF_CT_NETLINK=m
    CONFIG_NF_CT_NETLINK_TIMEOUT=m
    CONFIG_NF_CT_NETLINK_HELPER=m
    CONFIG_NETFILTER_NETLINK_QUEUE_CT=y
    CONFIG_NF_NAT=m
    CONFIG_NF_NAT_NEEDED=y
    CONFIG_NF_NAT_PROTO_DCCP=m
    CONFIG_NF_NAT_PROTO_UDPLITE=m
    CONFIG_NF_NAT_PROTO_SCTP=m
    CONFIG_NF_NAT_AMANDA=m
    CONFIG_NF_NAT_FTP=m
    CONFIG_NF_NAT_IRC=m
    CONFIG_NF_NAT_SIP=m
    CONFIG_NF_NAT_TFTP=m
    CONFIG_NETFILTER_TPROXY=m
    CONFIG_NETFILTER_XTABLES=m
    # Xtables combined modules
    CONFIG_NETFILTER_XT_MARK=m
    CONFIG_NETFILTER_XT_CONNMARK=m
    CONFIG_NETFILTER_XT_SET=m
    # Xtables targets
    CONFIG_NETFILTER_XT_TARGET_AUDIT=m
    CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
    CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
    CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
    CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
    CONFIG_NETFILTER_XT_TARGET_CT=m
    CONFIG_NETFILTER_XT_TARGET_DSCP=m
    CONFIG_NETFILTER_XT_TARGET_HL=m
    CONFIG_NETFILTER_XT_TARGET_HMARK=m
    CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m
    CONFIG_NETFILTER_XT_TARGET_LED=m
    CONFIG_NETFILTER_XT_TARGET_LOG=m
    CONFIG_NETFILTER_XT_TARGET_MARK=m
    CONFIG_NETFILTER_XT_TARGET_NETMAP=m
    CONFIG_NETFILTER_XT_TARGET_NFLOG=m
    CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
    CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
    CONFIG_NETFILTER_XT_TARGET_RATEEST=m
    CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
    CONFIG_NETFILTER_XT_TARGET_TEE=m
    CONFIG_NETFILTER_XT_TARGET_TPROXY=m
    CONFIG_NETFILTER_XT_TARGET_TRACE=m
    CONFIG_NETFILTER_XT_TARGET_SECMARK=m
    CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
    CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
    # Xtables matches
    CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
    CONFIG_NETFILTER_XT_MATCH_BPF=m
    CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
    CONFIG_NETFILTER_XT_MATCH_COMMENT=m
    CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
    CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m
    CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
    CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
    CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
    CONFIG_NETFILTER_XT_MATCH_CPU=m
    CONFIG_NETFILTER_XT_MATCH_DCCP=m
    CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m
    CONFIG_NETFILTER_XT_MATCH_DSCP=m
    CONFIG_NETFILTER_XT_MATCH_ECN=m
    CONFIG_NETFILTER_XT_MATCH_ESP=m
    CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
    CONFIG_NETFILTER_XT_MATCH_HELPER=m
    CONFIG_NETFILTER_XT_MATCH_HL=m
    CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
    CONFIG_NETFILTER_XT_MATCH_IPVS=m
    CONFIG_NETFILTER_XT_MATCH_LENGTH=m
    CONFIG_NETFILTER_XT_MATCH_LIMIT=m
    CONFIG_NETFILTER_XT_MATCH_MAC=m
    CONFIG_NETFILTER_XT_MATCH_MARK=m
    CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
    CONFIG_NETFILTER_XT_MATCH_NFACCT=m
    CONFIG_NETFILTER_XT_MATCH_OSF=m
    CONFIG_NETFILTER_XT_MATCH_OWNER=m
    CONFIG_NETFILTER_XT_MATCH_POLICY=m
    CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
    CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
    CONFIG_NETFILTER_XT_MATCH_QUOTA=m
    CONFIG_NETFILTER_XT_MATCH_RATEEST=m
    CONFIG_NETFILTER_XT_MATCH_REALM=m
    CONFIG_NETFILTER_XT_MATCH_RECENT=m
    CONFIG_NETFILTER_XT_MATCH_SCTP=m
    CONFIG_NETFILTER_XT_MATCH_SOCKET=m
    CONFIG_NETFILTER_XT_MATCH_STATE=m
    CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
    CONFIG_NETFILTER_XT_MATCH_STRING=m
    CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
    CONFIG_NETFILTER_XT_MATCH_TIME=m
    CONFIG_NETFILTER_XT_MATCH_U32=m
    CONFIG_IP_SET=m
    CONFIG_IP_SET_MAX=256
    CONFIG_IP_SET_BITMAP_IP=m
    CONFIG_IP_SET_BITMAP_IPMAC=m
    CONFIG_IP_SET_BITMAP_PORT=m
    CONFIG_IP_SET_HASH_IP=m
    CONFIG_IP_SET_HASH_IPPORT=m
    CONFIG_IP_SET_HASH_IPPORTIP=m
    CONFIG_IP_SET_HASH_IPPORTNET=m
    CONFIG_IP_SET_HASH_NET=m
    CONFIG_IP_SET_HASH_NETPORT=m
    CONFIG_IP_SET_HASH_NETIFACE=m
    CONFIG_IP_SET_LIST_SET=m
    CONFIG_IP_VS=m
    # CONFIG_IP_VS_IPV6 is not set
    # CONFIG_IP_VS_DEBUG is not set
    CONFIG_IP_VS_TAB_BITS=12
    # IPVS transport protocol load balancing support
    CONFIG_IP_VS_PROTO_TCP=y
    CONFIG_IP_VS_PROTO_UDP=y
    CONFIG_IP_VS_PROTO_AH_ESP=y
    CONFIG_IP_VS_PROTO_ESP=y
    CONFIG_IP_VS_PROTO_AH=y
    CONFIG_IP_VS_PROTO_SCTP=y
    # IPVS scheduler
    CONFIG_IP_VS_RR=m
    CONFIG_IP_VS_WRR=m
    CONFIG_IP_VS_LC=m
    CONFIG_IP_VS_WLC=m
    CONFIG_IP_VS_LBLC=m
    CONFIG_IP_VS_LBLCR=m
    CONFIG_IP_VS_DH=m
    CONFIG_IP_VS_SH=m
    CONFIG_IP_VS_SED=m
    CONFIG_IP_VS_NQ=m
    # IPVS SH scheduler
    CONFIG_IP_VS_SH_TAB_BITS=8
    # IPVS application helper
    CONFIG_IP_VS_FTP=m
    CONFIG_IP_VS_NFCT=y
    CONFIG_IP_VS_PE_SIP=m
    # IP: Netfilter Configuration
    CONFIG_NF_DEFRAG_IPV4=m
    CONFIG_NF_CONNTRACK_IPV4=m
    # CONFIG_NF_CONNTRACK_PROC_COMPAT is not set
    CONFIG_IP_NF_IPTABLES=m
    CONFIG_IP_NF_MATCH_AH=m
    CONFIG_IP_NF_MATCH_ECN=m
    CONFIG_IP_NF_MATCH_RPFILTER=m
    CONFIG_IP_NF_MATCH_TTL=m
    CONFIG_IP_NF_FILTER=m
    CONFIG_IP_NF_TARGET_REJECT=m
    CONFIG_IP_NF_TARGET_ULOG=m
    CONFIG_NF_NAT_IPV4=m
    CONFIG_IP_NF_TARGET_MASQUERADE=m
    CONFIG_IP_NF_TARGET_NETMAP=m
    CONFIG_IP_NF_TARGET_REDIRECT=m
    CONFIG_NF_NAT_SNMP_BASIC=m
    CONFIG_NF_NAT_PROTO_GRE=m
    CONFIG_NF_NAT_PPTP=m
    CONFIG_NF_NAT_H323=m
    CONFIG_IP_NF_MANGLE=m
    CONFIG_IP_NF_TARGET_CLUSTERIP=m
    CONFIG_IP_NF_TARGET_ECN=m
    CONFIG_IP_NF_TARGET_TTL=m
    CONFIG_IP_NF_RAW=m
    CONFIG_IP_NF_SECURITY=m
    CONFIG_IP_NF_ARPTABLES=m
    CONFIG_IP_NF_ARPFILTER=m
    CONFIG_IP_NF_ARP_MANGLE=m
    # IPv6: Netfilter Configuration
    CONFIG_NF_DEFRAG_IPV6=m
    CONFIG_NF_CONNTRACK_IPV6=m
    CONFIG_IP6_NF_IPTABLES=m
    CONFIG_IP6_NF_MATCH_AH=m
    CONFIG_IP6_NF_MATCH_EUI64=m
    CONFIG_IP6_NF_MATCH_FRAG=m
    CONFIG_IP6_NF_MATCH_OPTS=m
    CONFIG_IP6_NF_MATCH_HL=m
    CONFIG_IP6_NF_MATCH_IPV6HEADER=m
    CONFIG_IP6_NF_MATCH_MH=m
    CONFIG_IP6_NF_MATCH_RPFILTER=m
    CONFIG_IP6_NF_MATCH_RT=m
    CONFIG_IP6_NF_TARGET_HL=m
    CONFIG_IP6_NF_FILTER=m
    CONFIG_IP6_NF_TARGET_REJECT=m
    CONFIG_IP6_NF_MANGLE=m
    CONFIG_IP6_NF_RAW=m
    CONFIG_IP6_NF_SECURITY=m
    CONFIG_NF_NAT_IPV6=m
    CONFIG_IP6_NF_TARGET_MASQUERADE=m
    CONFIG_IP6_NF_TARGET_NPT=m
    CONFIG_BRIDGE_NF_EBTABLES=m
    CONFIG_BRIDGE_EBT_BROUTE=m
    CONFIG_BRIDGE_EBT_T_FILTER=m
    CONFIG_BRIDGE_EBT_T_NAT=m
    CONFIG_BRIDGE_EBT_802_3=m
    CONFIG_BRIDGE_EBT_AMONG=m
    CONFIG_BRIDGE_EBT_ARP=m
    CONFIG_BRIDGE_EBT_IP=m
    CONFIG_BRIDGE_EBT_IP6=m
    CONFIG_BRIDGE_EBT_LIMIT=m
    CONFIG_BRIDGE_EBT_MARK=m
    CONFIG_BRIDGE_EBT_PKTTYPE=m
    CONFIG_BRIDGE_EBT_STP=m
    CONFIG_BRIDGE_EBT_VLAN=m
    CONFIG_BRIDGE_EBT_ARPREPLY=m
    CONFIG_BRIDGE_EBT_DNAT=m
    CONFIG_BRIDGE_EBT_MARK_T=m
    CONFIG_BRIDGE_EBT_REDIRECT=m
    CONFIG_BRIDGE_EBT_SNAT=m
    CONFIG_BRIDGE_EBT_LOG=m
    CONFIG_BRIDGE_EBT_ULOG=m
    CONFIG_BRIDGE_EBT_NFLOG=m
    CONFIG_IP_DCCP=m
    CONFIG_INET_DCCP_DIAG=m
    # DCCP CCIDs Configuration
    # CONFIG_IP_DCCP_CCID2_DEBUG is not set
    CONFIG_IP_DCCP_CCID3=y
    # CONFIG_IP_DCCP_CCID3_DEBUG is not set
    CONFIG_IP_DCCP_TFRC_LIB=y
    # DCCP Kernel Hacking
    # CONFIG_IP_DCCP_DEBUG is not set
    CONFIG_NET_DCCPPROBE=m
    CONFIG_IP_SCTP=m
    CONFIG_NET_SCTPPROBE=m
    # CONFIG_SCTP_DBG_MSG is not set
    # CONFIG_SCTP_DBG_OBJCNT is not set
    # CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
    CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
    # CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
    CONFIG_SCTP_COOKIE_HMAC_MD5=y
    CONFIG_SCTP_COOKIE_HMAC_SHA1=y
    # CONFIG_RDS is not set
    # CONFIG_TIPC is not set
    CONFIG_ATM=m
    CONFIG_ATM_CLIP=m
    # CONFIG_ATM_CLIP_NO_ICMP is not set
    CONFIG_ATM_LANE=m
    CONFIG_ATM_MPOA=m
    CONFIG_ATM_BR2684=m
    # CONFIG_ATM_BR2684_IPFILTER is not set
    CONFIG_L2TP=m
    # CONFIG_L2TP_DEBUGFS is not set
    CONFIG_L2TP_V3=y
    CONFIG_L2TP_IP=m
    CONFIG_L2TP_ETH=m
    CONFIG_STP=m
    CONFIG_MRP=m
    CONFIG_BRIDGE=m
    CONFIG_BRIDGE_IGMP_SNOOPING=y
    CONFIG_BRIDGE_VLAN_FILTERING=y
    CONFIG_HAVE_NET_DSA=y
    CONFIG_NET_DSA=m
    CONFIG_NET_DSA_TAG_DSA=y
    CONFIG_NET_DSA_TAG_EDSA=y
    CONFIG_NET_DSA_TAG_TRAILER=y
    CONFIG_VLAN_8021Q=m
    # CONFIG_VLAN_8021Q_GVRP is not set
    CONFIG_VLAN_8021Q_MVRP=y
    # CONFIG_DECNET is not set
    CONFIG_LLC=m
    CONFIG_LLC2=m
    CONFIG_IPX=m
    # CONFIG_IPX_INTERN is not set
    CONFIG_ATALK=m
    CONFIG_DEV_APPLETALK=m
    CONFIG_LTPC=m
    CONFIG_COPS=m
    CONFIG_COPS_DAYNA=y
    CONFIG_COPS_TANGENT=y
    CONFIG_IPDDP=m
    CONFIG_IPDDP_ENCAP=y
    CONFIG_IPDDP_DECAP=y
    # CONFIG_X25 is not set
    # CONFIG_LAPB is not set
    CONFIG_PHONET=m
    CONFIG_IEEE802154=m
    CONFIG_IEEE802154_6LOWPAN=m
    CONFIG_MAC802154=m
    CONFIG_NET_SCHED=y
    # Queueing/Scheduling
    CONFIG_NET_SCH_CBQ=m
    CONFIG_NET_SCH_HTB=m
    CONFIG_NET_SCH_HFSC=m
    CONFIG_NET_SCH_ATM=m
    CONFIG_NET_SCH_PRIO=m
    CONFIG_NET_SCH_MULTIQ=m
    CONFIG_NET_SCH_RED=m
    CONFIG_NET_SCH_SFB=m
    CONFIG_NET_SCH_SFQ=m
    CONFIG_NET_SCH_TEQL=m
    CONFIG_NET_SCH_TBF=m
    CONFIG_NET_SCH_GRED=m
    CONFIG_NET_SCH_DSMARK=m
    CONFIG_NET_SCH_NETEM=m
    CONFIG_NET_SCH_DRR=m
    CONFIG_NET_SCH_MQPRIO=m
    CONFIG_NET_SCH_CHOKE=m
    CONFIG_NET_SCH_QFQ=m
    CONFIG_NET_SCH_CODEL=m
    CONFIG_NET_SCH_FQ_CODEL=m
    CONFIG_NET_SCH_INGRESS=m
    CONFIG_NET_SCH_PLUG=m
    # Classification
    CONFIG_NET_CLS=y
    CONFIG_NET_CLS_BASIC=m
    CONFIG_NET_CLS_TCINDEX=m
    CONFIG_NET_CLS_ROUTE4=m
    CONFIG_NET_CLS_FW=m
    CONFIG_NET_CLS_U32=m
    # CONFIG_CLS_U32_PERF is not set
    # CONFIG_CLS_U32_MARK is not set
    CONFIG_NET_CLS_RSVP=m
    CONFIG_NET_CLS_RSVP6=m
    CONFIG_NET_CLS_FLOW=m
    CONFIG_NET_CLS_CGROUP=y
    # CONFIG_NET_EMATCH is not set
    CONFIG_NET_CLS_ACT=y
    CONFIG_NET_ACT_POLICE=m
    CONFIG_NET_ACT_GACT=m
    CONFIG_GACT_PROB=y
    CONFIG_NET_ACT_MIRRED=m
    CONFIG_NET_ACT_IPT=m
    CONFIG_NET_ACT_NAT=m
    CONFIG_NET_ACT_PEDIT=m
    CONFIG_NET_ACT_SIMP=m
    CONFIG_NET_ACT_SKBEDIT=m
    CONFIG_NET_ACT_CSUM=m
    CONFIG_NET_CLS_IND=y
    CONFIG_NET_SCH_FIFO=y
    # CONFIG_DCB is not set
    CONFIG_DNS_RESOLVER=y
    CONFIG_BATMAN_ADV=m
    CONFIG_BATMAN_ADV_BLA=y
    CONFIG_BATMAN_ADV_DAT=y
    # CONFIG_BATMAN_ADV_DEBUG is not set
    CONFIG_OPENVSWITCH=m
    CONFIG_VSOCKETS=m
    CONFIG_VMWARE_VMCI_VSOCKETS=m
    CONFIG_RPS=y
    CONFIG_RFS_ACCEL=y
    CONFIG_XPS=y
    CONFIG_NETPRIO_CGROUP=m
    CONFIG_BQL=y
    # Network testing
    CONFIG_NET_PKTGEN=m
    CONFIG_NET_TCPPROBE=m
    CONFIG_NET_DROP_MONITOR=y
    CONFIG_HAMRADIO=y
    # Packet Radio protocols
    CONFIG_AX25=m
    CONFIG_AX25_DAMA_SLAVE=y
    CONFIG_NETROM=m
    CONFIG_ROSE=m
    # AX.25 network device drivers
    CONFIG_MKISS=m
    CONFIG_6PACK=m
    CONFIG_BPQETHER=m
    CONFIG_SCC=m
    # CONFIG_SCC_DELAY is not set
    # CONFIG_SCC_TRXECHO is not set
    CONFIG_BAYCOM_SER_FDX=m
    CONFIG_BAYCOM_SER_HDX=m
    CONFIG_BAYCOM_PAR=m
    CONFIG_BAYCOM_EPP=m
    CONFIG_YAM=m
    # CONFIG_CAN is not set
    CONFIG_IRDA=m
    # IrDA protocols
    CONFIG_IRLAN=m
    CONFIG_IRNET=m
    CONFIG_IRCOMM=m
    CONFIG_IRDA_ULTRA=y
    # IrDA options
    CONFIG_IRDA_CACHE_LAST_LSAP=y
    CONFIG_IRDA_FAST_RR=y
    # CONFIG_IRDA_DEBUG is not set
    # Infrared-port device drivers
    # SIR device drivers
    CONFIG_IRTTY_SIR=m
    # Dongle support
    CONFIG_DONGLE=y
    CONFIG_ESI_DONGLE=m
    CONFIG_ACTISYS_DONGLE=m
    CONFIG_TEKRAM_DONGLE=m
    CONFIG_TOIM3232_DONGLE=m
    CONFIG_LITELINK_DONGLE=m
    CONFIG_MA600_DONGLE=m
    CONFIG_GIRBIL_DONGLE=m
    CONFIG_MCP2120_DONGLE=m
    CONFIG_OLD_BELKIN_DONGLE=m
    CONFIG_ACT200L_DONGLE=m
    CONFIG_KINGSUN_DONGLE=m
    CONFIG_KSDAZZLE_DONGLE=m
    CONFIG_KS959_DONGLE=m
    # FIR device drivers
    CONFIG_USB_IRDA=m
    CONFIG_SIGMATEL_FIR=m
    CONFIG_NSC_FIR=m
    CONFIG_WINBOND_FIR=m
    CONFIG_TOSHIBA_FIR=m
    CONFIG_SMC_IRCC_FIR=m
    CONFIG_ALI_FIR=m
    CONFIG_VLSI_FIR=m
    CONFIG_VIA_FIR=m
    CONFIG_MCS_FIR=m
    CONFIG_BT=m
    CONFIG_BT_RFCOMM=m
    CONFIG_BT_RFCOMM_TTY=y
    CONFIG_BT_BNEP=m
    # CONFIG_BT_BNEP_MC_FILTER is not set
    # CONFIG_BT_BNEP_PROTO_FILTER is not set
    # CONFIG_BT_CMTP is not set
    CONFIG_BT_HIDP=m
    # Bluetooth device drivers
    CONFIG_BT_HCIBTUSB=m
    CONFIG_BT_HCIBTSDIO=m
    CONFIG_BT_HCIUART=m
    CONFIG_BT_HCIUART_H4=y
    CONFIG_BT_HCIUART_BCSP=y
    CONFIG_BT_HCIUART_ATH3K=y
    CONFIG_BT_HCIUART_LL=y
    CONFIG_BT_HCIUART_3WIRE=y
    CONFIG_BT_HCIBCM203X=m
    CONFIG_BT_HCIBPA10X=m
    CONFIG_BT_HCIBFUSB=m
    CONFIG_BT_HCIDTL1=m
    CONFIG_BT_HCIBT3C=m
    CONFIG_BT_HCIBLUECARD=m
    CONFIG_BT_HCIBTUART=m
    CONFIG_BT_HCIVHCI=m
    CONFIG_BT_MRVL=m
    CONFIG_BT_MRVL_SDIO=m
    CONFIG_BT_ATH3K=m
    CONFIG_BT_WILINK=m
    CONFIG_AF_RXRPC=m
    # CONFIG_AF_RXRPC_DEBUG is not set
    CONFIG_RXKAD=m
    CONFIG_FIB_RULES=y
    CONFIG_WIRELESS=y
    CONFIG_WIRELESS_EXT=y
    CONFIG_WEXT_CORE=y
    CONFIG_WEXT_PROC=y
    CONFIG_WEXT_SPY=y
    CONFIG_WEXT_PRIV=y
    CONFIG_CFG80211=m
    # CONFIG_NL80211_TESTMODE is not set
    # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
    # CONFIG_CFG80211_REG_DEBUG is not set
    CONFIG_CFG80211_DEFAULT_PS=y
    # CONFIG_CFG80211_DEBUGFS is not set
    # CONFIG_CFG80211_INTERNAL_REGDB is not set
    CONFIG_CFG80211_WEXT=y
    CONFIG_LIB80211=m
    CONFIG_LIB80211_CRYPT_WEP=m
    CONFIG_LIB80211_CRYPT_CCMP=m
    CONFIG_LIB80211_CRYPT_TKIP=m
    # CONFIG_LIB80211_DEBUG is not set
    CONFIG_MAC80211=m
    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_DEBUGFS is not set
    # CONFIG_MAC80211_MESSAGE_TRACING is not set
    # CONFIG_MAC80211_DEBUG_MENU is not set
    CONFIG_WIMAX=m
    CONFIG_WIMAX_DEBUG_LEVEL=8
    CONFIG_RFKILL=m
    CONFIG_RFKILL_LEDS=y
    CONFIG_RFKILL_INPUT=y
    CONFIG_NET_9P=m
    CONFIG_NET_9P_VIRTIO=m
    # CONFIG_NET_9P_DEBUG is not set
    CONFIG_CAIF=m
    # CONFIG_CAIF_DEBUG is not set
    CONFIG_CAIF_NETDEV=m
    CONFIG_CAIF_USB=m
    CONFIG_CEPH_LIB=m
    # CONFIG_CEPH_LIB_PRETTYDEBUG is not set
    # CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set
    CONFIG_NFC=m
    CONFIG_NFC_NCI=m
    CONFIG_NFC_HCI=m
    # CONFIG_NFC_SHDLC is not set
    # CONFIG_NFC_LLCP is not set
    # Near Field Communication (NFC) devices
    CONFIG_NFC_PN533=m
    CONFIG_NFC_WILINK=m
    CONFIG_NFC_PN544=m
    CONFIG_NFC_MICROREAD=m
    # 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=""
    # CONFIG_FW_LOADER_USER_HELPER is not set
    # CONFIG_DEBUG_DRIVER is not set
    # CONFIG_DEBUG_DEVRES is not set
    # CONFIG_SYS_HYPERVISOR is not set
    # CONFIG_GENERIC_CPU_DEVICES is not set
    CONFIG_REGMAP=y
    CONFIG_REGMAP_I2C=m
    CONFIG_REGMAP_MMIO=m
    CONFIG_REGMAP_IRQ=y
    CONFIG_DMA_SHARED_BUFFER=y
    # CONFIG_CMA is not set
    # Bus devices
    CONFIG_CONNECTOR=y
    CONFIG_PROC_EVENTS=y
    CONFIG_MTD=m
    CONFIG_MTD_TESTS=m
    CONFIG_MTD_REDBOOT_PARTS=m
    CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1
    # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set
    # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set
    CONFIG_MTD_CMDLINE_PARTS=m
    CONFIG_MTD_OF_PARTS=m
    CONFIG_MTD_AR7_PARTS=m
    # User Modules And Translation Layers
    CONFIG_MTD_CHAR=m
    CONFIG_MTD_BLKDEVS=m
    CONFIG_MTD_BLOCK=m
    CONFIG_MTD_BLOCK_RO=m
    CONFIG_FTL=m
    CONFIG_NFTL=m
    CONFIG_NFTL_RW=y
    CONFIG_INFTL=m
    CONFIG_RFD_FTL=m
    CONFIG_SSFDC=m
    # CONFIG_SM_FTL is not set
    CONFIG_MTD_OOPS=m
    CONFIG_MTD_SWAP=m
    # RAM/ROM/Flash chip drivers
    CONFIG_MTD_CFI=m
    CONFIG_MTD_JEDECPROBE=m
    CONFIG_MTD_GEN_PROBE=m
    # CONFIG_MTD_CFI_ADV_OPTIONS is not set
    CONFIG_MTD_MAP_BANK_WIDTH_1=y
    CONFIG_MTD_MAP_BANK_WIDTH_2=y
    CONFIG_MTD_MAP_BANK_WIDTH_4=y
    # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
    # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
    # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
    CONFIG_MTD_CFI_I1=y
    CONFIG_MTD_CFI_I2=y
    # CONFIG_MTD_CFI_I4 is not set
    # CONFIG_MTD_CFI_I8 is not set
    CONFIG_MTD_CFI_INTELEXT=m
    CONFIG_MTD_CFI_AMDSTD=m
    CONFIG_MTD_CFI_STAA=m
    CONFIG_MTD_CFI_UTIL=m
    CONFIG_MTD_RAM=m
    CONFIG_MTD_ROM=m
    CONFIG_MTD_ABSENT=m
    # Mapping drivers for chip access
    CONFIG_MTD_COMPLEX_MAPPINGS=y
    # CONFIG_MTD_PHYSMAP is not set
    CONFIG_MTD_PHYSMAP_OF=m
    CONFIG_MTD_SC520CDP=m
    CONFIG_MTD_NETSC520=m
    CONFIG_MTD_TS5500=m
    # CONFIG_MTD_SBC_GXX is not set
    # CONFIG_MTD_AMD76XROM is not set
    # CONFIG_MTD_ICHXROM is not set
    # CONFIG_MTD_ESB2ROM is not set
    # CONFIG_MTD_CK804XROM is not set
    CONFIG_MTD_SCB2_FLASH=m
    # CONFIG_MTD_NETtel is not set
    # CONFIG_MTD_L440GX is not set
    CONFIG_MTD_PCI=m
    # CONFIG_MTD_PCMCIA is not set
    # CONFIG_MTD_GPIO_ADDR is not set
    # CONFIG_MTD_INTEL_VR_NOR is not set
    CONFIG_MTD_PLATRAM=m
    # CONFIG_MTD_LATCH_ADDR is not set
    # Self-contained MTD device drivers
    CONFIG_MTD_PMC551=m
    # CONFIG_MTD_PMC551_BUGFIX is not set
    # CONFIG_MTD_PMC551_DEBUG is not set
    # CONFIG_MTD_DATAFLASH is not set
    # CONFIG_MTD_M25P80 is not set
    # CONFIG_MTD_SST25L is not set
    # CONFIG_MTD_SLRAM is not set
    CONFIG_MTD_PHRAM=m
    CONFIG_MTD_MTDRAM=m
    CONFIG_MTDRAM_TOTAL_SIZE=4096
    CONFIG_MTDRAM_ERASE_SIZE=128
    CONFIG_MTD_BLOCK2MTD=m
    # Disk-On-Chip Device Drivers
    # CONFIG_MTD_DOC2000 is not set
    # CONFIG_MTD_DOC2001 is not set
    # CONFIG_MTD_DOC2001PLUS is not set
    CONFIG_MTD_DOCG3=m
    CONFIG_BCH_CONST_M=14
    CONFIG_BCH_CONST_T=4
    CONFIG_MTD_NAND_ECC=m
    CONFIG_MTD_NAND_ECC_SMC=y
    CONFIG_MTD_NAND=m
    # CONFIG_MTD_NAND_ECC_BCH is not set
    CONFIG_MTD_SM_COMMON=m
    # CONFIG_MTD_NAND_MUSEUM_IDS is not set
    # CONFIG_MTD_NAND_DENALI is not set
    CONFIG_MTD_NAND_IDS=m
    CONFIG_MTD_NAND_RICOH=m
    CONFIG_MTD_NAND_DISKONCHIP=m
    # CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set
    CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0
    # CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set
    CONFIG_MTD_NAND_DOCG4=m
    # CONFIG_MTD_NAND_CAFE is not set
    CONFIG_MTD_NAND_CS553X=m
    CONFIG_MTD_NAND_NANDSIM=m
    # CONFIG_MTD_NAND_PLATFORM is not set
    CONFIG_MTD_ALAUDA=m
    # CONFIG_MTD_ONENAND is not set
    # LPDDR flash memory drivers
    CONFIG_MTD_LPDDR=m
    CONFIG_MTD_QINFO_PROBE=m
    CONFIG_MTD_UBI=m
    CONFIG_MTD_UBI_WL_THRESHOLD=4096
    CONFIG_MTD_UBI_BEB_LIMIT=20
    # CONFIG_MTD_UBI_FASTMAP is not set
    # CONFIG_MTD_UBI_GLUEBI is not set
    CONFIG_OF=y
    # Device Tree and Open Firmware support
    CONFIG_PROC_DEVICETREE=y
    # CONFIG_OF_SELFTEST is not set
    CONFIG_OF_PROMTREE=y
    CONFIG_OF_ADDRESS=y
    CONFIG_OF_IRQ=y
    CONFIG_OF_DEVICE=y
    CONFIG_OF_I2C=m
    CONFIG_OF_NET=y
    CONFIG_OF_MDIO=m
    CONFIG_OF_PCI=y
    CONFIG_OF_PCI_IRQ=y
    CONFIG_OF_MTD=y
    CONFIG_PARPORT=m
    CONFIG_PARPORT_PC=m
    CONFIG_PARPORT_SERIAL=m
    # CONFIG_PARPORT_PC_FIFO is not set
    # CONFIG_PARPORT_PC_SUPERIO is not set
    CONFIG_PARPORT_PC_PCMCIA=m
    # CONFIG_PARPORT_GSC is not set
    CONFIG_PARPORT_AX88796=m
    CONFIG_PARPORT_1284=y
    CONFIG_PARPORT_NOT_PC=y
    CONFIG_PNP=y
    # CONFIG_PNP_DEBUG_MESSAGES is not set
    # Protocols
    CONFIG_ISAPNP=y
    # CONFIG_PNPBIOS is not set
    CONFIG_PNPACPI=y
    CONFIG_BLK_DEV=y
    CONFIG_BLK_DEV_FD=m
    # CONFIG_PARIDE is not set
    CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m
    CONFIG_BLK_CPQ_DA=m
    CONFIG_BLK_CPQ_CISS_DA=m
    # CONFIG_CISS_SCSI_TAPE is not set
    CONFIG_BLK_DEV_DAC960=m
    # CONFIG_BLK_DEV_UMEM is not set
    # CONFIG_BLK_DEV_COW_COMMON is not set
    CONFIG_BLK_DEV_LOOP=m
    CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
    CONFIG_BLK_DEV_CRYPTOLOOP=m
    CONFIG_BLK_DEV_DRBD=m
    # CONFIG_DRBD_FAULT_INJECTION is not set
    CONFIG_BLK_DEV_NBD=m
    CONFIG_BLK_DEV_NVME=m
    CONFIG_BLK_DEV_OSD=m
    CONFIG_BLK_DEV_SX8=m
    CONFIG_BLK_DEV_RAM=m
    CONFIG_BLK_DEV_RAM_COUNT=16
    CONFIG_BLK_DEV_RAM_SIZE=16384
    # CONFIG_BLK_DEV_XIP is not set
    CONFIG_CDROM_PKTCDVD=m
    CONFIG_CDROM_PKTCDVD_BUFFERS=8
    # CONFIG_CDROM_PKTCDVD_WCACHE is not set
    CONFIG_ATA_OVER_ETH=m
    CONFIG_VIRTIO_BLK=m
    # CONFIG_BLK_DEV_HD is not set
    CONFIG_BLK_DEV_RBD=m
    CONFIG_BLK_DEV_RSXX=m
    # Misc devices
    CONFIG_SENSORS_LIS3LV02D=m
    CONFIG_AD525X_DPOT=m
    CONFIG_AD525X_DPOT_I2C=m
    # CONFIG_AD525X_DPOT_SPI is not set
    # CONFIG_IBM_ASM is not set
    CONFIG_PHANTOM=m
    CONFIG_INTEL_MID_PTI=m
    CONFIG_SGI_IOC4=m
    CONFIG_TIFM_CORE=m
    CONFIG_TIFM_7XX1=m
    CONFIG_ICS932S401=m
    # CONFIG_ATMEL_SSC is not set
    CONFIG_ENCLOSURE_SERVICES=m
    CONFIG_CS5535_MFGPT=m
    CONFIG_CS5535_MFGPT_DEFAULT_IRQ=7
    CONFIG_CS5535_CLOCK_EVENT_SRC=m
    CONFIG_HP_ILO=m
    CONFIG_APDS9802ALS=m
    CONFIG_ISL29003=m
    CONFIG_ISL29020=m
    CONFIG_SENSORS_TSL2550=m
    CONFIG_SENSORS_BH1780=m
    CONFIG_SENSORS_BH1770=m
    CONFIG_SENSORS_APDS990X=m
    CONFIG_HMC6352=m
    CONFIG_DS1682=m
    # CONFIG_TI_DAC7512 is not set
    CONFIG_VMWARE_BALLOON=m
    CONFIG_BMP085=y
    CONFIG_BMP085_I2C=m
    # CONFIG_BMP085_SPI is not set
    # CONFIG_PCH_PHUB is not set
    CONFIG_USB_SWITCH_FSA9480=m
    # CONFIG_LATTICE_ECP3_CONFIG is not set
    CONFIG_C2PORT=m
    CONFIG_C2PORT_DURAMAR_2150=m
    # EEPROM support
    CONFIG_EEPROM_AT24=m
    # CONFIG_EEPROM_AT25 is not set
    CONFIG_EEPROM_LEGACY=m
    CONFIG_EEPROM_MAX6875=m
    CONFIG_EEPROM_93CX6=m
    # CONFIG_EEPROM_93XX46 is not set
    CONFIG_CB710_CORE=m
    # CONFIG_CB710_DEBUG is not set
    CONFIG_CB710_DEBUG_ASSUMPTIONS=y
    # Texas Instruments shared transport line discipline
    CONFIG_TI_ST=m
    CONFIG_SENSORS_LIS3_I2C=m
    # Altera FPGA firmware download module
    CONFIG_ALTERA_STAPL=m
    CONFIG_INTEL_MEI=m
    CONFIG_INTEL_MEI_ME=y
    CONFIG_VMWARE_VMCI=m
    CONFIG_HAVE_IDE=y
    # CONFIG_IDE is not set
    # SCSI device support
    CONFIG_SCSI_MOD=m
    CONFIG_RAID_ATTRS=m
    CONFIG_SCSI=m
    CONFIG_SCSI_DMA=y
    CONFIG_SCSI_TGT=m
    CONFIG_SCSI_NETLINK=y
    CONFIG_SCSI_PROC_FS=y
    # SCSI support type (disk, tape, CD-ROM)
    CONFIG_BLK_DEV_SD=m
    CONFIG_CHR_DEV_ST=m
    CONFIG_CHR_DEV_OSST=m
    CONFIG_BLK_DEV_SR=m
    CONFIG_BLK_DEV_SR_VENDOR=y
    CONFIG_CHR_DEV_SG=m
    CONFIG_CHR_DEV_SCH=m
    CONFIG_SCSI_ENCLOSURE=m
    CONFIG_SCSI_MULTI_LUN=y
    # CONFIG_SCSI_CONSTANTS is not set
    # CONFIG_SCSI_LOGGING is not set
    # CONFIG_SCSI_SCAN_ASYNC is not set
    # SCSI Transports
    CONFIG_SCSI_SPI_ATTRS=m
    CONFIG_SCSI_FC_ATTRS=m
    # CONFIG_SCSI_FC_TGT_ATTRS is not set
    CONFIG_SCSI_ISCSI_ATTRS=m
    CONFIG_SCSI_SAS_ATTRS=m
    CONFIG_SCSI_SAS_LIBSAS=m
    CONFIG_SCSI_SAS_ATA=y
    CONFIG_SCSI_SAS_HOST_SMP=y
    CONFIG_SCSI_SRP_ATTRS=m
    CONFIG_SCSI_SRP_TGT_ATTRS=y
    CONFIG_SCSI_LOWLEVEL=y
    CONFIG_ISCSI_TCP=m
    CONFIG_ISCSI_BOOT_SYSFS=m
    CONFIG_SCSI_CXGB3_ISCSI=m
    CONFIG_SCSI_CXGB4_ISCSI=m
    CONFIG_SCSI_BNX2_ISCSI=m
    CONFIG_SCSI_BNX2X_FCOE=m
    CONFIG_BE2ISCSI=m
    CONFIG_BLK_DEV_3W_XXXX_RAID=m
    CONFIG_SCSI_HPSA=m
    CONFIG_SCSI_3W_9XXX=m
    CONFIG_SCSI_3W_SAS=m
    CONFIG_SCSI_7000FASST=m
    CONFIG_SCSI_ACARD=m
    CONFIG_SCSI_AHA152X=m
    CONFIG_SCSI_AHA1542=m
    CONFIG_SCSI_AACRAID=m
    CONFIG_SCSI_AIC7XXX=m
    CONFIG_AIC7XXX_CMDS_PER_DEVICE=32
    CONFIG_AIC7XXX_RESET_DELAY_MS=15000
    # CONFIG_AIC7XXX_DEBUG_ENABLE is not set
    CONFIG_AIC7XXX_DEBUG_MASK=0
    CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
    # CONFIG_SCSI_AIC7XXX_OLD is not set
    CONFIG_SCSI_AIC79XX=m
    CONFIG_AIC79XX_CMDS_PER_DEVICE=32
    CONFIG_AIC79XX_RESET_DELAY_MS=15000
    # CONFIG_AIC79XX_DEBUG_ENABLE is not set
    CONFIG_AIC79XX_DEBUG_MASK=0
    CONFIG_AIC79XX_REG_PRETTY_PRINT=y
    CONFIG_SCSI_AIC94XX=m
    # CONFIG_AIC94XX_DEBUG is not set
    CONFIG_SCSI_MVSAS=m
    # CONFIG_SCSI_MVSAS_DEBUG is not set
    CONFIG_SCSI_MVSAS_TASKLET=y
    CONFIG_SCSI_MVUMI=m
    CONFIG_SCSI_DPT_I2O=m
    CONFIG_SCSI_ADVANSYS=m
    CONFIG_SCSI_IN2000=m
    CONFIG_SCSI_ARCMSR=m
    CONFIG_MEGARAID_NEWGEN=y
    CONFIG_MEGARAID_MM=m
    CONFIG_MEGARAID_MAILBOX=m
    CONFIG_MEGARAID_LEGACY=m
    CONFIG_MEGARAID_SAS=m
    CONFIG_SCSI_MPT2SAS=m
    CONFIG_SCSI_MPT2SAS_MAX_SGE=128
    # CONFIG_SCSI_MPT2SAS_LOGGING is not set
    CONFIG_SCSI_MPT3SAS=m
    CONFIG_SCSI_MPT3SAS_MAX_SGE=128
    CONFIG_SCSI_MPT3SAS_LOGGING=y
    CONFIG_SCSI_UFSHCD=m
    CONFIG_SCSI_UFSHCD_PCI=m
    CONFIG_SCSI_HPTIOP=m
    CONFIG_SCSI_BUSLOGIC=m
    # CONFIG_SCSI_FLASHPOINT is not set
    CONFIG_VMWARE_PVSCSI=m
    CONFIG_HYPERV_STORAGE=m
    CONFIG_LIBFC=m
    CONFIG_LIBFCOE=m
    CONFIG_FCOE=m
    CONFIG_FCOE_FNIC=m
    CONFIG_SCSI_DMX3191D=m
    CONFIG_SCSI_DTC3280=m
    CONFIG_SCSI_EATA=m
    # CONFIG_SCSI_EATA_TAGGED_QUEUE is not set
    # CONFIG_SCSI_EATA_LINKED_COMMANDS is not set
    CONFIG_SCSI_EATA_MAX_TAGS=16
    CONFIG_SCSI_FUTURE_DOMAIN=m
    CONFIG_SCSI_GDTH=m
    CONFIG_SCSI_ISCI=m
    CONFIG_SCSI_GENERIC_NCR5380=m
    CONFIG_SCSI_GENERIC_NCR5380_MMIO=m
    CONFIG_SCSI_GENERIC_NCR53C400=y
    CONFIG_SCSI_IPS=m
    CONFIG_SCSI_INITIO=m
    CONFIG_SCSI_INIA100=m
    CONFIG_SCSI_PPA=m
    CONFIG_SCSI_IMM=m
    # CONFIG_SCSI_IZIP_EPP16 is not set
    # CONFIG_SCSI_IZIP_SLOW_CTR is not set
    CONFIG_SCSI_NCR53C406A=m
    CONFIG_SCSI_STEX=m
    CONFIG_SCSI_SYM53C8XX_2=m
    CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1
    CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
    CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
    CONFIG_SCSI_SYM53C8XX_MMIO=y
    CONFIG_SCSI_IPR=m
    # CONFIG_SCSI_IPR_TRACE is not set
    # CONFIG_SCSI_IPR_DUMP is not set
    CONFIG_SCSI_PAS16=m
    CONFIG_SCSI_QLOGIC_FAS=m
    CONFIG_SCSI_QLOGIC_1280=m
    CONFIG_SCSI_QLA_FC=m
    CONFIG_TCM_QLA2XXX=m
    CONFIG_SCSI_QLA_ISCSI=m
    CONFIG_SCSI_LPFC=m
    # CONFIG_SCSI_LPFC_DEBUG_FS is not set
    CONFIG_SCSI_SYM53C416=m
    CONFIG_SCSI_DC395x=m
    CONFIG_SCSI_DC390T=m
    CONFIG_SCSI_T128=m
    CONFIG_SCSI_U14_34F=m
    # CONFIG_SCSI_U14_34F_TAGGED_QUEUE is not set
    # CONFIG_SCSI_U14_34F_LINKED_COMMANDS is not set
    CONFIG_SCSI_U14_34F_MAX_TAGS=8
    CONFIG_SCSI_ULTRASTOR=m
    CONFIG_SCSI_NSP32=m
    # CONFIG_SCSI_DEBUG is not set
    CONFIG_SCSI_PMCRAID=m
    CONFIG_SCSI_PM8001=m
    CONFIG_SCSI_SRP=m
    CONFIG_SCSI_BFA_FC=m
    CONFIG_SCSI_VIRTIO=m
    CONFIG_SCSI_CHELSIO_FCOE=m
    CONFIG_SCSI_LOWLEVEL_PCMCIA=y
    CONFIG_PCMCIA_AHA152X=m
    CONFIG_PCMCIA_FDOMAIN=m
    CONFIG_PCMCIA_NINJA_SCSI=m
    CONFIG_PCMCIA_QLOGIC=m
    CONFIG_PCMCIA_SYM53C500=m
    CONFIG_SCSI_DH=m
    CONFIG_SCSI_DH_RDAC=m
    CONFIG_SCSI_DH_HP_SW=m
    CONFIG_SCSI_DH_EMC=m
    CONFIG_SCSI_DH_ALUA=m
    CONFIG_SCSI_OSD_INITIATOR=m
    CONFIG_SCSI_OSD_ULD=m
    CONFIG_SCSI_OSD_DPRINT_SENSE=0
    # CONFIG_SCSI_OSD_DEBUG is not set
    CONFIG_ATA=m
    # CONFIG_ATA_NONSTANDARD is not set
    CONFIG_ATA_VERBOSE_ERROR=y
    CONFIG_ATA_ACPI=y
    CONFIG_SATA_ZPODD=y
    CONFIG_SATA_PMP=y
    # Controllers with non-SFF native interface
    CONFIG_SATA_AHCI=m
    CONFIG_SATA_AHCI_PLATFORM=m
    CONFIG_SATA_INIC162X=m
    CONFIG_SATA_ACARD_AHCI=m
    CONFIG_SATA_SIL24=m
    CONFIG_ATA_SFF=y
    # SFF controllers with custom DMA interface
    CONFIG_PDC_ADMA=m
    CONFIG_SATA_QSTOR=m
    CONFIG_SATA_SX4=m
    CONFIG_ATA_BMDMA=y
    # SATA SFF controllers with BMDMA
    CONFIG_ATA_PIIX=m
    CONFIG_SATA_HIGHBANK=m
    CONFIG_SATA_MV=m
    CONFIG_SATA_NV=m
    CONFIG_SATA_PROMISE=m
    CONFIG_SATA_SIL=m
    CONFIG_SATA_SIS=m
    CONFIG_SATA_SVW=m
    CONFIG_SATA_ULI=m
    CONFIG_SATA_VIA=m
    CONFIG_SATA_VITESSE=m
    # PATA SFF controllers with BMDMA
    CONFIG_PATA_ALI=m
    CONFIG_PATA_AMD=m
    CONFIG_PATA_ARASAN_CF=m
    CONFIG_PATA_ARTOP=m
    CONFIG_PATA_ATIIXP=m
    CONFIG_PATA_ATP867X=m
    CONFIG_PATA_CMD64X=m
    CONFIG_PATA_CS5520=m
    CONFIG_PATA_CS5530=m
    CONFIG_PATA_CS5535=m
    CONFIG_PATA_CS5536=m
    CONFIG_PATA_CYPRESS=m
    CONFIG_PATA_EFAR=m
    CONFIG_PATA_HPT366=m
    CONFIG_PATA_HPT37X=m
    CONFIG_PATA_HPT3X2N=m
    CONFIG_PATA_HPT3X3=m
    # CONFIG_PATA_HPT3X3_DMA is not set
    CONFIG_PATA_IT8213=m
    CONFIG_PATA_IT821X=m
    CONFIG_PATA_JMICRON=m
    CONFIG_PATA_MARVELL=m
    CONFIG_PATA_NETCELL=m
    CONFIG_PATA_NINJA32=m
    CONFIG_PATA_NS87415=m
    CONFIG_PATA_OLDPIIX=m
    CONFIG_PATA_OPTIDMA=m
    CONFIG_PATA_PDC2027X=m
    CONFIG_PATA_PDC_OLD=m
    CONFIG_PATA_RADISYS=m
    CONFIG_PATA_RDC=m
    CONFIG_PATA_SC1200=m
    CONFIG_PATA_SCH=m
    CONFIG_PATA_SERVERWORKS=m
    CONFIG_PATA_SIL680=m
    CONFIG_PATA_SIS=m
    CONFIG_PATA_TOSHIBA=m
    CONFIG_PATA_TRIFLEX=m
    CONFIG_PATA_VIA=m
    CONFIG_PATA_WINBOND=m
    # PIO-only SFF controllers
    CONFIG_PATA_CMD640_PCI=m
    CONFIG_PATA_ISAPNP=m
    CONFIG_PAT

    xf86-video-intel?  I tried putting that in /etc/default/grub 
    $ cat /etc/default/grub
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR="Arch"
    GRUB_CMDLINE_LINUX_DEFAULT="i915.modeset=1"
    GRUB_CMDLINE_LINUX=""
    # Preload both GPT and MBR modules so that they are not missed
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    GRUB_HIDDEN_TIMEOUT=0
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    # Uncomment to use basic console
    GRUB_TERMINAL_INPUT=console
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL_OUTPUT=console
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    GRUB_GFXMODE=auto
    # Uncomment to allow the kernel use the same resolution used by grub
    GRUB_GFXPAYLOAD_LINUX=keep
    # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
    # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
    #GRUB_DISABLE_LINUX_UUID=true
    # Uncomment to disable generation of recovery mode menu entries
    GRUB_DISABLE_RECOVERY=true
    # Uncomment and set to the desired menu colors. Used by normal and wallpaper
    # modes only. Entries specified as foreground/background.
    #GRUB_COLOR_NORMAL="light-blue/black"
    #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
    # Uncomment one of them for the gfx desired, a image background or a gfxtheme
    #GRUB_BACKGROUND="/path/to/wallpaper"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    #GRUB_SAVEDEFAULT="true"
    according to the link I need to add it to /etc/mkinitcpio.conf
    I added it and got this error during build::
    ==> ERROR: module not found: `i915.modeset=1'
    so I reverted it back to i915 and I am wondering about the warnings during build
    ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    ==> Starting build: 3.9.9-1-ARCH
    -> Running build hook: [base]
    -> Running build hook: [udev]
    -> Running build hook: [autodetect]
    -> Running build hook: [modconf]
    -> Running build hook: [block]
    -> Running build hook: [resume]
    -> Running build hook: [filesystems]
    -> Running build hook: [keyboard]
    -> Running build hook: [fsck]
    ==> Generating module dependencies
    ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    ==> Image generation successful
    ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    ==> Starting build: 3.9.9-1-ARCH
    -> Running build hook: [base]
    -> Running build hook: [udev]
    -> Running build hook: [modconf]
    -> Running build hook: [block]
    ==> WARNING: Possibly missing firmware for module: aic94xx
    ==> WARNING: Possibly missing firmware for module: bfa
    -> Running build hook: [resume]
    -> Running build hook: [filesystems]
    -> Running build hook: [keyboard]
    -> Running build hook: [fsck]
    ==> Generating module dependencies
    ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    ==> Image generation successful
    Last edited by Areckx (2013-07-10 20:37:39)

Maybe you are looking for

  • HT5616 How can you see a list of devices registered to use our apple ID for FaceTime and other services?

    Sometimes I will get a notification that x device is using my apple ID for FaceTime (or other services). Sometimes it is just generic Mac Book Pro. His can I see which devices are using my ID (and can you see more details than just the name)?

  • JTable:  Setting tab order

    Lets say that I have a table with ten rows and five columns. The default tab order tabs through each cell, left to right, top to bottom. How do I EXCLUDE the cells of the two leftmost columns from the tab order? Many thanks in advance, especially for

  • Fetch the data from two tables

    hell all i want to fetch the data from two tables, one is from internal table and another one is data base table. what syntax i have to use either FOR ALL ENTRIES or INNER JOIN?

  • Shared HP printer shows up twice - wierd

    Not sure if this is a Leopard or a Tiger question but I have an HP CP1700 printer attached via USB to an Intel iMac/Os 10.5.1 and I have set it to share. When I open Print & Fax on my TiBook/Os 10.4.11 which s ethernet connected, via a router, to the

  • Mavericks start uo problem

    Downloaded OS X Mavericks but upon opening computer all I get is a grey screen with an icon of a folder with a question mark on it. Help