├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── NEWS ├── README.md ├── STYLE.md ├── THOUGHTS.txt ├── boot.expect ├── bordervm-configuration.nix ├── bordervm.conf-example.nix ├── ci.nix ├── default.nix ├── devices ├── belkin-rt3200 │ ├── default.nix │ └── pstore-pmsg.dtsi ├── families │ └── qemu.nix ├── gl-ar750 │ ├── default.nix │ └── pstore-ramoops.dtsi ├── gl-mt300a │ └── default.nix ├── gl-mt300n-v2 │ └── default.nix ├── openwrt-one │ └── default.nix ├── qemu-aarch64 │ └── default.nix ├── qemu-armv7l │ └── default.nix ├── qemu │ └── default.nix ├── tp-archer-ax23 │ └── default.nix ├── turris-omnia │ └── default.nix └── zyxel-nwa50ax │ ├── a_image │ └── mt7621_zyxel_nwa-ax-for-ab.dtsi │ ├── b_image │ └── mt7621_zyxel_nwa-ax-for-ab.dtsi │ ├── default.nix │ └── mt7621_zyxel_nwa50ax.dtsi ├── doc.nix ├── doc ├── Makefile ├── _static │ └── logo.svg ├── admin.adoc ├── adr │ ├── README │ └── module-system.rst ├── code-of-conduct.adoc ├── conf.py ├── configuration.adoc ├── development.adoc ├── extract-options.nix ├── hardware.nix ├── index.adoc ├── installation.adoc ├── intro.adoc ├── modules.adoc ├── outputs.adoc ├── parse-options-outputs.fnl ├── parse-options.fnl └── tutorial.adoc ├── examples ├── README ├── arhcive.nix ├── demo.nix ├── extneder.nix ├── hello-from-mt300.nix ├── hello-from-qemu.nix ├── module-https-proxy.nix ├── nwa50ax-ap.nix ├── recovery.nix ├── rotuer-secrets.example.nix ├── rotuer.nix ├── router-with-l2tp.nix ├── secrets.json └── turris.nix ├── modules ├── all-modules.nix ├── arch │ ├── aarch64.nix │ ├── arm.nix │ ├── mips.nix │ ├── mipseb.nix │ └── mipsel.nix ├── base.nix ├── bridge │ ├── default.nix │ ├── members.nix │ └── primary.nix ├── busybox.nix ├── dhcp6c │ ├── acquire-delegated-prefix.fnl │ ├── acquire-delegated-prefix.nix │ ├── acquire-wan-address-test.fnl │ ├── acquire-wan-address.fnl │ ├── acquire-wan-address.nix │ ├── address.nix │ ├── client.nix │ ├── default.nix │ └── prefix.nix ├── dnsmasq │ ├── default.nix │ └── service.nix ├── firewall │ ├── default-rules.nix │ ├── default.nix │ ├── ifwatch.fnl │ └── service.nix ├── hardware.nix ├── health-check │ ├── default.nix │ └── service.nix ├── hostapd │ ├── default.nix │ └── service.nix ├── hostname.nix ├── ifwait │ ├── default.nix │ └── ifwait.nix ├── kernel │ └── default.nix ├── klogd.nix ├── logging.nix ├── mdevd.nix ├── mount │ ├── default.nix │ └── service.nix ├── network │ ├── address.nix │ ├── default.nix │ ├── dhcpc.nix │ ├── forward.nix │ ├── link.nix │ └── route.nix ├── ntp │ ├── default.nix │ └── service.nix ├── outputs.nix ├── outputs │ ├── boot-extlinux.nix │ ├── boot-fit.nix │ ├── btrfs.nix │ ├── ext4fs.nix │ ├── initramfs.nix │ ├── jffs2.nix │ ├── mbrimage.nix │ ├── mtdimage.nix │ ├── squashfs.nix │ ├── system-configuration.nix │ ├── tftpboot.nix │ ├── tplink-safeloader.nix │ ├── ubifs.nix │ ├── ubimage.nix │ ├── ubivolume.nix │ ├── uimage.nix │ ├── updater │ │ ├── default.nix │ │ └── update.sh │ ├── vmroot.nix │ └── zyxel-nwa-fit.nix ├── ppp │ ├── common.nix │ ├── default.nix │ ├── l2tp.nix │ └── pppoe.nix ├── profiles │ ├── gateway.nix │ └── wap.nix ├── ramdisk.nix ├── round-robin │ ├── default.nix │ └── service.nix ├── s6 │ ├── default.nix │ └── scripts │ │ ├── rc.init │ │ ├── rc.shutdown │ │ ├── rc.shutdown.final │ │ └── runlevel ├── schnapps │ └── default.nix ├── secrets │ ├── default.nix │ ├── outboard.nix │ ├── subscriber.nix │ └── tang.nix ├── ssh │ ├── default.nix │ └── ssh.nix ├── tls-certificate │ ├── certifix-client.nix │ └── default.nix ├── uevent-rule │ ├── default.nix │ └── rule.nix ├── usb.nix ├── users.nix ├── vlan │ ├── default.nix │ └── service.nix ├── watchdog │ ├── default.nix │ ├── gaspode.sh │ └── watchdog.nix ├── wlan.nix ├── wwan │ ├── default.nix │ └── huawei-e3372.nix └── zyxel-dual-image │ ├── default.nix │ └── service.nix ├── nat.nft ├── overlay.nix ├── pkgs ├── anoia │ ├── Makefile │ ├── README │ ├── assert.fnl │ ├── default.nix │ ├── example-output │ │ └── .outputs │ │ │ ├── addresses │ │ │ ├── 1 │ │ │ │ └── attribute │ │ │ ├── 3 │ │ │ │ └── attribute │ │ │ ├── 5 │ │ │ │ └── attribute │ │ │ └── 6 │ │ │ │ └── attribute │ │ │ ├── array │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ ├── 3 │ │ │ └── 4 │ │ │ ├── colours │ │ │ ├── black │ │ │ ├── blue │ │ │ ├── green │ │ │ └── red │ │ │ └── name │ ├── fs.fnl │ ├── init.fnl │ ├── net │ │ └── constants.c │ ├── nl.fnl │ ├── process.fnl │ ├── run-tests.fnl │ ├── svc.fnl │ ├── test-nl.fnl │ ├── test-svc.fnl │ └── test.fnl ├── certifix-client │ ├── certifix-client.fnl │ ├── default.nix │ └── main.fnl ├── default.nix ├── devout │ ├── default.nix │ ├── devout.fnl │ ├── fixtures │ │ └── sys │ │ │ └── devices │ │ │ └── pci0000:00 │ │ │ └── 0000:00:14.0 │ │ │ ├── ari_enabled │ │ │ ├── broken_parity_status │ │ │ ├── class │ │ │ ├── config │ │ │ ├── consistent_dma_mask_bits │ │ │ ├── d3cold_allowed │ │ │ ├── device │ │ │ ├── dma_mask_bits │ │ │ ├── driver_override │ │ │ ├── enable │ │ │ ├── intel_xhci_usb_sw │ │ │ ├── driver_override │ │ │ ├── modalias │ │ │ ├── power │ │ │ │ ├── async │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ ├── control │ │ │ │ ├── runtime_active_kids │ │ │ │ ├── runtime_active_time │ │ │ │ ├── runtime_enabled │ │ │ │ ├── runtime_status │ │ │ │ ├── runtime_suspended_time │ │ │ │ └── runtime_usage │ │ │ ├── uevent │ │ │ └── usb_role │ │ │ │ └── intel_xhci_usb_sw-role-switch │ │ │ │ ├── power │ │ │ │ ├── async │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ ├── control │ │ │ │ ├── runtime_active_kids │ │ │ │ ├── runtime_active_time │ │ │ │ ├── runtime_enabled │ │ │ │ ├── runtime_status │ │ │ │ ├── runtime_suspended_time │ │ │ │ └── runtime_usage │ │ │ │ ├── role │ │ │ │ ├── uevent │ │ │ │ └── waiting_for_supplier │ │ │ ├── irq │ │ │ ├── local_cpulist │ │ │ ├── local_cpus │ │ │ ├── modalias │ │ │ ├── msi_bus │ │ │ ├── msi_irqs │ │ │ └── 131 │ │ │ ├── numa_node │ │ │ ├── pools │ │ │ ├── power │ │ │ ├── async │ │ │ ├── autosuspend_delay_ms │ │ │ ├── control │ │ │ ├── runtime_active_kids │ │ │ ├── runtime_active_time │ │ │ ├── runtime_enabled │ │ │ ├── runtime_status │ │ │ ├── runtime_suspended_time │ │ │ ├── runtime_usage │ │ │ ├── wakeup │ │ │ ├── wakeup_abort_count │ │ │ ├── wakeup_active │ │ │ ├── wakeup_active_count │ │ │ ├── wakeup_count │ │ │ ├── wakeup_expire_count │ │ │ ├── wakeup_last_time_ms │ │ │ ├── wakeup_max_time_ms │ │ │ └── wakeup_total_time_ms │ │ │ ├── power_state │ │ │ ├── resource │ │ │ ├── revision │ │ │ ├── subsystem_device │ │ │ ├── subsystem_vendor │ │ │ ├── uevent │ │ │ ├── usb1 │ │ │ ├── 1-0:1.0 │ │ │ │ ├── authorized │ │ │ │ ├── bAlternateSetting │ │ │ │ ├── bInterfaceClass │ │ │ │ ├── bInterfaceNumber │ │ │ │ ├── bInterfaceProtocol │ │ │ │ ├── bInterfaceSubClass │ │ │ │ ├── bNumEndpoints │ │ │ │ ├── ep_81 │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ ├── bInterval │ │ │ │ │ ├── bLength │ │ │ │ │ ├── bmAttributes │ │ │ │ │ ├── direction │ │ │ │ │ ├── interval │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── type │ │ │ │ │ ├── uevent │ │ │ │ │ └── wMaxPacketSize │ │ │ │ ├── modalias │ │ │ │ ├── power │ │ │ │ │ ├── async │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ ├── runtime_status │ │ │ │ │ └── runtime_usage │ │ │ │ ├── supports_autosuspend │ │ │ │ ├── uevent │ │ │ │ ├── usb1-port1 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb1-port10 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb1-port11 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb1-port12 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb1-port2 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb1-port3 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb1-port4 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb1-port5 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb1-port6 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb1-port7 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb1-port8 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ │ └── usb1-port9 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ ├── dock │ │ │ │ │ ├── horizontal_position │ │ │ │ │ ├── lid │ │ │ │ │ ├── panel │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ ├── async │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ ├── control │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ ├── runtime_status │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ └── waiting_for_supplier │ │ │ ├── 1-2 │ │ │ │ ├── 1-2:1.12 │ │ │ │ │ ├── authorized │ │ │ │ │ ├── bAlternateSetting │ │ │ │ │ ├── bInterfaceClass │ │ │ │ │ ├── bInterfaceNumber │ │ │ │ │ ├── bInterfaceProtocol │ │ │ │ │ ├── bInterfaceSubClass │ │ │ │ │ ├── bNumEndpoints │ │ │ │ │ ├── ep_82 │ │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ │ ├── bInterval │ │ │ │ │ │ ├── bLength │ │ │ │ │ │ ├── bmAttributes │ │ │ │ │ │ ├── direction │ │ │ │ │ │ ├── interval │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ ├── type │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ └── wMaxPacketSize │ │ │ │ │ ├── iad_bFirstInterface │ │ │ │ │ ├── iad_bFunctionClass │ │ │ │ │ ├── iad_bFunctionProtocol │ │ │ │ │ ├── iad_bFunctionSubClass │ │ │ │ │ ├── iad_bInterfaceCount │ │ │ │ │ ├── modalias │ │ │ │ │ ├── net │ │ │ │ │ │ └── wwp0s20f0u2i12 │ │ │ │ │ │ │ ├── addr_assign_type │ │ │ │ │ │ │ ├── addr_len │ │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ ├── broadcast │ │ │ │ │ │ │ ├── carrier │ │ │ │ │ │ │ ├── carrier_changes │ │ │ │ │ │ │ ├── carrier_down_count │ │ │ │ │ │ │ ├── carrier_up_count │ │ │ │ │ │ │ ├── cdc_ncm │ │ │ │ │ │ │ ├── bmNtbFormatsSupported │ │ │ │ │ │ │ ├── dwNtbInMaxSize │ │ │ │ │ │ │ ├── dwNtbOutMaxSize │ │ │ │ │ │ │ ├── min_tx_pkt │ │ │ │ │ │ │ ├── ndp_to_end │ │ │ │ │ │ │ ├── rx_max │ │ │ │ │ │ │ ├── tx_max │ │ │ │ │ │ │ ├── tx_timer_usecs │ │ │ │ │ │ │ ├── wNdpInAlignment │ │ │ │ │ │ │ ├── wNdpInDivisor │ │ │ │ │ │ │ ├── wNdpInPayloadRemainder │ │ │ │ │ │ │ ├── wNdpOutAlignment │ │ │ │ │ │ │ ├── wNdpOutDivisor │ │ │ │ │ │ │ ├── wNdpOutPayloadRemainder │ │ │ │ │ │ │ └── wNtbOutMaxDatagrams │ │ │ │ │ │ │ ├── dev_id │ │ │ │ │ │ │ ├── dev_port │ │ │ │ │ │ │ ├── dormant │ │ │ │ │ │ │ ├── duplex │ │ │ │ │ │ │ ├── flags │ │ │ │ │ │ │ ├── gro_flush_timeout │ │ │ │ │ │ │ ├── ifalias │ │ │ │ │ │ │ ├── ifindex │ │ │ │ │ │ │ ├── iflink │ │ │ │ │ │ │ ├── link_mode │ │ │ │ │ │ │ ├── mtu │ │ │ │ │ │ │ ├── name_assign_type │ │ │ │ │ │ │ ├── napi_defer_hard_irqs │ │ │ │ │ │ │ ├── netdev_group │ │ │ │ │ │ │ ├── operstate │ │ │ │ │ │ │ ├── phys_port_id │ │ │ │ │ │ │ ├── phys_port_name │ │ │ │ │ │ │ ├── phys_switch_id │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ │ ├── proto_down │ │ │ │ │ │ │ ├── queues │ │ │ │ │ │ │ ├── rx-0 │ │ │ │ │ │ │ │ ├── rps_cpus │ │ │ │ │ │ │ │ └── rps_flow_cnt │ │ │ │ │ │ │ └── tx-0 │ │ │ │ │ │ │ │ ├── byte_queue_limits │ │ │ │ │ │ │ │ ├── hold_time │ │ │ │ │ │ │ │ ├── inflight │ │ │ │ │ │ │ │ ├── limit │ │ │ │ │ │ │ │ ├── limit_max │ │ │ │ │ │ │ │ └── limit_min │ │ │ │ │ │ │ │ ├── traffic_class │ │ │ │ │ │ │ │ ├── tx_maxrate │ │ │ │ │ │ │ │ ├── tx_timeout │ │ │ │ │ │ │ │ ├── xps_cpus │ │ │ │ │ │ │ │ └── xps_rxqs │ │ │ │ │ │ │ ├── speed │ │ │ │ │ │ │ ├── statistics │ │ │ │ │ │ │ ├── collisions │ │ │ │ │ │ │ ├── multicast │ │ │ │ │ │ │ ├── rx_bytes │ │ │ │ │ │ │ ├── rx_compressed │ │ │ │ │ │ │ ├── rx_crc_errors │ │ │ │ │ │ │ ├── rx_dropped │ │ │ │ │ │ │ ├── rx_errors │ │ │ │ │ │ │ ├── rx_fifo_errors │ │ │ │ │ │ │ ├── rx_frame_errors │ │ │ │ │ │ │ ├── rx_length_errors │ │ │ │ │ │ │ ├── rx_missed_errors │ │ │ │ │ │ │ ├── rx_nohandler │ │ │ │ │ │ │ ├── rx_over_errors │ │ │ │ │ │ │ ├── rx_packets │ │ │ │ │ │ │ ├── tx_aborted_errors │ │ │ │ │ │ │ ├── tx_bytes │ │ │ │ │ │ │ ├── tx_carrier_errors │ │ │ │ │ │ │ ├── tx_compressed │ │ │ │ │ │ │ ├── tx_dropped │ │ │ │ │ │ │ ├── tx_errors │ │ │ │ │ │ │ ├── tx_fifo_errors │ │ │ │ │ │ │ ├── tx_heartbeat_errors │ │ │ │ │ │ │ ├── tx_packets │ │ │ │ │ │ │ └── tx_window_errors │ │ │ │ │ │ │ ├── testing │ │ │ │ │ │ │ ├── threaded │ │ │ │ │ │ │ ├── tx_queue_len │ │ │ │ │ │ │ ├── type │ │ │ │ │ │ │ └── uevent │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── supports_autosuspend │ │ │ │ │ ├── uevent │ │ │ │ │ └── usbmisc │ │ │ │ │ │ └── cdc-wdm0 │ │ │ │ │ │ ├── dev │ │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ └── uevent │ │ │ │ ├── 1-2:1.13 │ │ │ │ │ ├── authorized │ │ │ │ │ ├── bAlternateSetting │ │ │ │ │ ├── bInterfaceClass │ │ │ │ │ ├── bInterfaceNumber │ │ │ │ │ ├── bInterfaceProtocol │ │ │ │ │ ├── bInterfaceSubClass │ │ │ │ │ ├── bNumEndpoints │ │ │ │ │ ├── ep_01 │ │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ │ ├── bInterval │ │ │ │ │ │ ├── bLength │ │ │ │ │ │ ├── bmAttributes │ │ │ │ │ │ ├── direction │ │ │ │ │ │ ├── interval │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ ├── type │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ └── wMaxPacketSize │ │ │ │ │ ├── ep_81 │ │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ │ ├── bInterval │ │ │ │ │ │ ├── bLength │ │ │ │ │ │ ├── bmAttributes │ │ │ │ │ │ ├── direction │ │ │ │ │ │ ├── interval │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ ├── type │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ └── wMaxPacketSize │ │ │ │ │ ├── iad_bFirstInterface │ │ │ │ │ ├── iad_bFunctionClass │ │ │ │ │ ├── iad_bFunctionProtocol │ │ │ │ │ ├── iad_bFunctionSubClass │ │ │ │ │ ├── iad_bInterfaceCount │ │ │ │ │ ├── modalias │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── supports_autosuspend │ │ │ │ │ └── uevent │ │ │ │ ├── authorized │ │ │ │ ├── avoid_reset_quirk │ │ │ │ ├── bConfigurationValue │ │ │ │ ├── bDeviceClass │ │ │ │ ├── bDeviceProtocol │ │ │ │ ├── bDeviceSubClass │ │ │ │ ├── bMaxPacketSize0 │ │ │ │ ├── bMaxPower │ │ │ │ ├── bNumConfigurations │ │ │ │ ├── bNumInterfaces │ │ │ │ ├── bcdDevice │ │ │ │ ├── bmAttributes │ │ │ │ ├── busnum │ │ │ │ ├── configuration │ │ │ │ ├── descriptors │ │ │ │ ├── dev │ │ │ │ ├── devnum │ │ │ │ ├── devpath │ │ │ │ ├── ep_00 │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ ├── bInterval │ │ │ │ │ ├── bLength │ │ │ │ │ ├── bmAttributes │ │ │ │ │ ├── direction │ │ │ │ │ ├── interval │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── type │ │ │ │ │ ├── uevent │ │ │ │ │ └── wMaxPacketSize │ │ │ │ ├── idProduct │ │ │ │ ├── idVendor │ │ │ │ ├── ltm_capable │ │ │ │ ├── manufacturer │ │ │ │ ├── maxchild │ │ │ │ ├── physical_location │ │ │ │ │ ├── dock │ │ │ │ │ ├── horizontal_position │ │ │ │ │ ├── lid │ │ │ │ │ ├── panel │ │ │ │ │ └── vertical_position │ │ │ │ ├── power │ │ │ │ │ ├── active_duration │ │ │ │ │ ├── async │ │ │ │ │ ├── autosuspend │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ ├── connected_duration │ │ │ │ │ ├── control │ │ │ │ │ ├── level │ │ │ │ │ ├── persist │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ ├── runtime_status │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ ├── runtime_usage │ │ │ │ │ ├── wakeup │ │ │ │ │ ├── wakeup_abort_count │ │ │ │ │ ├── wakeup_active │ │ │ │ │ ├── wakeup_active_count │ │ │ │ │ ├── wakeup_count │ │ │ │ │ ├── wakeup_expire_count │ │ │ │ │ ├── wakeup_last_time_ms │ │ │ │ │ ├── wakeup_max_time_ms │ │ │ │ │ └── wakeup_total_time_ms │ │ │ │ ├── product │ │ │ │ ├── quirks │ │ │ │ ├── removable │ │ │ │ ├── rx_lanes │ │ │ │ ├── serial │ │ │ │ ├── speed │ │ │ │ ├── tx_lanes │ │ │ │ ├── uevent │ │ │ │ ├── urbnum │ │ │ │ └── version │ │ │ ├── 1-7 │ │ │ │ ├── 1-7:1.0 │ │ │ │ │ ├── authorized │ │ │ │ │ ├── bAlternateSetting │ │ │ │ │ ├── bInterfaceClass │ │ │ │ │ ├── bInterfaceNumber │ │ │ │ │ ├── bInterfaceProtocol │ │ │ │ │ ├── bInterfaceSubClass │ │ │ │ │ ├── bNumEndpoints │ │ │ │ │ ├── bluetooth │ │ │ │ │ │ └── hci0 │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ │ ├── rfkill400 │ │ │ │ │ │ │ ├── hard │ │ │ │ │ │ │ ├── hard_block_reasons │ │ │ │ │ │ │ ├── index │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ ├── persistent │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ │ ├── soft │ │ │ │ │ │ │ ├── state │ │ │ │ │ │ │ ├── type │ │ │ │ │ │ │ └── uevent │ │ │ │ │ │ │ └── uevent │ │ │ │ │ ├── ep_02 │ │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ │ ├── bInterval │ │ │ │ │ │ ├── bLength │ │ │ │ │ │ ├── bmAttributes │ │ │ │ │ │ ├── direction │ │ │ │ │ │ ├── interval │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ ├── type │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ └── wMaxPacketSize │ │ │ │ │ ├── ep_81 │ │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ │ ├── bInterval │ │ │ │ │ │ ├── bLength │ │ │ │ │ │ ├── bmAttributes │ │ │ │ │ │ ├── direction │ │ │ │ │ │ ├── interval │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ ├── type │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ └── wMaxPacketSize │ │ │ │ │ ├── ep_82 │ │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ │ ├── bInterval │ │ │ │ │ │ ├── bLength │ │ │ │ │ │ ├── bmAttributes │ │ │ │ │ │ ├── direction │ │ │ │ │ │ ├── interval │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ ├── type │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ └── wMaxPacketSize │ │ │ │ │ ├── modalias │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── supports_autosuspend │ │ │ │ │ └── uevent │ │ │ │ ├── 1-7:1.1 │ │ │ │ │ ├── authorized │ │ │ │ │ ├── bAlternateSetting │ │ │ │ │ ├── bInterfaceClass │ │ │ │ │ ├── bInterfaceNumber │ │ │ │ │ ├── bInterfaceProtocol │ │ │ │ │ ├── bInterfaceSubClass │ │ │ │ │ ├── bNumEndpoints │ │ │ │ │ ├── ep_03 │ │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ │ ├── bInterval │ │ │ │ │ │ ├── bLength │ │ │ │ │ │ ├── bmAttributes │ │ │ │ │ │ ├── direction │ │ │ │ │ │ ├── interval │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ ├── type │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ └── wMaxPacketSize │ │ │ │ │ ├── ep_83 │ │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ │ ├── bInterval │ │ │ │ │ │ ├── bLength │ │ │ │ │ │ ├── bmAttributes │ │ │ │ │ │ ├── direction │ │ │ │ │ │ ├── interval │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ ├── type │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ └── wMaxPacketSize │ │ │ │ │ ├── modalias │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── supports_autosuspend │ │ │ │ │ └── uevent │ │ │ │ ├── authorized │ │ │ │ ├── avoid_reset_quirk │ │ │ │ ├── bConfigurationValue │ │ │ │ ├── bDeviceClass │ │ │ │ ├── bDeviceProtocol │ │ │ │ ├── bDeviceSubClass │ │ │ │ ├── bMaxPacketSize0 │ │ │ │ ├── bMaxPower │ │ │ │ ├── bNumConfigurations │ │ │ │ ├── bNumInterfaces │ │ │ │ ├── bcdDevice │ │ │ │ ├── bmAttributes │ │ │ │ ├── busnum │ │ │ │ ├── configuration │ │ │ │ ├── descriptors │ │ │ │ ├── dev │ │ │ │ ├── devnum │ │ │ │ ├── devpath │ │ │ │ ├── ep_00 │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ ├── bInterval │ │ │ │ │ ├── bLength │ │ │ │ │ ├── bmAttributes │ │ │ │ │ ├── direction │ │ │ │ │ ├── interval │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── type │ │ │ │ │ ├── uevent │ │ │ │ │ └── wMaxPacketSize │ │ │ │ ├── idProduct │ │ │ │ ├── idVendor │ │ │ │ ├── ltm_capable │ │ │ │ ├── maxchild │ │ │ │ ├── physical_location │ │ │ │ │ ├── dock │ │ │ │ │ ├── horizontal_position │ │ │ │ │ ├── lid │ │ │ │ │ ├── panel │ │ │ │ │ └── vertical_position │ │ │ │ ├── power │ │ │ │ │ ├── active_duration │ │ │ │ │ ├── async │ │ │ │ │ ├── autosuspend │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ ├── connected_duration │ │ │ │ │ ├── control │ │ │ │ │ ├── level │ │ │ │ │ ├── persist │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ ├── runtime_status │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ ├── runtime_usage │ │ │ │ │ ├── wakeup │ │ │ │ │ ├── wakeup_abort_count │ │ │ │ │ ├── wakeup_active │ │ │ │ │ ├── wakeup_active_count │ │ │ │ │ ├── wakeup_count │ │ │ │ │ ├── wakeup_expire_count │ │ │ │ │ ├── wakeup_last_time_ms │ │ │ │ │ ├── wakeup_max_time_ms │ │ │ │ │ └── wakeup_total_time_ms │ │ │ │ ├── quirks │ │ │ │ ├── removable │ │ │ │ ├── rx_lanes │ │ │ │ ├── speed │ │ │ │ ├── tx_lanes │ │ │ │ ├── uevent │ │ │ │ ├── urbnum │ │ │ │ └── version │ │ │ ├── 1-8 │ │ │ │ ├── 1-8:1.0 │ │ │ │ │ ├── authorized │ │ │ │ │ ├── bAlternateSetting │ │ │ │ │ ├── bInterfaceClass │ │ │ │ │ ├── bInterfaceNumber │ │ │ │ │ ├── bInterfaceProtocol │ │ │ │ │ ├── bInterfaceSubClass │ │ │ │ │ ├── bNumEndpoints │ │ │ │ │ ├── ep_83 │ │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ │ ├── bInterval │ │ │ │ │ │ ├── bLength │ │ │ │ │ │ ├── bmAttributes │ │ │ │ │ │ ├── direction │ │ │ │ │ │ ├── interval │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ ├── type │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ └── wMaxPacketSize │ │ │ │ │ ├── iad_bFirstInterface │ │ │ │ │ ├── iad_bFunctionClass │ │ │ │ │ ├── iad_bFunctionProtocol │ │ │ │ │ ├── iad_bFunctionSubClass │ │ │ │ │ ├── iad_bInterfaceCount │ │ │ │ │ ├── input │ │ │ │ │ │ └── input7 │ │ │ │ │ │ │ ├── capabilities │ │ │ │ │ │ │ ├── abs │ │ │ │ │ │ │ ├── ev │ │ │ │ │ │ │ ├── ff │ │ │ │ │ │ │ ├── key │ │ │ │ │ │ │ ├── led │ │ │ │ │ │ │ ├── msc │ │ │ │ │ │ │ ├── rel │ │ │ │ │ │ │ ├── snd │ │ │ │ │ │ │ └── sw │ │ │ │ │ │ │ ├── event5 │ │ │ │ │ │ │ ├── dev │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ │ └── uevent │ │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ ├── bustype │ │ │ │ │ │ │ ├── product │ │ │ │ │ │ │ ├── vendor │ │ │ │ │ │ │ └── version │ │ │ │ │ │ │ ├── inhibited │ │ │ │ │ │ │ ├── modalias │ │ │ │ │ │ │ ├── name │ │ │ │ │ │ │ ├── phys │ │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ │ ├── properties │ │ │ │ │ │ │ ├── uevent │ │ │ │ │ │ │ └── uniq │ │ │ │ │ ├── interface │ │ │ │ │ ├── media0 │ │ │ │ │ │ ├── dev │ │ │ │ │ │ ├── model │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ └── uevent │ │ │ │ │ ├── modalias │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── supports_autosuspend │ │ │ │ │ ├── uevent │ │ │ │ │ └── video4linux │ │ │ │ │ │ ├── video0 │ │ │ │ │ │ ├── dev │ │ │ │ │ │ ├── dev_debug │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── name │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── async │ │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ │ ├── control │ │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ └── uevent │ │ │ │ │ │ └── video1 │ │ │ │ │ │ ├── dev │ │ │ │ │ │ ├── dev_debug │ │ │ │ │ │ ├── index │ │ │ │ │ │ ├── name │ │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ │ └── uevent │ │ │ │ ├── 1-8:1.1 │ │ │ │ │ ├── authorized │ │ │ │ │ ├── bAlternateSetting │ │ │ │ │ ├── bInterfaceClass │ │ │ │ │ ├── bInterfaceNumber │ │ │ │ │ ├── bInterfaceProtocol │ │ │ │ │ ├── bInterfaceSubClass │ │ │ │ │ ├── bNumEndpoints │ │ │ │ │ ├── iad_bFirstInterface │ │ │ │ │ ├── iad_bFunctionClass │ │ │ │ │ ├── iad_bFunctionProtocol │ │ │ │ │ ├── iad_bFunctionSubClass │ │ │ │ │ ├── iad_bInterfaceCount │ │ │ │ │ ├── modalias │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── supports_autosuspend │ │ │ │ │ └── uevent │ │ │ │ ├── authorized │ │ │ │ ├── avoid_reset_quirk │ │ │ │ ├── bConfigurationValue │ │ │ │ ├── bDeviceClass │ │ │ │ ├── bDeviceProtocol │ │ │ │ ├── bDeviceSubClass │ │ │ │ ├── bMaxPacketSize0 │ │ │ │ ├── bMaxPower │ │ │ │ ├── bNumConfigurations │ │ │ │ ├── bNumInterfaces │ │ │ │ ├── bcdDevice │ │ │ │ ├── bmAttributes │ │ │ │ ├── busnum │ │ │ │ ├── configuration │ │ │ │ ├── descriptors │ │ │ │ ├── dev │ │ │ │ ├── devnum │ │ │ │ ├── devpath │ │ │ │ ├── ep_00 │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ ├── bInterval │ │ │ │ │ ├── bLength │ │ │ │ │ ├── bmAttributes │ │ │ │ │ ├── direction │ │ │ │ │ ├── interval │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── type │ │ │ │ │ ├── uevent │ │ │ │ │ └── wMaxPacketSize │ │ │ │ ├── idProduct │ │ │ │ ├── idVendor │ │ │ │ ├── ltm_capable │ │ │ │ ├── manufacturer │ │ │ │ ├── maxchild │ │ │ │ ├── physical_location │ │ │ │ │ ├── dock │ │ │ │ │ ├── horizontal_position │ │ │ │ │ ├── lid │ │ │ │ │ ├── panel │ │ │ │ │ └── vertical_position │ │ │ │ ├── power │ │ │ │ │ ├── active_duration │ │ │ │ │ ├── async │ │ │ │ │ ├── autosuspend │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ ├── connected_duration │ │ │ │ │ ├── control │ │ │ │ │ ├── level │ │ │ │ │ ├── persist │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ ├── runtime_status │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ └── runtime_usage │ │ │ │ ├── product │ │ │ │ ├── quirks │ │ │ │ ├── removable │ │ │ │ ├── rx_lanes │ │ │ │ ├── serial │ │ │ │ ├── speed │ │ │ │ ├── tx_lanes │ │ │ │ ├── uevent │ │ │ │ ├── urbnum │ │ │ │ └── version │ │ │ ├── authorized │ │ │ ├── authorized_default │ │ │ ├── avoid_reset_quirk │ │ │ ├── bConfigurationValue │ │ │ ├── bDeviceClass │ │ │ ├── bDeviceProtocol │ │ │ ├── bDeviceSubClass │ │ │ ├── bMaxPacketSize0 │ │ │ ├── bMaxPower │ │ │ ├── bNumConfigurations │ │ │ ├── bNumInterfaces │ │ │ ├── bcdDevice │ │ │ ├── bmAttributes │ │ │ ├── busnum │ │ │ ├── configuration │ │ │ ├── descriptors │ │ │ ├── dev │ │ │ ├── devnum │ │ │ ├── devpath │ │ │ ├── ep_00 │ │ │ │ ├── bEndpointAddress │ │ │ │ ├── bInterval │ │ │ │ ├── bLength │ │ │ │ ├── bmAttributes │ │ │ │ ├── direction │ │ │ │ ├── interval │ │ │ │ ├── power │ │ │ │ │ ├── async │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ ├── control │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ ├── runtime_status │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ └── runtime_usage │ │ │ │ ├── type │ │ │ │ ├── uevent │ │ │ │ └── wMaxPacketSize │ │ │ ├── idProduct │ │ │ ├── idVendor │ │ │ ├── interface_authorized_default │ │ │ ├── ltm_capable │ │ │ ├── manufacturer │ │ │ ├── maxchild │ │ │ ├── power │ │ │ │ ├── active_duration │ │ │ │ ├── async │ │ │ │ ├── autosuspend │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ ├── connected_duration │ │ │ │ ├── control │ │ │ │ ├── level │ │ │ │ ├── runtime_active_kids │ │ │ │ ├── runtime_active_time │ │ │ │ ├── runtime_enabled │ │ │ │ ├── runtime_status │ │ │ │ ├── runtime_suspended_time │ │ │ │ ├── runtime_usage │ │ │ │ ├── wakeup │ │ │ │ ├── wakeup_abort_count │ │ │ │ ├── wakeup_active │ │ │ │ ├── wakeup_active_count │ │ │ │ ├── wakeup_count │ │ │ │ ├── wakeup_expire_count │ │ │ │ ├── wakeup_last_time_ms │ │ │ │ ├── wakeup_max_time_ms │ │ │ │ └── wakeup_total_time_ms │ │ │ ├── product │ │ │ ├── quirks │ │ │ ├── removable │ │ │ ├── rx_lanes │ │ │ ├── serial │ │ │ ├── speed │ │ │ ├── tx_lanes │ │ │ ├── uevent │ │ │ ├── urbnum │ │ │ └── version │ │ │ ├── usb2 │ │ │ ├── 2-0:1.0 │ │ │ │ ├── authorized │ │ │ │ ├── bAlternateSetting │ │ │ │ ├── bInterfaceClass │ │ │ │ ├── bInterfaceNumber │ │ │ │ ├── bInterfaceProtocol │ │ │ │ ├── bInterfaceSubClass │ │ │ │ ├── bNumEndpoints │ │ │ │ ├── ep_81 │ │ │ │ │ ├── bEndpointAddress │ │ │ │ │ ├── bInterval │ │ │ │ │ ├── bLength │ │ │ │ │ ├── bmAttributes │ │ │ │ │ ├── direction │ │ │ │ │ ├── interval │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── type │ │ │ │ │ ├── uevent │ │ │ │ │ └── wMaxPacketSize │ │ │ │ ├── modalias │ │ │ │ ├── power │ │ │ │ │ ├── async │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ ├── runtime_status │ │ │ │ │ └── runtime_usage │ │ │ │ ├── supports_autosuspend │ │ │ │ ├── uevent │ │ │ │ ├── usb2-port1 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ ├── usb3_lpm_permit │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb2-port2 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ ├── usb3_lpm_permit │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb2-port3 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ ├── usb3_lpm_permit │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb2-port4 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ ├── usb3_lpm_permit │ │ │ │ │ └── waiting_for_supplier │ │ │ │ ├── usb2-port5 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ │ ├── dock │ │ │ │ │ │ ├── horizontal_position │ │ │ │ │ │ ├── lid │ │ │ │ │ │ ├── panel │ │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ │ ├── control │ │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ │ ├── runtime_status │ │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ ├── usb3_lpm_permit │ │ │ │ │ └── waiting_for_supplier │ │ │ │ └── usb2-port6 │ │ │ │ │ ├── connect_type │ │ │ │ │ ├── disable │ │ │ │ │ ├── location │ │ │ │ │ ├── over_current_count │ │ │ │ │ ├── physical_location │ │ │ │ │ ├── dock │ │ │ │ │ ├── horizontal_position │ │ │ │ │ ├── lid │ │ │ │ │ ├── panel │ │ │ │ │ └── vertical_position │ │ │ │ │ ├── power │ │ │ │ │ ├── async │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ ├── control │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ ├── runtime_status │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ └── runtime_usage │ │ │ │ │ ├── quirks │ │ │ │ │ ├── uevent │ │ │ │ │ ├── usb3_lpm_permit │ │ │ │ │ └── waiting_for_supplier │ │ │ ├── authorized │ │ │ ├── authorized_default │ │ │ ├── avoid_reset_quirk │ │ │ ├── bConfigurationValue │ │ │ ├── bDeviceClass │ │ │ ├── bDeviceProtocol │ │ │ ├── bDeviceSubClass │ │ │ ├── bMaxPacketSize0 │ │ │ ├── bMaxPower │ │ │ ├── bNumConfigurations │ │ │ ├── bNumInterfaces │ │ │ ├── bcdDevice │ │ │ ├── bmAttributes │ │ │ ├── busnum │ │ │ ├── configuration │ │ │ ├── descriptors │ │ │ ├── dev │ │ │ ├── devnum │ │ │ ├── devpath │ │ │ ├── ep_00 │ │ │ │ ├── bEndpointAddress │ │ │ │ ├── bInterval │ │ │ │ ├── bLength │ │ │ │ ├── bmAttributes │ │ │ │ ├── direction │ │ │ │ ├── interval │ │ │ │ ├── power │ │ │ │ │ ├── async │ │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ │ ├── control │ │ │ │ │ ├── runtime_active_kids │ │ │ │ │ ├── runtime_active_time │ │ │ │ │ ├── runtime_enabled │ │ │ │ │ ├── runtime_status │ │ │ │ │ ├── runtime_suspended_time │ │ │ │ │ └── runtime_usage │ │ │ │ ├── type │ │ │ │ ├── uevent │ │ │ │ └── wMaxPacketSize │ │ │ ├── idProduct │ │ │ ├── idVendor │ │ │ ├── interface_authorized_default │ │ │ ├── ltm_capable │ │ │ ├── manufacturer │ │ │ ├── maxchild │ │ │ ├── power │ │ │ │ ├── active_duration │ │ │ │ ├── async │ │ │ │ ├── autosuspend │ │ │ │ ├── autosuspend_delay_ms │ │ │ │ ├── connected_duration │ │ │ │ ├── control │ │ │ │ ├── level │ │ │ │ ├── runtime_active_kids │ │ │ │ ├── runtime_active_time │ │ │ │ ├── runtime_enabled │ │ │ │ ├── runtime_status │ │ │ │ ├── runtime_suspended_time │ │ │ │ ├── runtime_usage │ │ │ │ ├── usb3_hardware_lpm_u1 │ │ │ │ ├── usb3_hardware_lpm_u2 │ │ │ │ ├── wakeup │ │ │ │ ├── wakeup_abort_count │ │ │ │ ├── wakeup_active │ │ │ │ ├── wakeup_active_count │ │ │ │ ├── wakeup_count │ │ │ │ ├── wakeup_expire_count │ │ │ │ ├── wakeup_last_time_ms │ │ │ │ ├── wakeup_max_time_ms │ │ │ │ └── wakeup_total_time_ms │ │ │ ├── product │ │ │ ├── quirks │ │ │ ├── removable │ │ │ ├── rx_lanes │ │ │ ├── serial │ │ │ ├── speed │ │ │ ├── tx_lanes │ │ │ ├── uevent │ │ │ ├── urbnum │ │ │ └── version │ │ │ ├── vendor │ │ │ └── wakeup │ │ │ └── wakeup21 │ │ │ ├── active_count │ │ │ ├── active_time_ms │ │ │ ├── event_count │ │ │ ├── expire_count │ │ │ ├── last_change_ms │ │ │ ├── max_time_ms │ │ │ ├── name │ │ │ ├── prevent_suspend_time_ms │ │ │ ├── total_time_ms │ │ │ ├── uevent │ │ │ └── wakeup_count │ └── test.fnl ├── dropbear │ └── add-authkeyfile-option.patch ├── fennel │ └── default.nix ├── fennelrepl │ └── default.nix ├── fetch-freebsd │ ├── default.nix │ └── lua-glue.c ├── firewallgen │ ├── default.nix │ ├── test-rules-min.nix │ └── test.nix ├── firmware-utils │ └── default.nix ├── gen_init_cpio │ └── default.nix ├── go-l2tp │ └── default.nix ├── hi │ └── default.nix ├── ifwait │ ├── .#README │ ├── default.nix │ ├── events-fixture │ ├── ifwait.fnl │ ├── test-ifwait.fnl │ └── waitup.fnl ├── incz │ ├── default.nix │ └── incz.fnl ├── initramfs-peek │ └── default.nix ├── json-to-fstree │ ├── default.nix │ └── json-to-fstree.fnl ├── kernel-backport │ ├── default.nix │ └── gentree-writable-outputs.patch ├── kernel │ ├── cmdline-cookie.patch │ ├── default.nix │ ├── dtb.nix │ ├── kernel_fdt.its │ ├── mips-malta-fdt-from-bootloader.patch │ ├── phram-allow-cached-mappings.patch │ ├── uimage.nix │ └── write-kconfig.nix ├── kexec-map-file.patch ├── kmodloader │ └── default.nix ├── levitate │ └── default.nix ├── libubootenv │ ├── Makefile │ └── default.nix ├── liminix-tools │ ├── builders │ │ └── squashfs.nix │ ├── networking │ │ └── default.nix │ └── services │ │ ├── builder.sh │ │ └── default.nix ├── linotify │ └── default.nix ├── logshipper │ ├── Makefile │ ├── default.nix │ └── logtap.c ├── lualinux │ ├── 0001-realpath.patch │ └── default.nix ├── lzma │ └── default.nix ├── mac80211 │ └── default.nix ├── min-collect-garbage │ ├── default.nix │ ├── min-collect-garbage.sh │ └── min-list-garbage.c ├── min-copy-closure │ ├── default.nix │ ├── liminix-rebuild.sh │ ├── min-copy-closure.sh │ └── receive.sh ├── minisock │ └── default.nix ├── mtdutils │ └── 0001-mkfs.jffs2-add-graft-option.patch ├── nellie │ ├── default.nix │ ├── nellie.c │ └── test.lua ├── netlink-lua │ └── default.nix ├── nginx-small │ └── default.nix ├── odhcp-script │ ├── default.nix │ ├── expected │ ├── odhcp6-script.fnl │ ├── test.env │ └── test.sh ├── odhcp6c │ └── default.nix ├── openwrt │ ├── 2410.nix │ ├── default.nix │ ├── fix-mtk-wed-bm-desc-ptr.patch │ └── make-mtdsplit-jffs2-endian-agnostic.patch ├── output-template │ ├── default.nix │ ├── example-service │ │ └── .outputs │ │ │ ├── addresses │ │ │ ├── 1 │ │ │ │ └── attribute │ │ │ ├── 3 │ │ │ │ └── attribute │ │ │ ├── 5 │ │ │ │ └── attribute │ │ │ └── 6 │ │ │ │ └── attribute │ │ │ ├── colours │ │ │ ├── black │ │ │ ├── blue │ │ │ ├── green │ │ │ └── red │ │ │ └── name │ ├── example.ini │ ├── example.ini.expected │ └── output-template.fnl ├── ppp │ └── default.nix ├── pppoe │ └── default.nix ├── preinit │ ├── Makefile │ ├── default.nix │ ├── opts.h │ ├── parseopts.c │ ├── preinit.c │ └── shell.nix ├── pseudofile │ └── default.nix ├── qemu │ └── arm-image-friendly-load-addr.patch ├── routeros │ ├── README.md │ ├── default.nix │ ├── ros-exec-script.py │ └── routeros.config ├── run-liminix-vm │ ├── default.nix │ └── run-liminix-vm.fnl ├── rxi-json │ └── default.nix ├── s6-init-bin │ └── default.nix ├── s6-rc-database │ └── default.nix ├── s6-rc-round-robin │ ├── default.nix │ └── robin.fnl ├── s6-rc-up-tree │ ├── default.nix │ ├── s6-rc-db │ ├── s6-rc-up-tree.fnl │ ├── scripts │ │ ├── s6-rc │ │ └── s6-rc-db │ ├── test-list │ ├── test-services │ │ ├── atz │ │ ├── daub │ │ ├── wan-proxy │ │ ├── wattle │ │ └── wombat │ └── test.fnl ├── schnapps │ └── default.nix ├── service-fns │ └── default.nix ├── swconfig │ └── default.nix ├── systemconfig │ ├── default.nix │ ├── defs.h │ ├── restart-services.fnl │ ├── test-hashes │ └── test-hashes2 ├── tangc │ ├── default.nix │ └── tangc.fnl ├── tufted │ ├── README.md │ ├── default.nix │ ├── tftp.lua │ └── tufted.fnl ├── u-boot │ ├── 0001-add-ubifs-to-boot-targets.patch │ └── 0002-virtio-init-for-malta.patch ├── uevent-watch │ ├── default.nix │ ├── events.txt │ ├── test.fnl │ └── watch.fnl ├── usb-modeswitch │ └── default.nix ├── watch-outputs │ ├── default.nix │ └── watch-outputs.fnl ├── watch-ssh-keys │ ├── default.nix │ └── watch-ssh-keys.fnl ├── write-ash-script │ ├── bin.nix │ └── default.nix ├── write-fennel-script │ └── default.nix ├── write-fennel │ └── default.nix ├── xl2tpd-exit-on-close.patch └── zyxel-bootconfig │ └── default.nix ├── shell.nix ├── tests ├── ci.nix ├── ext4 │ ├── configuration.nix │ ├── script.expect │ └── test.nix ├── fennel │ ├── hello.fnl │ └── test.nix ├── inout │ ├── configuration.nix │ ├── script.expect │ └── test.nix ├── jffs2 │ ├── configuration.nix │ ├── script.expect │ └── test.nix ├── kernel │ └── run.sh ├── min-copy-closure │ ├── config-ext4.nix │ ├── configuration.nix │ ├── id │ ├── id.pub │ ├── test-liminix-rebuild.sh │ ├── test.nix │ ├── wait-for-reboot.expect │ ├── wait-for-soft-restart.expect │ ├── wait-until-ready.expect │ └── with-figlet.nix ├── pppoe │ ├── configuration.nix │ ├── getaddress.expect │ ├── test-dhcp-service.py │ └── test.nix ├── pseudofiles │ ├── fixture.nix │ ├── result.expected │ └── test.nix ├── smoke │ └── test.nix ├── test-helpers.sh ├── tftpboot │ ├── a.sh │ ├── configuration.nix │ ├── script.expect │ └── test.nix ├── updown │ ├── configuration.nix │ ├── script.expect │ └── test.nix └── wlan │ ├── configuration.nix │ ├── test.nix │ └── wait-for-wlan.expect └── vanilla-configuration.nix /doc/modules.adoc: -------------------------------------------------------------------------------- 1 | == Module options 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/addresses/1/attribute: -------------------------------------------------------------------------------- 1 | a11 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/addresses/3/attribute: -------------------------------------------------------------------------------- 1 | a33 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/addresses/5/attribute: -------------------------------------------------------------------------------- 1 | a55 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/addresses/6/attribute: -------------------------------------------------------------------------------- 1 | a66 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/array/1: -------------------------------------------------------------------------------- 1 | cat 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/array/2: -------------------------------------------------------------------------------- 1 | dog 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/array/3: -------------------------------------------------------------------------------- 1 | cow 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/array/4: -------------------------------------------------------------------------------- 1 | sheep 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/colours/black: -------------------------------------------------------------------------------- 1 | 000000 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/colours/blue: -------------------------------------------------------------------------------- 1 | 0000ff 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/colours/green: -------------------------------------------------------------------------------- 1 | 00ff00 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/colours/red: -------------------------------------------------------------------------------- 1 | ff0000 2 | -------------------------------------------------------------------------------- /pkgs/anoia/example-output/.outputs/name: -------------------------------------------------------------------------------- 1 | eth1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/ari_enabled: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/broken_parity_status: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/class: -------------------------------------------------------------------------------- 1 | 0x0c0330 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/consistent_dma_mask_bits: -------------------------------------------------------------------------------- 1 | 64 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/d3cold_allowed: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/device: -------------------------------------------------------------------------------- 1 | 0x9d2f 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/dma_mask_bits: -------------------------------------------------------------------------------- 1 | 64 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/driver_override: -------------------------------------------------------------------------------- 1 | (null) 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/enable: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/intel_xhci_usb_sw/driver_override: -------------------------------------------------------------------------------- 1 | (null) 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/intel_xhci_usb_sw/power/async: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/intel_xhci_usb_sw/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/intel_xhci_usb_sw/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/intel_xhci_usb_sw/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/intel_xhci_usb_sw/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/intel_xhci_usb_sw/power/runtime_status: -------------------------------------------------------------------------------- 1 | suspended 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/intel_xhci_usb_sw/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/irq: -------------------------------------------------------------------------------- 1 | 131 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/local_cpulist: -------------------------------------------------------------------------------- 1 | 0-3 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/local_cpus: -------------------------------------------------------------------------------- 1 | f 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/msi_bus: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/msi_irqs/131: -------------------------------------------------------------------------------- 1 | msi 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/numa_node: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 1962059779 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/wakeup: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/wakeup_abort_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/wakeup_active: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/wakeup_active_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/wakeup_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/wakeup_expire_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/wakeup_last_time_ms: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/wakeup_max_time_ms: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power/wakeup_total_time_ms: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/power_state: -------------------------------------------------------------------------------- 1 | D0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/revision: -------------------------------------------------------------------------------- 1 | 0x21 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/subsystem_device: -------------------------------------------------------------------------------- 1 | 0x2238 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/subsystem_vendor: -------------------------------------------------------------------------------- 1 | 0x17aa 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/bAlternateSetting: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/bInterfaceClass: -------------------------------------------------------------------------------- 1 | 09 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/bInterfaceNumber: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/bInterfaceProtocol: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/bInterfaceSubClass: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/bNumEndpoints: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 81 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/bInterval: -------------------------------------------------------------------------------- 1 | 0c 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/bmAttributes: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/direction: -------------------------------------------------------------------------------- 1 | in 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/interval: -------------------------------------------------------------------------------- 1 | 256ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/type: -------------------------------------------------------------------------------- 1 | Interrupt 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/ep_81/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0004 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/power/runtime_status: -------------------------------------------------------------------------------- 1 | suspended 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/supports_autosuspend: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/connect_type: -------------------------------------------------------------------------------- 1 | hotplug 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/location: -------------------------------------------------------------------------------- 1 | 0x80000001 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/physical_location/panel: -------------------------------------------------------------------------------- 1 | left 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port1/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/connect_type: -------------------------------------------------------------------------------- 1 | not used 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/location: -------------------------------------------------------------------------------- 1 | 0x80000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port10/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/connect_type: -------------------------------------------------------------------------------- 1 | not used 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/location: -------------------------------------------------------------------------------- 1 | 0x80000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port11/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/connect_type: -------------------------------------------------------------------------------- 1 | not used 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/location: -------------------------------------------------------------------------------- 1 | 0x80000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port12/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/connect_type: -------------------------------------------------------------------------------- 1 | not used 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/location: -------------------------------------------------------------------------------- 1 | 0x80000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/connect_type: -------------------------------------------------------------------------------- 1 | hotplug 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/location: -------------------------------------------------------------------------------- 1 | 0x80000002 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/connect_type: -------------------------------------------------------------------------------- 1 | hotplug 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/location: -------------------------------------------------------------------------------- 1 | 0x80000004 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/physical_location/dock: -------------------------------------------------------------------------------- 1 | yes 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/physical_location/panel: -------------------------------------------------------------------------------- 1 | left 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/connect_type: -------------------------------------------------------------------------------- 1 | not used 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/location: -------------------------------------------------------------------------------- 1 | 0x80000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/connect_type: -------------------------------------------------------------------------------- 1 | hotplug 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/location: -------------------------------------------------------------------------------- 1 | 0x80000003 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/connect_type: -------------------------------------------------------------------------------- 1 | not used 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/location: -------------------------------------------------------------------------------- 1 | 0x80000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port8/connect_type: -------------------------------------------------------------------------------- 1 | not used 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port8/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port8/location: -------------------------------------------------------------------------------- 1 | 0x80000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port8/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port8/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port8/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port8/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port8/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port8/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port8/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port9/connect_type: -------------------------------------------------------------------------------- 1 | not used 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port9/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port9/location: -------------------------------------------------------------------------------- 1 | 0x80000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port9/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port9/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port9/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port9/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port9/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port9/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/bAlternateSetting: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/bInterfaceClass: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/bInterfaceNumber: -------------------------------------------------------------------------------- 1 | 0c 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/bInterfaceProtocol: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/bInterfaceSubClass: -------------------------------------------------------------------------------- 1 | 0e 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/bNumEndpoints: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/ep_82/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 82 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/ep_82/bInterval: -------------------------------------------------------------------------------- 1 | 09 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/ep_82/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/ep_82/bmAttributes: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/ep_82/direction: -------------------------------------------------------------------------------- 1 | in 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/ep_82/interval: -------------------------------------------------------------------------------- 1 | 32ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/ep_82/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/ep_82/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/ep_82/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/ep_82/type: -------------------------------------------------------------------------------- 1 | Interrupt 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/ep_82/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0040 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/iad_bFirstInterface: -------------------------------------------------------------------------------- 1 | 0c 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/iad_bFunctionClass: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/iad_bFunctionProtocol: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/iad_bFunctionSubClass: -------------------------------------------------------------------------------- 1 | 0e 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/iad_bInterfaceCount: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/addr_len: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/dev_id: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/dev_port: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/iflink: -------------------------------------------------------------------------------- 1 | 439 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/mtu: -------------------------------------------------------------------------------- 1 | 1500 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/threaded: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/type: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/supports_autosuspend: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/usbmisc/cdc-wdm0/dev: -------------------------------------------------------------------------------- 1 | 180:176 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/bAlternateSetting: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/bInterfaceClass: -------------------------------------------------------------------------------- 1 | 0a 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/bInterfaceNumber: -------------------------------------------------------------------------------- 1 | 0d 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/bInterfaceProtocol: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/bInterfaceSubClass: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/bNumEndpoints: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_01/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_01/bInterval: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_01/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_01/bmAttributes: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_01/direction: -------------------------------------------------------------------------------- 1 | out 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_01/interval: -------------------------------------------------------------------------------- 1 | 0ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_01/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_01/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_01/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_01/type: -------------------------------------------------------------------------------- 1 | Bulk 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_01/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0200 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_81/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 81 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_81/bInterval: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_81/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_81/bmAttributes: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_81/direction: -------------------------------------------------------------------------------- 1 | in 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_81/interval: -------------------------------------------------------------------------------- 1 | 0ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_81/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_81/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_81/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_81/type: -------------------------------------------------------------------------------- 1 | Bulk 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/ep_81/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0200 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/iad_bFirstInterface: -------------------------------------------------------------------------------- 1 | 0c 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/iad_bFunctionClass: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/iad_bFunctionProtocol: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/iad_bFunctionSubClass: -------------------------------------------------------------------------------- 1 | 0e 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/iad_bInterfaceCount: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.13/supports_autosuspend: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/avoid_reset_quirk: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/bConfigurationValue: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/bDeviceClass: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/bDeviceProtocol: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/bDeviceSubClass: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/bMaxPacketSize0: -------------------------------------------------------------------------------- 1 | 64 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/bMaxPower: -------------------------------------------------------------------------------- 1 | 500mA 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/bNumConfigurations: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/bNumInterfaces: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/bcdDevice: -------------------------------------------------------------------------------- 1 | 0006 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/bmAttributes: -------------------------------------------------------------------------------- 1 | a0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/busnum: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/dev: -------------------------------------------------------------------------------- 1 | 189:79 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/devnum: -------------------------------------------------------------------------------- 1 | 80 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/devpath: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/bInterval: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/bmAttributes: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/direction: -------------------------------------------------------------------------------- 1 | both 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/interval: -------------------------------------------------------------------------------- 1 | 0ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/type: -------------------------------------------------------------------------------- 1 | Control 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ep_00/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0040 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/idProduct: -------------------------------------------------------------------------------- 1 | 9079 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/idVendor: -------------------------------------------------------------------------------- 1 | 1199 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/ltm_capable: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/maxchild: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/physical_location/panel: -------------------------------------------------------------------------------- 1 | unknown 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/active_duration: -------------------------------------------------------------------------------- 1 | 4135310 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/autosuspend: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | 2000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/connected_duration: -------------------------------------------------------------------------------- 1 | 4135345 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/control: -------------------------------------------------------------------------------- 1 | on 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/level: -------------------------------------------------------------------------------- 1 | on 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/persist: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 4135051 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | forbidden 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/wakeup: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/wakeup_abort_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/wakeup_active: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/wakeup_active_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/wakeup_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/wakeup_expire_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/wakeup_last_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/wakeup_max_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/power/wakeup_total_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/quirks: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/removable: -------------------------------------------------------------------------------- 1 | fixed 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/rx_lanes: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/serial: -------------------------------------------------------------------------------- 1 | LF60441155011013 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/speed: -------------------------------------------------------------------------------- 1 | 480 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/tx_lanes: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/urbnum: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/version: -------------------------------------------------------------------------------- 1 | 2.10 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bAlternateSetting: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bInterfaceClass: -------------------------------------------------------------------------------- 1 | e0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bInterfaceNumber: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bInterfaceProtocol: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bInterfaceSubClass: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/bNumEndpoints: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/bInterval: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/bmAttributes: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/direction: -------------------------------------------------------------------------------- 1 | out 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/interval: -------------------------------------------------------------------------------- 1 | 0ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/type: -------------------------------------------------------------------------------- 1 | Bulk 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0040 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 81 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/bInterval: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/bmAttributes: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/direction: -------------------------------------------------------------------------------- 1 | in 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/interval: -------------------------------------------------------------------------------- 1 | 1ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/type: -------------------------------------------------------------------------------- 1 | Interrupt 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0040 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 82 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/bInterval: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/bmAttributes: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/direction: -------------------------------------------------------------------------------- 1 | in 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/interval: -------------------------------------------------------------------------------- 1 | 0ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/type: -------------------------------------------------------------------------------- 1 | Bulk 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0040 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/power/runtime_status: -------------------------------------------------------------------------------- 1 | suspended 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/supports_autosuspend: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/bAlternateSetting: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/bInterfaceClass: -------------------------------------------------------------------------------- 1 | e0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/bInterfaceNumber: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/bInterfaceProtocol: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/bInterfaceSubClass: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/bNumEndpoints: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/bInterval: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/bmAttributes: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/direction: -------------------------------------------------------------------------------- 1 | out 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/interval: -------------------------------------------------------------------------------- 1 | 1ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/type: -------------------------------------------------------------------------------- 1 | Isoc 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 83 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/bInterval: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/bmAttributes: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/direction: -------------------------------------------------------------------------------- 1 | in 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/interval: -------------------------------------------------------------------------------- 1 | 1ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/type: -------------------------------------------------------------------------------- 1 | Isoc 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/power/runtime_status: -------------------------------------------------------------------------------- 1 | suspended 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/supports_autosuspend: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/avoid_reset_quirk: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/bConfigurationValue: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/bDeviceClass: -------------------------------------------------------------------------------- 1 | e0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/bDeviceProtocol: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/bDeviceSubClass: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/bMaxPacketSize0: -------------------------------------------------------------------------------- 1 | 64 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/bMaxPower: -------------------------------------------------------------------------------- 1 | 100mA 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/bNumConfigurations: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/bNumInterfaces: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/bcdDevice: -------------------------------------------------------------------------------- 1 | 0001 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/bmAttributes: -------------------------------------------------------------------------------- 1 | e0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/busnum: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/dev: -------------------------------------------------------------------------------- 1 | 189:2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/devnum: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/devpath: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/bInterval: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/bmAttributes: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/direction: -------------------------------------------------------------------------------- 1 | both 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/interval: -------------------------------------------------------------------------------- 1 | 0ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/type: -------------------------------------------------------------------------------- 1 | Control 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ep_00/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0040 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/idProduct: -------------------------------------------------------------------------------- 1 | 0a2b 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/idVendor: -------------------------------------------------------------------------------- 1 | 8087 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/ltm_capable: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/maxchild: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/physical_location/panel: -------------------------------------------------------------------------------- 1 | unknown 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/active_duration: -------------------------------------------------------------------------------- 1 | 1961674860 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/autosuspend: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | 2000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/connected_duration: -------------------------------------------------------------------------------- 1 | 1962110248 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/control: -------------------------------------------------------------------------------- 1 | on 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/level: -------------------------------------------------------------------------------- 1 | on 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/persist: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 1962051720 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | forbidden 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/wakeup: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/wakeup_abort_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/wakeup_active: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/wakeup_active_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/wakeup_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/wakeup_expire_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/wakeup_last_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/wakeup_max_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/power/wakeup_total_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/quirks: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/removable: -------------------------------------------------------------------------------- 1 | fixed 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/rx_lanes: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/speed: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/tx_lanes: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/urbnum: -------------------------------------------------------------------------------- 1 | 1945386 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/version: -------------------------------------------------------------------------------- 1 | 2.00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/bAlternateSetting: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/bInterfaceClass: -------------------------------------------------------------------------------- 1 | 0e 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/bInterfaceNumber: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/bInterfaceProtocol: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/bInterfaceSubClass: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/bNumEndpoints: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 83 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/bInterval: -------------------------------------------------------------------------------- 1 | 06 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/bmAttributes: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/direction: -------------------------------------------------------------------------------- 1 | in 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/interval: -------------------------------------------------------------------------------- 1 | 4ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/type: -------------------------------------------------------------------------------- 1 | Interrupt 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0010 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/iad_bFirstInterface: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/iad_bFunctionClass: -------------------------------------------------------------------------------- 1 | 0e 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/iad_bFunctionProtocol: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/iad_bFunctionSubClass: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/iad_bInterfaceCount: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input7/capabilities/ev: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input7/capabilities/ff: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input7/capabilities/sw: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input7/event5/dev: -------------------------------------------------------------------------------- 1 | 13:69 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input7/id/bustype: -------------------------------------------------------------------------------- 1 | 0003 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input7/id/product: -------------------------------------------------------------------------------- 1 | 5248 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input7/id/vendor: -------------------------------------------------------------------------------- 1 | 13d3 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input7/id/version: -------------------------------------------------------------------------------- 1 | 0020 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input7/inhibited: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input7/properties: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/input/input7/uniq: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/interface: -------------------------------------------------------------------------------- 1 | Integrated Camera 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/media0/dev: -------------------------------------------------------------------------------- 1 | 242:0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/media0/power/async: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/media0/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/media0/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/supports_autosuspend: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/video4linux/video0/dev: -------------------------------------------------------------------------------- 1 | 81:0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/video4linux/video0/dev_debug: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/video4linux/video0/index: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/video4linux/video1/dev: -------------------------------------------------------------------------------- 1 | 81:1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/video4linux/video1/dev_debug: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/video4linux/video1/index: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/bAlternateSetting: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/bInterfaceClass: -------------------------------------------------------------------------------- 1 | 0e 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/bInterfaceNumber: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/bInterfaceProtocol: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/bInterfaceSubClass: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/bNumEndpoints: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/iad_bFirstInterface: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/iad_bFunctionClass: -------------------------------------------------------------------------------- 1 | 0e 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/iad_bFunctionProtocol: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/iad_bFunctionSubClass: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/iad_bInterfaceCount: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/power/runtime_status: -------------------------------------------------------------------------------- 1 | suspended 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/supports_autosuspend: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/avoid_reset_quirk: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/bConfigurationValue: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/bDeviceClass: -------------------------------------------------------------------------------- 1 | ef 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/bDeviceProtocol: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/bDeviceSubClass: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/bMaxPacketSize0: -------------------------------------------------------------------------------- 1 | 64 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/bMaxPower: -------------------------------------------------------------------------------- 1 | 500mA 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/bNumConfigurations: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/bNumInterfaces: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/bcdDevice: -------------------------------------------------------------------------------- 1 | 0020 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/bmAttributes: -------------------------------------------------------------------------------- 1 | 80 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/busnum: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/configuration: -------------------------------------------------------------------------------- 1 | Integrated Camera 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/dev: -------------------------------------------------------------------------------- 1 | 189:3 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/devnum: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/devpath: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/bInterval: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/bmAttributes: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/direction: -------------------------------------------------------------------------------- 1 | both 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/interval: -------------------------------------------------------------------------------- 1 | 0ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/type: -------------------------------------------------------------------------------- 1 | Control 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ep_00/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0040 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/idProduct: -------------------------------------------------------------------------------- 1 | 5248 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/idVendor: -------------------------------------------------------------------------------- 1 | 13d3 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/ltm_capable: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/manufacturer: -------------------------------------------------------------------------------- 1 | Azurewave 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/maxchild: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/physical_location/dock: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/physical_location/lid: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/physical_location/panel: -------------------------------------------------------------------------------- 1 | unknown 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/active_duration: -------------------------------------------------------------------------------- 1 | 1959383685 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/autosuspend: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | 2000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/connected_duration: -------------------------------------------------------------------------------- 1 | 1962111918 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/level: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/persist: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 1959760719 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 2292695 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/product: -------------------------------------------------------------------------------- 1 | Integrated Camera 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/quirks: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/removable: -------------------------------------------------------------------------------- 1 | fixed 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/rx_lanes: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/serial: -------------------------------------------------------------------------------- 1 | NULL 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/speed: -------------------------------------------------------------------------------- 1 | 480 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/tx_lanes: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/urbnum: -------------------------------------------------------------------------------- 1 | 34669 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/version: -------------------------------------------------------------------------------- 1 | 2.00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/authorized_default: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/avoid_reset_quirk: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/bConfigurationValue: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/bDeviceClass: -------------------------------------------------------------------------------- 1 | 09 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/bDeviceProtocol: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/bDeviceSubClass: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/bMaxPacketSize0: -------------------------------------------------------------------------------- 1 | 64 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/bMaxPower: -------------------------------------------------------------------------------- 1 | 0mA 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/bNumConfigurations: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/bNumInterfaces: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/bcdDevice: -------------------------------------------------------------------------------- 1 | 0601 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/bmAttributes: -------------------------------------------------------------------------------- 1 | e0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/busnum: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/dev: -------------------------------------------------------------------------------- 1 | 189:0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/devnum: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/devpath: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/bInterval: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/bmAttributes: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/direction: -------------------------------------------------------------------------------- 1 | both 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/interval: -------------------------------------------------------------------------------- 1 | 0ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/type: -------------------------------------------------------------------------------- 1 | Control 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ep_00/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0040 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/idProduct: -------------------------------------------------------------------------------- 1 | 0002 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/idVendor: -------------------------------------------------------------------------------- 1 | 1d6b 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/interface_authorized_default: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/ltm_capable: -------------------------------------------------------------------------------- 1 | no 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/manufacturer: -------------------------------------------------------------------------------- 1 | Linux 6.1.69 xhci-hcd 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/maxchild: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/active_duration: -------------------------------------------------------------------------------- 1 | 1961732440 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/autosuspend: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/connected_duration: -------------------------------------------------------------------------------- 1 | 1962112026 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/level: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 1962053815 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/runtime_status: -------------------------------------------------------------------------------- 1 | active 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/wakeup: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/wakeup_abort_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/wakeup_active: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/wakeup_active_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/wakeup_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/wakeup_expire_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/wakeup_last_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/wakeup_max_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/power/wakeup_total_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/product: -------------------------------------------------------------------------------- 1 | xHCI Host Controller 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/quirks: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/removable: -------------------------------------------------------------------------------- 1 | unknown 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/rx_lanes: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/serial: -------------------------------------------------------------------------------- 1 | 0000:00:14.0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/speed: -------------------------------------------------------------------------------- 1 | 480 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/tx_lanes: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/urbnum: -------------------------------------------------------------------------------- 1 | 48041 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/version: -------------------------------------------------------------------------------- 1 | 2.00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/bAlternateSetting: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/bInterfaceClass: -------------------------------------------------------------------------------- 1 | 09 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/bInterfaceNumber: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/bInterfaceProtocol: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/bInterfaceSubClass: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/bNumEndpoints: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 81 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/bInterval: -------------------------------------------------------------------------------- 1 | 0c 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/bmAttributes: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/direction: -------------------------------------------------------------------------------- 1 | in 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/interval: -------------------------------------------------------------------------------- 1 | 256ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/type: -------------------------------------------------------------------------------- 1 | Interrupt 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/ep_81/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0004 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/power/runtime_status: -------------------------------------------------------------------------------- 1 | suspended 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/supports_autosuspend: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port1/connect_type: -------------------------------------------------------------------------------- 1 | hotplug 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port1/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port1/location: -------------------------------------------------------------------------------- 1 | 0x80000001 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port1/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port1/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port1/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port1/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port1/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port1/usb3_lpm_permit: -------------------------------------------------------------------------------- 1 | u1_u2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port1/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port2/connect_type: -------------------------------------------------------------------------------- 1 | not used 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port2/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port2/location: -------------------------------------------------------------------------------- 1 | 0x80000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port2/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port2/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port2/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port2/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port2/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port2/usb3_lpm_permit: -------------------------------------------------------------------------------- 1 | u1_u2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port2/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port3/connect_type: -------------------------------------------------------------------------------- 1 | hotplug 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port3/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port3/location: -------------------------------------------------------------------------------- 1 | 0x80000002 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port3/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port3/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port3/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port3/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port3/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port3/usb3_lpm_permit: -------------------------------------------------------------------------------- 1 | u1_u2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port3/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port4/connect_type: -------------------------------------------------------------------------------- 1 | not used 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port4/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port4/location: -------------------------------------------------------------------------------- 1 | 0x80000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port4/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port4/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port4/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port4/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port4/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port4/usb3_lpm_permit: -------------------------------------------------------------------------------- 1 | u1_u2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port4/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port5/connect_type: -------------------------------------------------------------------------------- 1 | not used 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port5/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port5/location: -------------------------------------------------------------------------------- 1 | 0x80000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port5/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port5/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port5/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port5/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port5/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port5/usb3_lpm_permit: -------------------------------------------------------------------------------- 1 | u1_u2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port5/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port6/connect_type: -------------------------------------------------------------------------------- 1 | hotplug 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port6/disable: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port6/location: -------------------------------------------------------------------------------- 1 | 0x80000003 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port6/over_current_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port6/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port6/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port6/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port6/quirks: -------------------------------------------------------------------------------- 1 | 00000000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port6/usb3_lpm_permit: -------------------------------------------------------------------------------- 1 | u1_u2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port6/waiting_for_supplier: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/authorized: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/authorized_default: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/avoid_reset_quirk: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/bConfigurationValue: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/bDeviceClass: -------------------------------------------------------------------------------- 1 | 09 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/bDeviceProtocol: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/bDeviceSubClass: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/bMaxPacketSize0: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/bMaxPower: -------------------------------------------------------------------------------- 1 | 0mA 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/bNumConfigurations: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/bNumInterfaces: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/bcdDevice: -------------------------------------------------------------------------------- 1 | 0601 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/bmAttributes: -------------------------------------------------------------------------------- 1 | e0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/busnum: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/dev: -------------------------------------------------------------------------------- 1 | 189:128 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/devnum: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/devpath: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/bEndpointAddress: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/bInterval: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/bLength: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/bmAttributes: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/direction: -------------------------------------------------------------------------------- 1 | both 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/interval: -------------------------------------------------------------------------------- 1 | 0ms 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/power/runtime_status: -------------------------------------------------------------------------------- 1 | unsupported 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/type: -------------------------------------------------------------------------------- 1 | Control 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ep_00/wMaxPacketSize: -------------------------------------------------------------------------------- 1 | 0040 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/idProduct: -------------------------------------------------------------------------------- 1 | 0003 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/idVendor: -------------------------------------------------------------------------------- 1 | 1d6b 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/interface_authorized_default: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/ltm_capable: -------------------------------------------------------------------------------- 1 | yes 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/manufacturer: -------------------------------------------------------------------------------- 1 | Linux 6.1.69 xhci-hcd 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/maxchild: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/active_duration: -------------------------------------------------------------------------------- 1 | 51112525 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/async: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/autosuspend: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/connected_duration: -------------------------------------------------------------------------------- 1 | 1962117560 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/level: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/runtime_active_kids: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/runtime_active_time: -------------------------------------------------------------------------------- 1 | 51668774 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/runtime_enabled: -------------------------------------------------------------------------------- 1 | enabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/runtime_status: -------------------------------------------------------------------------------- 1 | suspended 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/runtime_suspended_time: -------------------------------------------------------------------------------- 1 | 1910390614 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/runtime_usage: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/usb3_hardware_lpm_u1: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/usb3_hardware_lpm_u2: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/wakeup: -------------------------------------------------------------------------------- 1 | disabled 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/wakeup_abort_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/wakeup_active: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/wakeup_active_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/wakeup_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/wakeup_expire_count: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/wakeup_last_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/wakeup_max_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/power/wakeup_total_time_ms: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/product: -------------------------------------------------------------------------------- 1 | xHCI Host Controller 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/quirks: -------------------------------------------------------------------------------- 1 | 0x0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/removable: -------------------------------------------------------------------------------- 1 | unknown 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/rx_lanes: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/serial: -------------------------------------------------------------------------------- 1 | 0000:00:14.0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/speed: -------------------------------------------------------------------------------- 1 | 5000 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/tx_lanes: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/urbnum: -------------------------------------------------------------------------------- 1 | 24698363 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/version: -------------------------------------------------------------------------------- 1 | 3.00 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/vendor: -------------------------------------------------------------------------------- 1 | 0x8086 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/wakeup/wakeup21/active_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/wakeup/wakeup21/active_time_ms: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/wakeup/wakeup21/event_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/wakeup/wakeup21/expire_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/wakeup/wakeup21/last_change_ms: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/wakeup/wakeup21/max_time_ms: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/wakeup/wakeup21/name: -------------------------------------------------------------------------------- 1 | 0000:00:14.0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/wakeup/wakeup21/prevent_suspend_time_ms: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/wakeup/wakeup21/total_time_ms: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/wakeup/wakeup21/wakeup_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/ifwait/.#README: -------------------------------------------------------------------------------- 1 | dan@noetbook.911352349782478447 -------------------------------------------------------------------------------- /pkgs/output-template/example-service/.outputs/addresses/1/attribute: -------------------------------------------------------------------------------- 1 | a11 2 | -------------------------------------------------------------------------------- /pkgs/output-template/example-service/.outputs/addresses/3/attribute: -------------------------------------------------------------------------------- 1 | a33 2 | -------------------------------------------------------------------------------- /pkgs/output-template/example-service/.outputs/addresses/5/attribute: -------------------------------------------------------------------------------- 1 | a55 2 | -------------------------------------------------------------------------------- /pkgs/output-template/example-service/.outputs/addresses/6/attribute: -------------------------------------------------------------------------------- 1 | a66 2 | -------------------------------------------------------------------------------- /pkgs/output-template/example-service/.outputs/colours/black: -------------------------------------------------------------------------------- 1 | 000000 2 | -------------------------------------------------------------------------------- /pkgs/output-template/example-service/.outputs/colours/blue: -------------------------------------------------------------------------------- 1 | 0000ff 2 | -------------------------------------------------------------------------------- /pkgs/output-template/example-service/.outputs/colours/green: -------------------------------------------------------------------------------- 1 | 00ff00 2 | -------------------------------------------------------------------------------- /pkgs/output-template/example-service/.outputs/colours/red: -------------------------------------------------------------------------------- 1 | ff0000 2 | -------------------------------------------------------------------------------- /pkgs/output-template/example-service/.outputs/name: -------------------------------------------------------------------------------- 1 | eth1 2 | -------------------------------------------------------------------------------- /tests/fennel/hello.fnl: -------------------------------------------------------------------------------- 1 | (print "hello") 2 | --------------------------------------------------------------------------------