├── .gitignore ├── AGENTS.md ├── 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 ├── dhcp4c │ ├── client.nix │ ├── default.nix │ └── lease-watcher.fnl ├── 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 ├── early │ └── default.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 ├── ipv6-autoconfig │ ├── autoconfig.nix │ └── default.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 │ ├── tai64.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 ├── fennelc │ ├── default.nix │ └── fennelc.fnl ├── 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 ├── 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 ├── logshippers │ ├── default.nix │ ├── incz.fnl │ └── victorialogsend.fnl ├── logtap │ ├── Makefile │ ├── backfill.fnl │ ├── 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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/README.md -------------------------------------------------------------------------------- /STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/STYLE.md -------------------------------------------------------------------------------- /THOUGHTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/THOUGHTS.txt -------------------------------------------------------------------------------- /boot.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/boot.expect -------------------------------------------------------------------------------- /bordervm-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/bordervm-configuration.nix -------------------------------------------------------------------------------- /bordervm.conf-example.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/bordervm.conf-example.nix -------------------------------------------------------------------------------- /ci.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/ci.nix -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/default.nix -------------------------------------------------------------------------------- /devices/families/qemu.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/devices/families/qemu.nix -------------------------------------------------------------------------------- /devices/gl-ar750/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/devices/gl-ar750/default.nix -------------------------------------------------------------------------------- /devices/gl-mt300a/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/devices/gl-mt300a/default.nix -------------------------------------------------------------------------------- /devices/qemu/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/devices/qemu/default.nix -------------------------------------------------------------------------------- /doc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc.nix -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/_static/logo.svg -------------------------------------------------------------------------------- /doc/admin.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/admin.adoc -------------------------------------------------------------------------------- /doc/adr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/adr/README -------------------------------------------------------------------------------- /doc/adr/module-system.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/adr/module-system.rst -------------------------------------------------------------------------------- /doc/code-of-conduct.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/code-of-conduct.adoc -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/configuration.adoc -------------------------------------------------------------------------------- /doc/development.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/development.adoc -------------------------------------------------------------------------------- /doc/extract-options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/extract-options.nix -------------------------------------------------------------------------------- /doc/hardware.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/hardware.nix -------------------------------------------------------------------------------- /doc/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/index.adoc -------------------------------------------------------------------------------- /doc/installation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/installation.adoc -------------------------------------------------------------------------------- /doc/intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/intro.adoc -------------------------------------------------------------------------------- /doc/modules.adoc: -------------------------------------------------------------------------------- 1 | == Module options 2 | -------------------------------------------------------------------------------- /doc/outputs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/outputs.adoc -------------------------------------------------------------------------------- /doc/parse-options-outputs.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/parse-options-outputs.fnl -------------------------------------------------------------------------------- /doc/parse-options.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/parse-options.fnl -------------------------------------------------------------------------------- /doc/tutorial.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/doc/tutorial.adoc -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/README -------------------------------------------------------------------------------- /examples/arhcive.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/arhcive.nix -------------------------------------------------------------------------------- /examples/demo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/demo.nix -------------------------------------------------------------------------------- /examples/extneder.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/extneder.nix -------------------------------------------------------------------------------- /examples/hello-from-mt300.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/hello-from-mt300.nix -------------------------------------------------------------------------------- /examples/hello-from-qemu.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/hello-from-qemu.nix -------------------------------------------------------------------------------- /examples/nwa50ax-ap.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/nwa50ax-ap.nix -------------------------------------------------------------------------------- /examples/recovery.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/recovery.nix -------------------------------------------------------------------------------- /examples/rotuer.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/rotuer.nix -------------------------------------------------------------------------------- /examples/router-with-l2tp.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/router-with-l2tp.nix -------------------------------------------------------------------------------- /examples/secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/secrets.json -------------------------------------------------------------------------------- /examples/turris.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/examples/turris.nix -------------------------------------------------------------------------------- /modules/all-modules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/all-modules.nix -------------------------------------------------------------------------------- /modules/arch/aarch64.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/arch/aarch64.nix -------------------------------------------------------------------------------- /modules/arch/arm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/arch/arm.nix -------------------------------------------------------------------------------- /modules/arch/mips.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/arch/mips.nix -------------------------------------------------------------------------------- /modules/arch/mipseb.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/arch/mipseb.nix -------------------------------------------------------------------------------- /modules/arch/mipsel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/arch/mipsel.nix -------------------------------------------------------------------------------- /modules/base.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/base.nix -------------------------------------------------------------------------------- /modules/bridge/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/bridge/default.nix -------------------------------------------------------------------------------- /modules/bridge/members.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/bridge/members.nix -------------------------------------------------------------------------------- /modules/bridge/primary.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/bridge/primary.nix -------------------------------------------------------------------------------- /modules/busybox.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/busybox.nix -------------------------------------------------------------------------------- /modules/dhcp4c/client.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/dhcp4c/client.nix -------------------------------------------------------------------------------- /modules/dhcp4c/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/dhcp4c/default.nix -------------------------------------------------------------------------------- /modules/dhcp6c/address.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/dhcp6c/address.nix -------------------------------------------------------------------------------- /modules/dhcp6c/client.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/dhcp6c/client.nix -------------------------------------------------------------------------------- /modules/dhcp6c/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/dhcp6c/default.nix -------------------------------------------------------------------------------- /modules/dhcp6c/prefix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/dhcp6c/prefix.nix -------------------------------------------------------------------------------- /modules/dnsmasq/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/dnsmasq/default.nix -------------------------------------------------------------------------------- /modules/dnsmasq/service.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/dnsmasq/service.nix -------------------------------------------------------------------------------- /modules/early/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/early/default.nix -------------------------------------------------------------------------------- /modules/firewall/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/firewall/default.nix -------------------------------------------------------------------------------- /modules/firewall/ifwatch.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/firewall/ifwatch.fnl -------------------------------------------------------------------------------- /modules/firewall/service.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/firewall/service.nix -------------------------------------------------------------------------------- /modules/hardware.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/hardware.nix -------------------------------------------------------------------------------- /modules/hostapd/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/hostapd/default.nix -------------------------------------------------------------------------------- /modules/hostapd/service.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/hostapd/service.nix -------------------------------------------------------------------------------- /modules/hostname.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/hostname.nix -------------------------------------------------------------------------------- /modules/ifwait/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/ifwait/default.nix -------------------------------------------------------------------------------- /modules/ifwait/ifwait.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/ifwait/ifwait.nix -------------------------------------------------------------------------------- /modules/kernel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/kernel/default.nix -------------------------------------------------------------------------------- /modules/klogd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/klogd.nix -------------------------------------------------------------------------------- /modules/logging.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/logging.nix -------------------------------------------------------------------------------- /modules/mdevd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/mdevd.nix -------------------------------------------------------------------------------- /modules/mount/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/mount/default.nix -------------------------------------------------------------------------------- /modules/mount/service.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/mount/service.nix -------------------------------------------------------------------------------- /modules/network/address.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/network/address.nix -------------------------------------------------------------------------------- /modules/network/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/network/default.nix -------------------------------------------------------------------------------- /modules/network/dhcpc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/network/dhcpc.nix -------------------------------------------------------------------------------- /modules/network/forward.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/network/forward.nix -------------------------------------------------------------------------------- /modules/network/link.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/network/link.nix -------------------------------------------------------------------------------- /modules/network/route.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/network/route.nix -------------------------------------------------------------------------------- /modules/ntp/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/ntp/default.nix -------------------------------------------------------------------------------- /modules/ntp/service.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/ntp/service.nix -------------------------------------------------------------------------------- /modules/outputs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs.nix -------------------------------------------------------------------------------- /modules/outputs/boot-fit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/boot-fit.nix -------------------------------------------------------------------------------- /modules/outputs/btrfs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/btrfs.nix -------------------------------------------------------------------------------- /modules/outputs/ext4fs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/ext4fs.nix -------------------------------------------------------------------------------- /modules/outputs/initramfs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/initramfs.nix -------------------------------------------------------------------------------- /modules/outputs/jffs2.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/jffs2.nix -------------------------------------------------------------------------------- /modules/outputs/mbrimage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/mbrimage.nix -------------------------------------------------------------------------------- /modules/outputs/mtdimage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/mtdimage.nix -------------------------------------------------------------------------------- /modules/outputs/squashfs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/squashfs.nix -------------------------------------------------------------------------------- /modules/outputs/tftpboot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/tftpboot.nix -------------------------------------------------------------------------------- /modules/outputs/ubifs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/ubifs.nix -------------------------------------------------------------------------------- /modules/outputs/ubimage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/ubimage.nix -------------------------------------------------------------------------------- /modules/outputs/ubivolume.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/ubivolume.nix -------------------------------------------------------------------------------- /modules/outputs/uimage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/uimage.nix -------------------------------------------------------------------------------- /modules/outputs/vmroot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/outputs/vmroot.nix -------------------------------------------------------------------------------- /modules/ppp/common.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/ppp/common.nix -------------------------------------------------------------------------------- /modules/ppp/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/ppp/default.nix -------------------------------------------------------------------------------- /modules/ppp/l2tp.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/ppp/l2tp.nix -------------------------------------------------------------------------------- /modules/ppp/pppoe.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/ppp/pppoe.nix -------------------------------------------------------------------------------- /modules/profiles/gateway.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/profiles/gateway.nix -------------------------------------------------------------------------------- /modules/profiles/wap.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/profiles/wap.nix -------------------------------------------------------------------------------- /modules/ramdisk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/ramdisk.nix -------------------------------------------------------------------------------- /modules/s6/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/s6/default.nix -------------------------------------------------------------------------------- /modules/s6/scripts/rc.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/s6/scripts/rc.init -------------------------------------------------------------------------------- /modules/s6/scripts/runlevel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/s6/scripts/runlevel -------------------------------------------------------------------------------- /modules/schnapps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/schnapps/default.nix -------------------------------------------------------------------------------- /modules/secrets/tang.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/secrets/tang.nix -------------------------------------------------------------------------------- /modules/ssh/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/ssh/default.nix -------------------------------------------------------------------------------- /modules/ssh/ssh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/ssh/ssh.nix -------------------------------------------------------------------------------- /modules/usb.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/usb.nix -------------------------------------------------------------------------------- /modules/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/users.nix -------------------------------------------------------------------------------- /modules/vlan/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/vlan/default.nix -------------------------------------------------------------------------------- /modules/vlan/service.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/vlan/service.nix -------------------------------------------------------------------------------- /modules/wlan.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/wlan.nix -------------------------------------------------------------------------------- /modules/wwan/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/modules/wwan/default.nix -------------------------------------------------------------------------------- /nat.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/nat.nft -------------------------------------------------------------------------------- /overlay.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/overlay.nix -------------------------------------------------------------------------------- /pkgs/anoia/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/Makefile -------------------------------------------------------------------------------- /pkgs/anoia/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/README -------------------------------------------------------------------------------- /pkgs/anoia/assert.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/assert.fnl -------------------------------------------------------------------------------- /pkgs/anoia/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/default.nix -------------------------------------------------------------------------------- /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 | 30. -------------------------------------------------------------------------------- /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/anoia/fs.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/fs.fnl -------------------------------------------------------------------------------- /pkgs/anoia/init.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/init.fnl -------------------------------------------------------------------------------- /pkgs/anoia/net/constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/net/constants.c -------------------------------------------------------------------------------- /pkgs/anoia/nl.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/nl.fnl -------------------------------------------------------------------------------- /pkgs/anoia/process.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/process.fnl -------------------------------------------------------------------------------- /pkgs/anoia/run-tests.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/run-tests.fnl -------------------------------------------------------------------------------- /pkgs/anoia/svc.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/svc.fnl -------------------------------------------------------------------------------- /pkgs/anoia/tai64.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/tai64.fnl -------------------------------------------------------------------------------- /pkgs/anoia/test-nl.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/test-nl.fnl -------------------------------------------------------------------------------- /pkgs/anoia/test-svc.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/test-svc.fnl -------------------------------------------------------------------------------- /pkgs/anoia/test.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/anoia/test.fnl -------------------------------------------------------------------------------- /pkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/default.nix -------------------------------------------------------------------------------- /pkgs/devout/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/devout/default.nix -------------------------------------------------------------------------------- /pkgs/devout/devout.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/devout/devout.fnl -------------------------------------------------------------------------------- /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/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/disable: -------------------------------------------------------------------------------- 1 | 0 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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port2/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port3/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port4/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port5/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port6/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port7/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port8/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0/usb1-port9/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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/control: -------------------------------------------------------------------------------- 1 | auto 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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/carrier: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/dormant: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/duplex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/ifalias: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/speed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.12/net/wwp0s20f0u2i12/testing: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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.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/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/control: -------------------------------------------------------------------------------- 1 | auto 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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/control: -------------------------------------------------------------------------------- 1 | auto 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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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_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/configuration: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/type: -------------------------------------------------------------------------------- 1 | Bulk 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_02/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/type: -------------------------------------------------------------------------------- 1 | Interrupt 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_81/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/type: -------------------------------------------------------------------------------- 1 | Bulk 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/ep_82/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/type: -------------------------------------------------------------------------------- 1 | Isoc 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_03/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/type: -------------------------------------------------------------------------------- 1 | Isoc 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/ep_83/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/configuration: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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_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/type: -------------------------------------------------------------------------------- 1 | Interrupt 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/ep_83/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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/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/control: -------------------------------------------------------------------------------- 1 | auto 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_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.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_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/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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_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_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/configuration: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/disable: -------------------------------------------------------------------------------- 1 | 0 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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port2/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port3/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port4/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port5/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/power/control: -------------------------------------------------------------------------------- 1 | auto 2 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0/usb2-port6/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/configuration: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/autosuspend_delay_ms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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_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/uevent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/devout/fixtures/sys/devices/pci0000:00/0000:00:14.0/wakeup/wakeup21/wakeup_count: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /pkgs/devout/test.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/devout/test.fnl -------------------------------------------------------------------------------- /pkgs/fennel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/fennel/default.nix -------------------------------------------------------------------------------- /pkgs/fennelc/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/fennelc/default.nix -------------------------------------------------------------------------------- /pkgs/fennelc/fennelc.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/fennelc/fennelc.fnl -------------------------------------------------------------------------------- /pkgs/firewallgen/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/firewallgen/test.nix -------------------------------------------------------------------------------- /pkgs/go-l2tp/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/go-l2tp/default.nix -------------------------------------------------------------------------------- /pkgs/hi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/hi/default.nix -------------------------------------------------------------------------------- /pkgs/ifwait/.#README: -------------------------------------------------------------------------------- 1 | dan@noetbook.911352349782478447 -------------------------------------------------------------------------------- /pkgs/ifwait/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/ifwait/default.nix -------------------------------------------------------------------------------- /pkgs/ifwait/events-fixture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/ifwait/events-fixture -------------------------------------------------------------------------------- /pkgs/ifwait/ifwait.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/ifwait/ifwait.fnl -------------------------------------------------------------------------------- /pkgs/ifwait/waitup.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/ifwait/waitup.fnl -------------------------------------------------------------------------------- /pkgs/kernel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/kernel/default.nix -------------------------------------------------------------------------------- /pkgs/kernel/dtb.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/kernel/dtb.nix -------------------------------------------------------------------------------- /pkgs/kernel/kernel_fdt.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/kernel/kernel_fdt.its -------------------------------------------------------------------------------- /pkgs/kernel/uimage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/kernel/uimage.nix -------------------------------------------------------------------------------- /pkgs/kexec-map-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/kexec-map-file.patch -------------------------------------------------------------------------------- /pkgs/levitate/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/levitate/default.nix -------------------------------------------------------------------------------- /pkgs/libubootenv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/libubootenv/Makefile -------------------------------------------------------------------------------- /pkgs/linotify/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/linotify/default.nix -------------------------------------------------------------------------------- /pkgs/logshippers/incz.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/logshippers/incz.fnl -------------------------------------------------------------------------------- /pkgs/logtap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/logtap/Makefile -------------------------------------------------------------------------------- /pkgs/logtap/backfill.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/logtap/backfill.fnl -------------------------------------------------------------------------------- /pkgs/logtap/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/logtap/default.nix -------------------------------------------------------------------------------- /pkgs/logtap/logtap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/logtap/logtap.c -------------------------------------------------------------------------------- /pkgs/lualinux/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/lualinux/default.nix -------------------------------------------------------------------------------- /pkgs/lzma/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/lzma/default.nix -------------------------------------------------------------------------------- /pkgs/mac80211/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/mac80211/default.nix -------------------------------------------------------------------------------- /pkgs/minisock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/minisock/default.nix -------------------------------------------------------------------------------- /pkgs/nellie/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/nellie/default.nix -------------------------------------------------------------------------------- /pkgs/nellie/nellie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/nellie/nellie.c -------------------------------------------------------------------------------- /pkgs/nellie/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/nellie/test.lua -------------------------------------------------------------------------------- /pkgs/odhcp-script/expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/odhcp-script/expected -------------------------------------------------------------------------------- /pkgs/odhcp-script/test.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/odhcp-script/test.env -------------------------------------------------------------------------------- /pkgs/odhcp-script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/odhcp-script/test.sh -------------------------------------------------------------------------------- /pkgs/odhcp6c/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/odhcp6c/default.nix -------------------------------------------------------------------------------- /pkgs/openwrt/2410.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/openwrt/2410.nix -------------------------------------------------------------------------------- /pkgs/openwrt/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/openwrt/default.nix -------------------------------------------------------------------------------- /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 | 30. -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /pkgs/ppp/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/ppp/default.nix -------------------------------------------------------------------------------- /pkgs/pppoe/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/pppoe/default.nix -------------------------------------------------------------------------------- /pkgs/preinit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/preinit/Makefile -------------------------------------------------------------------------------- /pkgs/preinit/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/preinit/default.nix -------------------------------------------------------------------------------- /pkgs/preinit/opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/preinit/opts.h -------------------------------------------------------------------------------- /pkgs/preinit/parseopts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/preinit/parseopts.c -------------------------------------------------------------------------------- /pkgs/preinit/preinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/preinit/preinit.c -------------------------------------------------------------------------------- /pkgs/preinit/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/preinit/shell.nix -------------------------------------------------------------------------------- /pkgs/routeros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/routeros/README.md -------------------------------------------------------------------------------- /pkgs/routeros/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/routeros/default.nix -------------------------------------------------------------------------------- /pkgs/rxi-json/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/rxi-json/default.nix -------------------------------------------------------------------------------- /pkgs/s6-rc-up-tree/test-services/atz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/s6-rc-up-tree/test-services/daub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/s6-rc-up-tree/test-services/wan-proxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/s6-rc-up-tree/test-services/wattle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/s6-rc-up-tree/test-services/wombat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkgs/schnapps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/schnapps/default.nix -------------------------------------------------------------------------------- /pkgs/swconfig/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/swconfig/default.nix -------------------------------------------------------------------------------- /pkgs/systemconfig/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/systemconfig/defs.h -------------------------------------------------------------------------------- /pkgs/tangc/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/tangc/default.nix -------------------------------------------------------------------------------- /pkgs/tangc/tangc.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/tangc/tangc.fnl -------------------------------------------------------------------------------- /pkgs/tufted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/tufted/README.md -------------------------------------------------------------------------------- /pkgs/tufted/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/tufted/default.nix -------------------------------------------------------------------------------- /pkgs/tufted/tftp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/tufted/tftp.lua -------------------------------------------------------------------------------- /pkgs/tufted/tufted.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/tufted/tufted.fnl -------------------------------------------------------------------------------- /pkgs/uevent-watch/test.fnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/pkgs/uevent-watch/test.fnl -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/shell.nix -------------------------------------------------------------------------------- /tests/ci.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/ci.nix -------------------------------------------------------------------------------- /tests/ext4/script.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/ext4/script.expect -------------------------------------------------------------------------------- /tests/ext4/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/ext4/test.nix -------------------------------------------------------------------------------- /tests/fennel/hello.fnl: -------------------------------------------------------------------------------- 1 | (print "hello") 2 | -------------------------------------------------------------------------------- /tests/fennel/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/fennel/test.nix -------------------------------------------------------------------------------- /tests/inout/script.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/inout/script.expect -------------------------------------------------------------------------------- /tests/inout/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/inout/test.nix -------------------------------------------------------------------------------- /tests/jffs2/script.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/jffs2/script.expect -------------------------------------------------------------------------------- /tests/jffs2/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/jffs2/test.nix -------------------------------------------------------------------------------- /tests/kernel/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/kernel/run.sh -------------------------------------------------------------------------------- /tests/min-copy-closure/id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/min-copy-closure/id -------------------------------------------------------------------------------- /tests/pppoe/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/pppoe/test.nix -------------------------------------------------------------------------------- /tests/pseudofiles/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/pseudofiles/test.nix -------------------------------------------------------------------------------- /tests/smoke/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/smoke/test.nix -------------------------------------------------------------------------------- /tests/test-helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/test-helpers.sh -------------------------------------------------------------------------------- /tests/tftpboot/a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/tftpboot/a.sh -------------------------------------------------------------------------------- /tests/tftpboot/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/tftpboot/test.nix -------------------------------------------------------------------------------- /tests/updown/script.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/updown/script.expect -------------------------------------------------------------------------------- /tests/updown/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/updown/test.nix -------------------------------------------------------------------------------- /tests/wlan/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/tests/wlan/test.nix -------------------------------------------------------------------------------- /vanilla-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telent/liminix/HEAD/vanilla-configuration.nix --------------------------------------------------------------------------------