this repo has no description

feat: add arges (#81)

authored by tghanken.tngl.sh and committed by GitHub 4d747cb6 e54e9e91

Changed files
+5407
nix
+43
nix/hosts/arges/configuration.nix
··· 1 + { 2 + inputs, 3 + flake, 4 + ... 5 + }: { 6 + imports = [ 7 + # Standard nixos-anywhere modules 8 + inputs.disko.nixosModules.disko 9 + inputs.nixos-facter-modules.nixosModules.facter 10 + { 11 + config.facter.reportPath = 12 + if builtins.pathExists ./facter.json 13 + then ./facter.json 14 + else throw "Have you forgotten to run nixos-anywhere with `--generate-hardware-config nixos-facter ./facter.json`?"; 15 + } 16 + 17 + # Nixos hardware additions 18 + inputs.nixos-hardware.nixosModules.gmktec-nucbox-g3-plus 19 + 20 + # Add user modules 21 + flake.modules.users.tghanken 22 + 23 + # Additional NixOs modules from this flake 24 + flake.nixosModules.bootloader 25 + flake.nixosModules.bootstrap 26 + flake.nixosModules.determinate 27 + flake.nixosModules.kernel 28 + flake.nixosModules.networking 29 + flake.nixosModules.tailscale 30 + 31 + flake.modules.secrets.base 32 + 33 + flake.modules.utils.auto-upgrade 34 + flake.modules.utils.earlyoom 35 + ]; 36 + 37 + # Required for nixos-anywhere 38 + disko.devices = import ./disk-config.nix; 39 + networking.hostName = "arges"; 40 + networking.hostId = "be6e3de2"; # Generate using `head -c 8 /etc/machine-id` 41 + 42 + system.stateVersion = "25.11"; # initial nixos state 43 + }
+75
nix/hosts/arges/disk-config.nix
··· 1 + { 2 + disk = { 3 + boot = { 4 + type = "disk"; 5 + device = "/dev/disk/by-id/mmc-TWSC_0x1f41b194"; 6 + content = { 7 + type = "gpt"; 8 + partitions = { 9 + ESP = { 10 + size = "1G"; 11 + type = "EF00"; 12 + content = { 13 + type = "filesystem"; 14 + format = "vfat"; 15 + mountpoint = "/boot"; 16 + }; 17 + priority = 1; 18 + }; 19 + zfs = { 20 + size = "100%"; 21 + content = { 22 + type = "zfs"; 23 + pool = "zroot"; 24 + }; 25 + priority = 2; 26 + }; 27 + }; 28 + }; 29 + }; 30 + }; 31 + zpool = { 32 + zroot = { 33 + type = "zpool"; 34 + mode = { 35 + topology = { 36 + type = "topology"; 37 + cache = []; 38 + vdev = [ 39 + { 40 + members = ["boot"]; 41 + } 42 + ]; 43 + }; 44 + }; 45 + rootFsOptions = { 46 + xattr = "sa"; 47 + compression = "lz4"; 48 + atime = "off"; 49 + recordsize = "64K"; 50 + "com.sun:auto-snapshot" = "true"; 51 + }; 52 + mountpoint = "/"; 53 + datasets = { 54 + nix = { 55 + type = "zfs_fs"; 56 + mountpoint = "/nix"; 57 + options."com.sun:auto-snapshot" = "false"; 58 + }; 59 + var = { 60 + type = "zfs_fs"; 61 + mountpoint = "/var"; 62 + }; 63 + home = { 64 + type = "zfs_fs"; 65 + mountpoint = "/home"; 66 + }; 67 + reserved = { 68 + type = "zfs_fs"; 69 + options.refreservation = "10G"; 70 + options.mountpoint = "none"; 71 + }; 72 + }; 73 + }; 74 + }; 75 + }
+5286
nix/hosts/arges/facter.json
··· 1 + { 2 + "version": 1, 3 + "system": "x86_64-linux", 4 + "virtualisation": "none", 5 + "hardware": { 6 + "bios": { 7 + "apm_info": { 8 + "supported": false, 9 + "enabled": false, 10 + "version": 0, 11 + "sub_version": 0, 12 + "bios_flags": 0 13 + }, 14 + "vbe_info": { 15 + "version": 0, 16 + "video_memory": 0 17 + }, 18 + "pnp": true, 19 + "pnp_id": 0, 20 + "lba_support": false, 21 + "low_memory_size": 646144, 22 + "smbios_version": 774 23 + }, 24 + "bluetooth": [ 25 + { 26 + "index": 38, 27 + "attached_to": 36, 28 + "class_list": [ 29 + "usb", 30 + "bluetooth" 31 + ], 32 + "bus_type": { 33 + "hex": "0086", 34 + "name": "USB", 35 + "value": 134 36 + }, 37 + "slot": { 38 + "bus": 0, 39 + "number": 0 40 + }, 41 + "base_class": { 42 + "hex": "0115", 43 + "name": "Bluetooth Device", 44 + "value": 277 45 + }, 46 + "vendor": { 47 + "hex": "8087", 48 + "value": 32903 49 + }, 50 + "device": { 51 + "hex": "0026", 52 + "value": 38 53 + }, 54 + "revision": { 55 + "hex": "0000", 56 + "name": "0.02", 57 + "value": 0 58 + }, 59 + "model": "Bluetooth Device", 60 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10:1.0", 61 + "sysfs_bus_id": "3-10:1.0", 62 + "resources": [ 63 + { 64 + "type": "baud", 65 + "speed": 12000000, 66 + "bits": 0, 67 + "stop_bits": 0, 68 + "parity": 0, 69 + "handshake": 0 70 + } 71 + ], 72 + "detail": { 73 + "device_class": { 74 + "hex": "00e0", 75 + "name": "wireless", 76 + "value": 224 77 + }, 78 + "device_subclass": { 79 + "hex": "0001", 80 + "name": "audio", 81 + "value": 1 82 + }, 83 + "device_protocol": 1, 84 + "interface_class": { 85 + "hex": "00e0", 86 + "name": "wireless", 87 + "value": 224 88 + }, 89 + "interface_subclass": { 90 + "hex": "0001", 91 + "name": "audio", 92 + "value": 1 93 + }, 94 + "interface_protocol": 1, 95 + "interface_number": 0, 96 + "interface_alternate_setting": 0 97 + }, 98 + "hotplug": "usb", 99 + "driver": "btusb", 100 + "driver_module": "btusb", 101 + "drivers": [ 102 + "btusb" 103 + ], 104 + "driver_modules": [ 105 + "btusb" 106 + ], 107 + "module_alias": "usb:v8087p0026d0002dcE0dsc01dp01icE0isc01ip01in00" 108 + }, 109 + { 110 + "index": 50, 111 + "attached_to": 36, 112 + "class_list": [ 113 + "usb", 114 + "bluetooth" 115 + ], 116 + "bus_type": { 117 + "hex": "0086", 118 + "name": "USB", 119 + "value": 134 120 + }, 121 + "slot": { 122 + "bus": 0, 123 + "number": 0 124 + }, 125 + "base_class": { 126 + "hex": "0115", 127 + "name": "Bluetooth Device", 128 + "value": 277 129 + }, 130 + "vendor": { 131 + "hex": "8087", 132 + "value": 32903 133 + }, 134 + "device": { 135 + "hex": "0026", 136 + "value": 38 137 + }, 138 + "revision": { 139 + "hex": "0000", 140 + "name": "0.02", 141 + "value": 0 142 + }, 143 + "model": "Bluetooth Device", 144 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-10/3-10:1.1", 145 + "sysfs_bus_id": "3-10:1.1", 146 + "resources": [ 147 + { 148 + "type": "baud", 149 + "speed": 12000000, 150 + "bits": 0, 151 + "stop_bits": 0, 152 + "parity": 0, 153 + "handshake": 0 154 + } 155 + ], 156 + "detail": { 157 + "device_class": { 158 + "hex": "00e0", 159 + "name": "wireless", 160 + "value": 224 161 + }, 162 + "device_subclass": { 163 + "hex": "0001", 164 + "name": "audio", 165 + "value": 1 166 + }, 167 + "device_protocol": 1, 168 + "interface_class": { 169 + "hex": "00e0", 170 + "name": "wireless", 171 + "value": 224 172 + }, 173 + "interface_subclass": { 174 + "hex": "0001", 175 + "name": "audio", 176 + "value": 1 177 + }, 178 + "interface_protocol": 1, 179 + "interface_number": 1, 180 + "interface_alternate_setting": 0 181 + }, 182 + "hotplug": "usb", 183 + "driver": "btusb", 184 + "driver_module": "btusb", 185 + "drivers": [ 186 + "btusb" 187 + ], 188 + "driver_modules": [ 189 + "btusb" 190 + ], 191 + "module_alias": "usb:v8087p0026d0002dcE0dsc01dp01icE0isc01ip01in01" 192 + } 193 + ], 194 + "bridge": [ 195 + { 196 + "index": 9, 197 + "attached_to": 0, 198 + "class_list": [ 199 + "pci", 200 + "bridge" 201 + ], 202 + "bus_type": { 203 + "hex": "0004", 204 + "name": "PCI", 205 + "value": 4 206 + }, 207 + "slot": { 208 + "bus": 0, 209 + "number": 28 210 + }, 211 + "base_class": { 212 + "hex": "0006", 213 + "name": "Bridge", 214 + "value": 6 215 + }, 216 + "sub_class": { 217 + "hex": "0004", 218 + "name": "PCI bridge", 219 + "value": 4 220 + }, 221 + "pci_interface": { 222 + "hex": "0000", 223 + "name": "Normal decode", 224 + "value": 0 225 + }, 226 + "vendor": { 227 + "hex": "8086", 228 + "name": "Intel Corporation", 229 + "value": 32902 230 + }, 231 + "device": { 232 + "hex": "54be", 233 + "value": 21694 234 + }, 235 + "model": "Intel PCI bridge", 236 + "sysfs_id": "/devices/pci0000:00/0000:00:1c.0", 237 + "sysfs_bus_id": "0000:00:1c.0", 238 + "detail": { 239 + "function": 0, 240 + "command": 1031, 241 + "header_type": 1, 242 + "secondary_bus": 1, 243 + "prog_if": 0 244 + }, 245 + "driver": "pcieport", 246 + "driver_module": "pcieportdrv", 247 + "drivers": [ 248 + "pcieport" 249 + ], 250 + "driver_modules": [ 251 + "pcieportdrv" 252 + ], 253 + "module_alias": "pci:v00008086d000054BEsv00000000sd00000000bc06sc04i00" 254 + }, 255 + { 256 + "index": 10, 257 + "attached_to": 17, 258 + "class_list": [ 259 + "pci", 260 + "bridge" 261 + ], 262 + "bus_type": { 263 + "hex": "0004", 264 + "name": "PCI", 265 + "value": 4 266 + }, 267 + "slot": { 268 + "bus": 2, 269 + "number": 7 270 + }, 271 + "base_class": { 272 + "hex": "0006", 273 + "name": "Bridge", 274 + "value": 6 275 + }, 276 + "sub_class": { 277 + "hex": "0004", 278 + "name": "PCI bridge", 279 + "value": 4 280 + }, 281 + "pci_interface": { 282 + "hex": "0000", 283 + "name": "Normal decode", 284 + "value": 0 285 + }, 286 + "vendor": { 287 + "hex": "1b21", 288 + "value": 6945 289 + }, 290 + "sub_vendor": { 291 + "hex": "1b21", 292 + "value": 6945 293 + }, 294 + "device": { 295 + "hex": "1182", 296 + "value": 4482 297 + }, 298 + "sub_device": { 299 + "hex": "118f", 300 + "value": 4495 301 + }, 302 + "model": "PCI bridge", 303 + "sysfs_id": "/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/0000:02:07.0", 304 + "sysfs_bus_id": "0000:02:07.0", 305 + "detail": { 306 + "function": 0, 307 + "command": 1031, 308 + "header_type": 1, 309 + "secondary_bus": 4, 310 + "prog_if": 0 311 + }, 312 + "driver": "pcieport", 313 + "driver_module": "pcieportdrv", 314 + "drivers": [ 315 + "pcieport" 316 + ], 317 + "driver_modules": [ 318 + "pcieportdrv" 319 + ], 320 + "module_alias": "pci:v00001B21d00001182sv00001B21sd0000118Fbc06sc04i00" 321 + }, 322 + { 323 + "index": 13, 324 + "attached_to": 0, 325 + "class_list": [ 326 + "pci", 327 + "bridge" 328 + ], 329 + "bus_type": { 330 + "hex": "0004", 331 + "name": "PCI", 332 + "value": 4 333 + }, 334 + "slot": { 335 + "bus": 0, 336 + "number": 31 337 + }, 338 + "base_class": { 339 + "hex": "0006", 340 + "name": "Bridge", 341 + "value": 6 342 + }, 343 + "sub_class": { 344 + "hex": "0001", 345 + "name": "ISA bridge", 346 + "value": 1 347 + }, 348 + "vendor": { 349 + "hex": "8086", 350 + "name": "Intel Corporation", 351 + "value": 32902 352 + }, 353 + "device": { 354 + "hex": "5481", 355 + "value": 21633 356 + }, 357 + "model": "Intel ISA bridge", 358 + "sysfs_id": "/devices/pci0000:00/0000:00:1f.0", 359 + "sysfs_bus_id": "0000:00:1f.0", 360 + "detail": { 361 + "function": 0, 362 + "command": 1031, 363 + "header_type": 0, 364 + "secondary_bus": 0, 365 + "prog_if": 0 366 + }, 367 + "module_alias": "pci:v00008086d00005481sv00000000sd00000000bc06sc01i00", 368 + "label": "Onboard - Other" 369 + }, 370 + { 371 + "index": 14, 372 + "attached_to": 17, 373 + "class_list": [ 374 + "pci", 375 + "bridge" 376 + ], 377 + "bus_type": { 378 + "hex": "0004", 379 + "name": "PCI", 380 + "value": 4 381 + }, 382 + "slot": { 383 + "bus": 2, 384 + "number": 3 385 + }, 386 + "base_class": { 387 + "hex": "0006", 388 + "name": "Bridge", 389 + "value": 6 390 + }, 391 + "sub_class": { 392 + "hex": "0004", 393 + "name": "PCI bridge", 394 + "value": 4 395 + }, 396 + "pci_interface": { 397 + "hex": "0000", 398 + "name": "Normal decode", 399 + "value": 0 400 + }, 401 + "vendor": { 402 + "hex": "1b21", 403 + "value": 6945 404 + }, 405 + "sub_vendor": { 406 + "hex": "1b21", 407 + "value": 6945 408 + }, 409 + "device": { 410 + "hex": "1182", 411 + "value": 4482 412 + }, 413 + "sub_device": { 414 + "hex": "118f", 415 + "value": 4495 416 + }, 417 + "model": "PCI bridge", 418 + "sysfs_id": "/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/0000:02:03.0", 419 + "sysfs_bus_id": "0000:02:03.0", 420 + "detail": { 421 + "function": 0, 422 + "command": 1031, 423 + "header_type": 1, 424 + "secondary_bus": 3, 425 + "prog_if": 0 426 + }, 427 + "driver": "pcieport", 428 + "driver_module": "pcieportdrv", 429 + "drivers": [ 430 + "pcieport" 431 + ], 432 + "driver_modules": [ 433 + "pcieportdrv" 434 + ], 435 + "module_alias": "pci:v00001B21d00001182sv00001B21sd0000118Fbc06sc04i00" 436 + }, 437 + { 438 + "index": 17, 439 + "attached_to": 9, 440 + "class_list": [ 441 + "pci", 442 + "bridge" 443 + ], 444 + "bus_type": { 445 + "hex": "0004", 446 + "name": "PCI", 447 + "value": 4 448 + }, 449 + "slot": { 450 + "bus": 1, 451 + "number": 0 452 + }, 453 + "base_class": { 454 + "hex": "0006", 455 + "name": "Bridge", 456 + "value": 6 457 + }, 458 + "sub_class": { 459 + "hex": "0004", 460 + "name": "PCI bridge", 461 + "value": 4 462 + }, 463 + "pci_interface": { 464 + "hex": "0000", 465 + "name": "Normal decode", 466 + "value": 0 467 + }, 468 + "vendor": { 469 + "hex": "1b21", 470 + "value": 6945 471 + }, 472 + "sub_vendor": { 473 + "hex": "1b21", 474 + "value": 6945 475 + }, 476 + "device": { 477 + "hex": "1182", 478 + "value": 4482 479 + }, 480 + "sub_device": { 481 + "hex": "118f", 482 + "value": 4495 483 + }, 484 + "model": "PCI bridge", 485 + "sysfs_id": "/devices/pci0000:00/0000:00:1c.0/0000:01:00.0", 486 + "sysfs_bus_id": "0000:01:00.0", 487 + "detail": { 488 + "function": 0, 489 + "command": 7, 490 + "header_type": 1, 491 + "secondary_bus": 2, 492 + "prog_if": 0 493 + }, 494 + "driver": "pcieport", 495 + "driver_module": "pcieportdrv", 496 + "drivers": [ 497 + "pcieport" 498 + ], 499 + "driver_modules": [ 500 + "pcieportdrv" 501 + ], 502 + "module_alias": "pci:v00001B21d00001182sv00001B21sd0000118Fbc06sc04i00" 503 + }, 504 + { 505 + "index": 20, 506 + "attached_to": 0, 507 + "class_list": [ 508 + "pci", 509 + "bridge" 510 + ], 511 + "bus_type": { 512 + "hex": "0004", 513 + "name": "PCI", 514 + "value": 4 515 + }, 516 + "slot": { 517 + "bus": 0, 518 + "number": 0 519 + }, 520 + "base_class": { 521 + "hex": "0006", 522 + "name": "Bridge", 523 + "value": 6 524 + }, 525 + "sub_class": { 526 + "hex": "0000", 527 + "name": "Host bridge", 528 + "value": 0 529 + }, 530 + "vendor": { 531 + "hex": "8086", 532 + "name": "Intel Corporation", 533 + "value": 32902 534 + }, 535 + "device": { 536 + "hex": "461c", 537 + "value": 17948 538 + }, 539 + "model": "Intel Host bridge", 540 + "sysfs_id": "/devices/pci0000:00/0000:00:00.0", 541 + "sysfs_bus_id": "0000:00:00.0", 542 + "detail": { 543 + "function": 0, 544 + "command": 6, 545 + "header_type": 0, 546 + "secondary_bus": 0, 547 + "prog_if": 0 548 + }, 549 + "driver": "igen6_edac", 550 + "driver_module": "igen6_edac", 551 + "drivers": [ 552 + "igen6_edac" 553 + ], 554 + "driver_modules": [ 555 + "igen6_edac" 556 + ], 557 + "module_alias": "pci:v00008086d0000461Csv00000000sd00000000bc06sc00i00", 558 + "label": "Onboard - Other" 559 + } 560 + ], 561 + "cpu": [ 562 + { 563 + "architecture": "x86_64", 564 + "vendor_name": "GenuineIntel", 565 + "model_name": "Intel(R) N150", 566 + "family": 6, 567 + "model": 190, 568 + "stepping": 0, 569 + "features": [ 570 + "fpu", 571 + "vme", 572 + "de", 573 + "pse", 574 + "tsc", 575 + "msr", 576 + "pae", 577 + "mce", 578 + "cx8", 579 + "apic", 580 + "sep", 581 + "mtrr", 582 + "pge", 583 + "mca", 584 + "cmov", 585 + "pat", 586 + "pse36", 587 + "clflush", 588 + "dts", 589 + "acpi", 590 + "mmx", 591 + "fxsr", 592 + "sse", 593 + "sse2", 594 + "ss", 595 + "ht", 596 + "tm", 597 + "pbe", 598 + "syscall", 599 + "nx", 600 + "pdpe1gb", 601 + "rdtscp", 602 + "lm", 603 + "constant_tsc", 604 + "art", 605 + "arch_perfmon", 606 + "pebs", 607 + "bts", 608 + "rep_good", 609 + "nopl", 610 + "xtopology", 611 + "nonstop_tsc", 612 + "cpuid", 613 + "aperfmperf", 614 + "tsc_known_freq", 615 + "pni", 616 + "pclmulqdq", 617 + "dtes64", 618 + "monitor", 619 + "ds_cpl", 620 + "vmx", 621 + "smx", 622 + "est", 623 + "tm2", 624 + "ssse3", 625 + "sdbg", 626 + "fma", 627 + "cx16", 628 + "xtpr", 629 + "pdcm", 630 + "pcid", 631 + "sse4_1", 632 + "sse4_2", 633 + "x2apic", 634 + "movbe", 635 + "popcnt", 636 + "tsc_deadline_timer", 637 + "aes", 638 + "xsave", 639 + "avx", 640 + "f16c", 641 + "rdrand", 642 + "lahf_lm", 643 + "abm", 644 + "3dnowprefetch", 645 + "cpuid_fault", 646 + "epb", 647 + "cat_l2", 648 + "cdp_l2", 649 + "ssbd", 650 + "ibrs", 651 + "ibpb", 652 + "stibp", 653 + "ibrs_enhanced", 654 + "tpr_shadow", 655 + "flexpriority", 656 + "ept", 657 + "vpid", 658 + "ept_ad", 659 + "fsgsbase", 660 + "tsc_adjust", 661 + "bmi1", 662 + "avx2", 663 + "smep", 664 + "bmi2", 665 + "erms", 666 + "invpcid", 667 + "rdt_a", 668 + "rdseed", 669 + "adx", 670 + "smap", 671 + "clflushopt", 672 + "clwb", 673 + "intel_pt", 674 + "sha_ni", 675 + "xsaveopt", 676 + "xsavec", 677 + "xgetbv1", 678 + "xsaves", 679 + "split_lock_detect", 680 + "user_shstk", 681 + "avx_vnni", 682 + "dtherm", 683 + "ida", 684 + "arat", 685 + "pln", 686 + "pts", 687 + "hwp", 688 + "hwp_notify", 689 + "hwp_act_window", 690 + "hwp_epp", 691 + "hwp_pkg_req", 692 + "vnmi", 693 + "umip", 694 + "pku", 695 + "ospke", 696 + "waitpkg", 697 + "gfni", 698 + "vaes", 699 + "vpclmulqdq", 700 + "rdpid", 701 + "movdiri", 702 + "movdir64b", 703 + "fsrm", 704 + "md_clear", 705 + "serialize", 706 + "arch_lbr", 707 + "ibt", 708 + "flush_l1d", 709 + "arch_capabilities" 710 + ], 711 + "bugs": [ 712 + "spectre_v1", 713 + "spectre_v2", 714 + "spec_store_bypass", 715 + "swapgs", 716 + "rfds", 717 + "bhi", 718 + "spectre_v2_user", 719 + "vmscape" 720 + ], 721 + "power_management": [ 722 + "" 723 + ], 724 + "bogo": 1612, 725 + "cache": 6144, 726 + "units": 128, 727 + "page_size": 4096, 728 + "physical_id": 0, 729 + "siblings": 4, 730 + "cores": 4, 731 + "fpu": false, 732 + "fpu_exception": false, 733 + "cpuid_level": 32, 734 + "write_protect": false, 735 + "tlb_size": 32718, 736 + "clflush_size": 64, 737 + "cache_alignment": 64, 738 + "address_sizes": { 739 + "physical": "0x27", 740 + "virtual": "0x30" 741 + } 742 + } 743 + ], 744 + "disk": [ 745 + { 746 + "index": 31, 747 + "attached_to": 29, 748 + "class_list": [ 749 + "disk", 750 + "block_device" 751 + ], 752 + "base_class": { 753 + "hex": "0106", 754 + "name": "Mass Storage Device", 755 + "value": 262 756 + }, 757 + "sub_class": { 758 + "hex": "0000", 759 + "name": "Disk", 760 + "value": 0 761 + }, 762 + "serial": "0x1f41b194", 763 + "model": "Disk", 764 + "sysfs_id": "/class/block/mmcblk0", 765 + "sysfs_bus_id": "mmc0:0001", 766 + "sysfs_device_link": "/devices/pci0000:00/0000:00:1a.0/mmc_host/mmc0/mmc0:0001", 767 + "unix_device_names": [ 768 + "/dev/disk/by-id/mmc-TWSC_0x1f41b194", 769 + "/dev/mmcblk0" 770 + ], 771 + "resources": [ 772 + { 773 + "type": "disk_geo", 774 + "cylinders": 1908736, 775 + "heads": 4, 776 + "sectors": 16, 777 + "size": "0x0", 778 + "geo_type": "logical" 779 + }, 780 + { 781 + "type": "size", 782 + "unit": "sectors", 783 + "value_1": 122159104, 784 + "value_2": 512 785 + } 786 + ], 787 + "driver": "sdhci-pci", 788 + "driver_module": "sdhci_pci", 789 + "drivers": [ 790 + "mmcblk", 791 + "sdhci-pci" 792 + ], 793 + "driver_modules": [ 794 + "sdhci_pci" 795 + ] 796 + }, 797 + { 798 + "index": 32, 799 + "attached_to": 29, 800 + "class_list": [ 801 + "disk", 802 + "block_device" 803 + ], 804 + "base_class": { 805 + "hex": "0106", 806 + "name": "Mass Storage Device", 807 + "value": 262 808 + }, 809 + "sub_class": { 810 + "hex": "0000", 811 + "name": "Disk", 812 + "value": 0 813 + }, 814 + "model": "Disk", 815 + "sysfs_id": "/class/block/mmcblk0boot0", 816 + "sysfs_bus_id": "mmcblk0", 817 + "sysfs_device_link": "/devices/pci0000:00/0000:00:1a.0/mmc_host/mmc0/mmc0:0001/block/mmcblk0", 818 + "unix_device_names": [ 819 + "/dev/mmcblk0boot0" 820 + ], 821 + "resources": [ 822 + { 823 + "type": "disk_geo", 824 + "cylinders": 128, 825 + "heads": 4, 826 + "sectors": 16, 827 + "size": "0x0", 828 + "geo_type": "logical" 829 + }, 830 + { 831 + "type": "size", 832 + "unit": "sectors", 833 + "value_1": 8192, 834 + "value_2": 512 835 + } 836 + ], 837 + "driver": "mmcblk", 838 + "drivers": [ 839 + "mmcblk" 840 + ] 841 + }, 842 + { 843 + "index": 33, 844 + "attached_to": 29, 845 + "class_list": [ 846 + "disk", 847 + "block_device" 848 + ], 849 + "base_class": { 850 + "hex": "0106", 851 + "name": "Mass Storage Device", 852 + "value": 262 853 + }, 854 + "sub_class": { 855 + "hex": "0000", 856 + "name": "Disk", 857 + "value": 0 858 + }, 859 + "model": "Disk", 860 + "sysfs_id": "/class/block/mmcblk0boot1", 861 + "sysfs_bus_id": "mmcblk0", 862 + "sysfs_device_link": "/devices/pci0000:00/0000:00:1a.0/mmc_host/mmc0/mmc0:0001/block/mmcblk0", 863 + "unix_device_names": [ 864 + "/dev/mmcblk0boot1" 865 + ], 866 + "resources": [ 867 + { 868 + "type": "disk_geo", 869 + "cylinders": 128, 870 + "heads": 4, 871 + "sectors": 16, 872 + "size": "0x0", 873 + "geo_type": "logical" 874 + }, 875 + { 876 + "type": "size", 877 + "unit": "sectors", 878 + "value_1": 8192, 879 + "value_2": 512 880 + } 881 + ], 882 + "driver": "mmcblk", 883 + "drivers": [ 884 + "mmcblk" 885 + ] 886 + }, 887 + { 888 + "index": 34, 889 + "attached_to": 26, 890 + "class_list": [ 891 + "disk", 892 + "usb", 893 + "scsi", 894 + "block_device" 895 + ], 896 + "bus_type": { 897 + "hex": "0084", 898 + "name": "SCSI", 899 + "value": 132 900 + }, 901 + "slot": { 902 + "bus": 0, 903 + "number": 0 904 + }, 905 + "base_class": { 906 + "hex": "0106", 907 + "name": "Mass Storage Device", 908 + "value": 262 909 + }, 910 + "sub_class": { 911 + "hex": "0000", 912 + "name": "Disk", 913 + "value": 0 914 + }, 915 + "vendor": { 916 + "hex": "0781", 917 + "name": "SanDisk", 918 + "value": 1921 919 + }, 920 + "device": { 921 + "hex": "5583", 922 + "name": "Ultra Fit", 923 + "value": 21891 924 + }, 925 + "revision": { 926 + "hex": "0000", 927 + "name": "1.00", 928 + "value": 0 929 + }, 930 + "serial": "4C531001391024113501", 931 + "model": "SanDisk Ultra Fit", 932 + "sysfs_id": "/class/block/sda", 933 + "sysfs_bus_id": "0:0:0:0", 934 + "sysfs_device_link": "/devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1.1/3-1.1:1.0/host0/target0:0:0/0:0:0:0", 935 + "unix_device_names": [ 936 + "/dev/disk/by-id/usb-SanDisk_Ultra_Fit_4C531001391024113501-0:0", 937 + "/dev/disk/by-path/pci-0000:00:14.0-usb-0:1.1:1.0-scsi-0:0:0:0", 938 + "/dev/disk/by-path/pci-0000:00:14.0-usbv2-0:1.1:1.0-scsi-0:0:0:0", 939 + "/dev/sda" 940 + ], 941 + "unix_device_name2": "/dev/sg0", 942 + "resources": [ 943 + { 944 + "type": "baud", 945 + "speed": 480000000, 946 + "bits": 0, 947 + "stop_bits": 0, 948 + "parity": 0, 949 + "handshake": 0 950 + }, 951 + { 952 + "type": "disk_geo", 953 + "cylinders": 15102, 954 + "heads": 255, 955 + "sectors": 63, 956 + "size": "0x0", 957 + "geo_type": "logical" 958 + }, 959 + { 960 + "type": "size", 961 + "unit": "sectors", 962 + "value_1": 242614272, 963 + "value_2": 512 964 + } 965 + ], 966 + "driver": "usb-storage", 967 + "driver_module": "usb_storage", 968 + "drivers": [ 969 + "sd", 970 + "usb-storage" 971 + ], 972 + "driver_modules": [ 973 + "sd_mod", 974 + "usb_storage" 975 + ], 976 + "module_alias": "usb:v0781p5583d0100dc00dsc00dp00ic08isc06ip50in00" 977 + } 978 + ], 979 + "graphics_card": [ 980 + { 981 + "index": 25, 982 + "attached_to": 0, 983 + "class_list": [ 984 + "graphics_card", 985 + "pci" 986 + ], 987 + "bus_type": { 988 + "hex": "0004", 989 + "name": "PCI", 990 + "value": 4 991 + }, 992 + "slot": { 993 + "bus": 0, 994 + "number": 2 995 + }, 996 + "base_class": { 997 + "hex": "0003", 998 + "name": "Display controller", 999 + "value": 3 1000 + }, 1001 + "sub_class": { 1002 + "hex": "0000", 1003 + "name": "VGA compatible controller", 1004 + "value": 0 1005 + }, 1006 + "pci_interface": { 1007 + "hex": "0000", 1008 + "name": "VGA", 1009 + "value": 0 1010 + }, 1011 + "vendor": { 1012 + "hex": "8086", 1013 + "name": "Intel Corporation", 1014 + "value": 32902 1015 + }, 1016 + "sub_vendor": { 1017 + "hex": "0301", 1018 + "value": 769 1019 + }, 1020 + "device": { 1021 + "hex": "46d4", 1022 + "value": 18132 1023 + }, 1024 + "sub_device": { 1025 + "hex": "02f3", 1026 + "value": 755 1027 + }, 1028 + "model": "Intel VGA compatible controller", 1029 + "sysfs_id": "/devices/pci0000:00/0000:00:02.0", 1030 + "sysfs_bus_id": "0000:00:02.0", 1031 + "resources": [ 1032 + { 1033 + "type": "io", 1034 + "base": 12288, 1035 + "range": 64, 1036 + "enabled": true, 1037 + "access": "read_write" 1038 + } 1039 + ], 1040 + "detail": { 1041 + "function": 0, 1042 + "command": 1031, 1043 + "header_type": 0, 1044 + "secondary_bus": 0, 1045 + "prog_if": 0 1046 + }, 1047 + "driver": "i915", 1048 + "driver_module": "i915", 1049 + "drivers": [ 1050 + "i915" 1051 + ], 1052 + "driver_modules": [ 1053 + "i915" 1054 + ], 1055 + "module_alias": "pci:v00008086d000046D4sv00000301sd000002F3bc03sc00i00", 1056 + "label": "Onboard - Video" 1057 + } 1058 + ], 1059 + "hub": [ 1060 + { 1061 + "index": 35, 1062 + "attached_to": 53, 1063 + "class_list": [ 1064 + "usb", 1065 + "hub" 1066 + ], 1067 + "bus_type": { 1068 + "hex": "0086", 1069 + "name": "USB", 1070 + "value": 134 1071 + }, 1072 + "slot": { 1073 + "bus": 0, 1074 + "number": 0 1075 + }, 1076 + "base_class": { 1077 + "hex": "010a", 1078 + "name": "Hub", 1079 + "value": 266 1080 + }, 1081 + "vendor": { 1082 + "hex": "0bda", 1083 + "name": "Generic", 1084 + "value": 3034 1085 + }, 1086 + "device": { 1087 + "hex": "0411", 1088 + "name": "USB3.2 Hub", 1089 + "value": 1041 1090 + }, 1091 + "revision": { 1092 + "hex": "0000", 1093 + "name": "1.56", 1094 + "value": 0 1095 + }, 1096 + "model": "Generic USB3.2 Hub", 1097 + "sysfs_id": "/devices/pci0000:00/0000:00:0d.0/usb2/2-1/2-1:1.0", 1098 + "sysfs_bus_id": "2-1:1.0", 1099 + "detail": { 1100 + "device_class": { 1101 + "hex": "0009", 1102 + "name": "hub", 1103 + "value": 9 1104 + }, 1105 + "device_subclass": { 1106 + "hex": "0000", 1107 + "name": "per_interface", 1108 + "value": 0 1109 + }, 1110 + "device_protocol": 3, 1111 + "interface_class": { 1112 + "hex": "0009", 1113 + "name": "hub", 1114 + "value": 9 1115 + }, 1116 + "interface_subclass": { 1117 + "hex": "0000", 1118 + "name": "per_interface", 1119 + "value": 0 1120 + }, 1121 + "interface_protocol": 0, 1122 + "interface_number": 0, 1123 + "interface_alternate_setting": 0 1124 + }, 1125 + "hotplug": "usb", 1126 + "driver": "hub", 1127 + "driver_module": "usbcore", 1128 + "drivers": [ 1129 + "hub" 1130 + ], 1131 + "driver_modules": [ 1132 + "usbcore" 1133 + ], 1134 + "module_alias": "usb:v0BDAp0411d0156dc09dsc00dp03ic09isc00ip00in00" 1135 + }, 1136 + { 1137 + "index": 36, 1138 + "attached_to": 26, 1139 + "class_list": [ 1140 + "usb", 1141 + "hub" 1142 + ], 1143 + "bus_type": { 1144 + "hex": "0086", 1145 + "name": "USB", 1146 + "value": 134 1147 + }, 1148 + "slot": { 1149 + "bus": 0, 1150 + "number": 0 1151 + }, 1152 + "base_class": { 1153 + "hex": "010a", 1154 + "name": "Hub", 1155 + "value": 266 1156 + }, 1157 + "vendor": { 1158 + "hex": "1d6b", 1159 + "name": "Linux 6.17.10 xhci-hcd", 1160 + "value": 7531 1161 + }, 1162 + "device": { 1163 + "hex": "0002", 1164 + "name": "xHCI Host Controller", 1165 + "value": 2 1166 + }, 1167 + "revision": { 1168 + "hex": "0000", 1169 + "name": "6.17", 1170 + "value": 0 1171 + }, 1172 + "serial": "0000:00:14.0", 1173 + "model": "Linux 6.17.10 xhci-hcd xHCI Host Controller", 1174 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-0:1.0", 1175 + "sysfs_bus_id": "3-0:1.0", 1176 + "resources": [ 1177 + { 1178 + "type": "baud", 1179 + "speed": 480000000, 1180 + "bits": 0, 1181 + "stop_bits": 0, 1182 + "parity": 0, 1183 + "handshake": 0 1184 + } 1185 + ], 1186 + "detail": { 1187 + "device_class": { 1188 + "hex": "0009", 1189 + "name": "hub", 1190 + "value": 9 1191 + }, 1192 + "device_subclass": { 1193 + "hex": "0000", 1194 + "name": "per_interface", 1195 + "value": 0 1196 + }, 1197 + "device_protocol": 1, 1198 + "interface_class": { 1199 + "hex": "0009", 1200 + "name": "hub", 1201 + "value": 9 1202 + }, 1203 + "interface_subclass": { 1204 + "hex": "0000", 1205 + "name": "per_interface", 1206 + "value": 0 1207 + }, 1208 + "interface_protocol": 0, 1209 + "interface_number": 0, 1210 + "interface_alternate_setting": 0 1211 + }, 1212 + "hotplug": "usb", 1213 + "driver": "hub", 1214 + "driver_module": "usbcore", 1215 + "drivers": [ 1216 + "hub" 1217 + ], 1218 + "driver_modules": [ 1219 + "usbcore" 1220 + ], 1221 + "module_alias": "usb:v1D6Bp0002d0617dc09dsc00dp01ic09isc00ip00in00" 1222 + }, 1223 + { 1224 + "index": 42, 1225 + "attached_to": 53, 1226 + "class_list": [ 1227 + "usb", 1228 + "hub" 1229 + ], 1230 + "bus_type": { 1231 + "hex": "0086", 1232 + "name": "USB", 1233 + "value": 134 1234 + }, 1235 + "slot": { 1236 + "bus": 0, 1237 + "number": 0 1238 + }, 1239 + "base_class": { 1240 + "hex": "010a", 1241 + "name": "Hub", 1242 + "value": 266 1243 + }, 1244 + "vendor": { 1245 + "hex": "2109", 1246 + "name": "VIA Labs, Inc.", 1247 + "value": 8457 1248 + }, 1249 + "device": { 1250 + "hex": "0824", 1251 + "name": "USB3.1 Hub", 1252 + "value": 2084 1253 + }, 1254 + "revision": { 1255 + "hex": "0000", 1256 + "name": "1.94", 1257 + "value": 0 1258 + }, 1259 + "serial": "000000001", 1260 + "model": "VIA USB3.1 Hub", 1261 + "sysfs_id": "/devices/pci0000:00/0000:00:0d.0/usb2/2-2/2-2:1.0", 1262 + "sysfs_bus_id": "2-2:1.0", 1263 + "detail": { 1264 + "device_class": { 1265 + "hex": "0009", 1266 + "name": "hub", 1267 + "value": 9 1268 + }, 1269 + "device_subclass": { 1270 + "hex": "0000", 1271 + "name": "per_interface", 1272 + "value": 0 1273 + }, 1274 + "device_protocol": 3, 1275 + "interface_class": { 1276 + "hex": "0009", 1277 + "name": "hub", 1278 + "value": 9 1279 + }, 1280 + "interface_subclass": { 1281 + "hex": "0000", 1282 + "name": "per_interface", 1283 + "value": 0 1284 + }, 1285 + "interface_protocol": 0, 1286 + "interface_number": 0, 1287 + "interface_alternate_setting": 0 1288 + }, 1289 + "hotplug": "usb", 1290 + "driver": "hub", 1291 + "driver_module": "usbcore", 1292 + "drivers": [ 1293 + "hub" 1294 + ], 1295 + "driver_modules": [ 1296 + "usbcore" 1297 + ], 1298 + "module_alias": "usb:v2109p0824d0194dc09dsc00dp03ic09isc00ip00in00" 1299 + }, 1300 + { 1301 + "index": 43, 1302 + "attached_to": 36, 1303 + "class_list": [ 1304 + "usb", 1305 + "hub" 1306 + ], 1307 + "bus_type": { 1308 + "hex": "0086", 1309 + "name": "USB", 1310 + "value": 134 1311 + }, 1312 + "slot": { 1313 + "bus": 0, 1314 + "number": 0 1315 + }, 1316 + "base_class": { 1317 + "hex": "010a", 1318 + "name": "Hub", 1319 + "value": 266 1320 + }, 1321 + "vendor": { 1322 + "hex": "2109", 1323 + "name": "VIA Labs, Inc.", 1324 + "value": 8457 1325 + }, 1326 + "device": { 1327 + "hex": "2824", 1328 + "name": "USB2.0 Hub", 1329 + "value": 10276 1330 + }, 1331 + "revision": { 1332 + "hex": "0000", 1333 + "name": "1.94", 1334 + "value": 0 1335 + }, 1336 + "serial": "000000001", 1337 + "model": "VIA USB2.0 Hub", 1338 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.0", 1339 + "sysfs_bus_id": "3-1:1.0", 1340 + "resources": [ 1341 + { 1342 + "type": "baud", 1343 + "speed": 480000000, 1344 + "bits": 0, 1345 + "stop_bits": 0, 1346 + "parity": 0, 1347 + "handshake": 0 1348 + } 1349 + ], 1350 + "detail": { 1351 + "device_class": { 1352 + "hex": "0009", 1353 + "name": "hub", 1354 + "value": 9 1355 + }, 1356 + "device_subclass": { 1357 + "hex": "0000", 1358 + "name": "per_interface", 1359 + "value": 0 1360 + }, 1361 + "device_protocol": 2, 1362 + "interface_class": { 1363 + "hex": "0009", 1364 + "name": "hub", 1365 + "value": 9 1366 + }, 1367 + "interface_subclass": { 1368 + "hex": "0000", 1369 + "name": "per_interface", 1370 + "value": 0 1371 + }, 1372 + "interface_protocol": 2, 1373 + "interface_number": 0, 1374 + "interface_alternate_setting": 1 1375 + }, 1376 + "hotplug": "usb", 1377 + "driver": "hub", 1378 + "driver_module": "usbcore", 1379 + "drivers": [ 1380 + "hub" 1381 + ], 1382 + "driver_modules": [ 1383 + "usbcore" 1384 + ], 1385 + "module_alias": "usb:v2109p2824d0194dc09dsc00dp02ic09isc00ip02in00" 1386 + }, 1387 + { 1388 + "index": 44, 1389 + "attached_to": 26, 1390 + "class_list": [ 1391 + "usb", 1392 + "hub" 1393 + ], 1394 + "bus_type": { 1395 + "hex": "0086", 1396 + "name": "USB", 1397 + "value": 134 1398 + }, 1399 + "slot": { 1400 + "bus": 0, 1401 + "number": 0 1402 + }, 1403 + "base_class": { 1404 + "hex": "010a", 1405 + "name": "Hub", 1406 + "value": 266 1407 + }, 1408 + "vendor": { 1409 + "hex": "1d6b", 1410 + "name": "Linux 6.17.10 xhci-hcd", 1411 + "value": 7531 1412 + }, 1413 + "device": { 1414 + "hex": "0003", 1415 + "name": "xHCI Host Controller", 1416 + "value": 3 1417 + }, 1418 + "revision": { 1419 + "hex": "0000", 1420 + "name": "6.17", 1421 + "value": 0 1422 + }, 1423 + "serial": "0000:00:14.0", 1424 + "model": "Linux 6.17.10 xhci-hcd xHCI Host Controller", 1425 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb4/4-0:1.0", 1426 + "sysfs_bus_id": "4-0:1.0", 1427 + "detail": { 1428 + "device_class": { 1429 + "hex": "0009", 1430 + "name": "hub", 1431 + "value": 9 1432 + }, 1433 + "device_subclass": { 1434 + "hex": "0000", 1435 + "name": "per_interface", 1436 + "value": 0 1437 + }, 1438 + "device_protocol": 3, 1439 + "interface_class": { 1440 + "hex": "0009", 1441 + "name": "hub", 1442 + "value": 9 1443 + }, 1444 + "interface_subclass": { 1445 + "hex": "0000", 1446 + "name": "per_interface", 1447 + "value": 0 1448 + }, 1449 + "interface_protocol": 0, 1450 + "interface_number": 0, 1451 + "interface_alternate_setting": 0 1452 + }, 1453 + "hotplug": "usb", 1454 + "driver": "hub", 1455 + "driver_module": "usbcore", 1456 + "drivers": [ 1457 + "hub" 1458 + ], 1459 + "driver_modules": [ 1460 + "usbcore" 1461 + ], 1462 + "module_alias": "usb:v1D6Bp0003d0617dc09dsc00dp03ic09isc00ip00in00" 1463 + }, 1464 + { 1465 + "index": 45, 1466 + "attached_to": 36, 1467 + "class_list": [ 1468 + "usb", 1469 + "hub" 1470 + ], 1471 + "bus_type": { 1472 + "hex": "0086", 1473 + "name": "USB", 1474 + "value": 134 1475 + }, 1476 + "slot": { 1477 + "bus": 0, 1478 + "number": 0 1479 + }, 1480 + "base_class": { 1481 + "hex": "010a", 1482 + "name": "Hub", 1483 + "value": 266 1484 + }, 1485 + "vendor": { 1486 + "hex": "0bda", 1487 + "name": "Generic", 1488 + "value": 3034 1489 + }, 1490 + "device": { 1491 + "hex": "5411", 1492 + "name": "USB2.1 Hub", 1493 + "value": 21521 1494 + }, 1495 + "revision": { 1496 + "hex": "0000", 1497 + "name": "1.56", 1498 + "value": 0 1499 + }, 1500 + "model": "Generic USB2.1 Hub", 1501 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.0", 1502 + "sysfs_bus_id": "3-5:1.0", 1503 + "resources": [ 1504 + { 1505 + "type": "baud", 1506 + "speed": 480000000, 1507 + "bits": 0, 1508 + "stop_bits": 0, 1509 + "parity": 0, 1510 + "handshake": 0 1511 + } 1512 + ], 1513 + "detail": { 1514 + "device_class": { 1515 + "hex": "0009", 1516 + "name": "hub", 1517 + "value": 9 1518 + }, 1519 + "device_subclass": { 1520 + "hex": "0000", 1521 + "name": "per_interface", 1522 + "value": 0 1523 + }, 1524 + "device_protocol": 2, 1525 + "interface_class": { 1526 + "hex": "0009", 1527 + "name": "hub", 1528 + "value": 9 1529 + }, 1530 + "interface_subclass": { 1531 + "hex": "0000", 1532 + "name": "per_interface", 1533 + "value": 0 1534 + }, 1535 + "interface_protocol": 2, 1536 + "interface_number": 0, 1537 + "interface_alternate_setting": 1 1538 + }, 1539 + "hotplug": "usb", 1540 + "driver": "hub", 1541 + "driver_module": "usbcore", 1542 + "drivers": [ 1543 + "hub" 1544 + ], 1545 + "driver_modules": [ 1546 + "usbcore" 1547 + ], 1548 + "module_alias": "usb:v0BDAp5411d0156dc09dsc00dp02ic09isc00ip02in00" 1549 + }, 1550 + { 1551 + "index": 47, 1552 + "attached_to": 45, 1553 + "class_list": [ 1554 + "usb", 1555 + "hub" 1556 + ], 1557 + "bus_type": { 1558 + "hex": "0086", 1559 + "name": "USB", 1560 + "value": 134 1561 + }, 1562 + "slot": { 1563 + "bus": 0, 1564 + "number": 0 1565 + }, 1566 + "base_class": { 1567 + "hex": "010a", 1568 + "name": "Hub", 1569 + "value": 266 1570 + }, 1571 + "vendor": { 1572 + "hex": "2109", 1573 + "name": "VIA Labs, Inc.", 1574 + "value": 8457 1575 + }, 1576 + "device": { 1577 + "hex": "2812", 1578 + "name": "USB2.0 Hub", 1579 + "value": 10258 1580 + }, 1581 + "revision": { 1582 + "hex": "0000", 1583 + "name": "d.a0", 1584 + "value": 0 1585 + }, 1586 + "model": "VIA USB2.0 Hub", 1587 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5.1/3-5.1:1.0", 1588 + "sysfs_bus_id": "3-5.1:1.0", 1589 + "resources": [ 1590 + { 1591 + "type": "baud", 1592 + "speed": 480000000, 1593 + "bits": 0, 1594 + "stop_bits": 0, 1595 + "parity": 0, 1596 + "handshake": 0 1597 + } 1598 + ], 1599 + "detail": { 1600 + "device_class": { 1601 + "hex": "0009", 1602 + "name": "hub", 1603 + "value": 9 1604 + }, 1605 + "device_subclass": { 1606 + "hex": "0000", 1607 + "name": "per_interface", 1608 + "value": 0 1609 + }, 1610 + "device_protocol": 1, 1611 + "interface_class": { 1612 + "hex": "0009", 1613 + "name": "hub", 1614 + "value": 9 1615 + }, 1616 + "interface_subclass": { 1617 + "hex": "0000", 1618 + "name": "per_interface", 1619 + "value": 0 1620 + }, 1621 + "interface_protocol": 0, 1622 + "interface_number": 0, 1623 + "interface_alternate_setting": 0 1624 + }, 1625 + "hotplug": "usb", 1626 + "driver": "hub", 1627 + "driver_module": "usbcore", 1628 + "drivers": [ 1629 + "hub" 1630 + ], 1631 + "driver_modules": [ 1632 + "usbcore" 1633 + ], 1634 + "module_alias": "usb:v2109p2812d0DA0dc09dsc00dp01ic09isc00ip00in00" 1635 + }, 1636 + { 1637 + "index": 48, 1638 + "attached_to": 11, 1639 + "class_list": [ 1640 + "usb", 1641 + "hub" 1642 + ], 1643 + "bus_type": { 1644 + "hex": "0086", 1645 + "name": "USB", 1646 + "value": 134 1647 + }, 1648 + "slot": { 1649 + "bus": 0, 1650 + "number": 0 1651 + }, 1652 + "base_class": { 1653 + "hex": "010a", 1654 + "name": "Hub", 1655 + "value": 266 1656 + }, 1657 + "vendor": { 1658 + "hex": "1d6b", 1659 + "name": "Linux 6.17.10 xhci-hcd", 1660 + "value": 7531 1661 + }, 1662 + "device": { 1663 + "hex": "0002", 1664 + "name": "xHCI Host Controller", 1665 + "value": 2 1666 + }, 1667 + "revision": { 1668 + "hex": "0000", 1669 + "name": "6.17", 1670 + "value": 0 1671 + }, 1672 + "serial": "0000:00:0d.0", 1673 + "model": "Linux 6.17.10 xhci-hcd xHCI Host Controller", 1674 + "sysfs_id": "/devices/pci0000:00/0000:00:0d.0/usb1/1-0:1.0", 1675 + "sysfs_bus_id": "1-0:1.0", 1676 + "resources": [ 1677 + { 1678 + "type": "baud", 1679 + "speed": 480000000, 1680 + "bits": 0, 1681 + "stop_bits": 0, 1682 + "parity": 0, 1683 + "handshake": 0 1684 + } 1685 + ], 1686 + "detail": { 1687 + "device_class": { 1688 + "hex": "0009", 1689 + "name": "hub", 1690 + "value": 9 1691 + }, 1692 + "device_subclass": { 1693 + "hex": "0000", 1694 + "name": "per_interface", 1695 + "value": 0 1696 + }, 1697 + "device_protocol": 1, 1698 + "interface_class": { 1699 + "hex": "0009", 1700 + "name": "hub", 1701 + "value": 9 1702 + }, 1703 + "interface_subclass": { 1704 + "hex": "0000", 1705 + "name": "per_interface", 1706 + "value": 0 1707 + }, 1708 + "interface_protocol": 0, 1709 + "interface_number": 0, 1710 + "interface_alternate_setting": 0 1711 + }, 1712 + "hotplug": "usb", 1713 + "driver": "hub", 1714 + "driver_module": "usbcore", 1715 + "drivers": [ 1716 + "hub" 1717 + ], 1718 + "driver_modules": [ 1719 + "usbcore" 1720 + ], 1721 + "module_alias": "usb:v1D6Bp0002d0617dc09dsc00dp01ic09isc00ip00in00" 1722 + }, 1723 + { 1724 + "index": 53, 1725 + "attached_to": 11, 1726 + "class_list": [ 1727 + "usb", 1728 + "hub" 1729 + ], 1730 + "bus_type": { 1731 + "hex": "0086", 1732 + "name": "USB", 1733 + "value": 134 1734 + }, 1735 + "slot": { 1736 + "bus": 0, 1737 + "number": 0 1738 + }, 1739 + "base_class": { 1740 + "hex": "010a", 1741 + "name": "Hub", 1742 + "value": 266 1743 + }, 1744 + "vendor": { 1745 + "hex": "1d6b", 1746 + "name": "Linux 6.17.10 xhci-hcd", 1747 + "value": 7531 1748 + }, 1749 + "device": { 1750 + "hex": "0003", 1751 + "name": "xHCI Host Controller", 1752 + "value": 3 1753 + }, 1754 + "revision": { 1755 + "hex": "0000", 1756 + "name": "6.17", 1757 + "value": 0 1758 + }, 1759 + "serial": "0000:00:0d.0", 1760 + "model": "Linux 6.17.10 xhci-hcd xHCI Host Controller", 1761 + "sysfs_id": "/devices/pci0000:00/0000:00:0d.0/usb2/2-0:1.0", 1762 + "sysfs_bus_id": "2-0:1.0", 1763 + "detail": { 1764 + "device_class": { 1765 + "hex": "0009", 1766 + "name": "hub", 1767 + "value": 9 1768 + }, 1769 + "device_subclass": { 1770 + "hex": "0000", 1771 + "name": "per_interface", 1772 + "value": 0 1773 + }, 1774 + "device_protocol": 3, 1775 + "interface_class": { 1776 + "hex": "0009", 1777 + "name": "hub", 1778 + "value": 9 1779 + }, 1780 + "interface_subclass": { 1781 + "hex": "0000", 1782 + "name": "per_interface", 1783 + "value": 0 1784 + }, 1785 + "interface_protocol": 0, 1786 + "interface_number": 0, 1787 + "interface_alternate_setting": 0 1788 + }, 1789 + "hotplug": "usb", 1790 + "driver": "hub", 1791 + "driver_module": "usbcore", 1792 + "drivers": [ 1793 + "hub" 1794 + ], 1795 + "driver_modules": [ 1796 + "usbcore" 1797 + ], 1798 + "module_alias": "usb:v1D6Bp0003d0617dc09dsc00dp03ic09isc00ip00in00" 1799 + }, 1800 + { 1801 + "index": 54, 1802 + "attached_to": 35, 1803 + "class_list": [ 1804 + "usb", 1805 + "hub" 1806 + ], 1807 + "bus_type": { 1808 + "hex": "0086", 1809 + "name": "USB", 1810 + "value": 134 1811 + }, 1812 + "slot": { 1813 + "bus": 0, 1814 + "number": 0 1815 + }, 1816 + "base_class": { 1817 + "hex": "010a", 1818 + "name": "Hub", 1819 + "value": 266 1820 + }, 1821 + "vendor": { 1822 + "hex": "2109", 1823 + "name": "VIA Labs, Inc.", 1824 + "value": 8457 1825 + }, 1826 + "device": { 1827 + "hex": "0812", 1828 + "name": "USB3.0 Hub", 1829 + "value": 2066 1830 + }, 1831 + "revision": { 1832 + "hex": "0000", 1833 + "name": "d.a1", 1834 + "value": 0 1835 + }, 1836 + "model": "VIA USB3.0 Hub", 1837 + "sysfs_id": "/devices/pci0000:00/0000:00:0d.0/usb2/2-1/2-1.1/2-1.1:1.0", 1838 + "sysfs_bus_id": "2-1.1:1.0", 1839 + "detail": { 1840 + "device_class": { 1841 + "hex": "0009", 1842 + "name": "hub", 1843 + "value": 9 1844 + }, 1845 + "device_subclass": { 1846 + "hex": "0000", 1847 + "name": "per_interface", 1848 + "value": 0 1849 + }, 1850 + "device_protocol": 3, 1851 + "interface_class": { 1852 + "hex": "0009", 1853 + "name": "hub", 1854 + "value": 9 1855 + }, 1856 + "interface_subclass": { 1857 + "hex": "0000", 1858 + "name": "per_interface", 1859 + "value": 0 1860 + }, 1861 + "interface_protocol": 0, 1862 + "interface_number": 0, 1863 + "interface_alternate_setting": 0 1864 + }, 1865 + "hotplug": "usb", 1866 + "driver": "hub", 1867 + "driver_module": "usbcore", 1868 + "drivers": [ 1869 + "hub" 1870 + ], 1871 + "driver_modules": [ 1872 + "usbcore" 1873 + ], 1874 + "module_alias": "usb:v2109p0812d0DA1dc09dsc00dp03ic09isc00ip00in00" 1875 + } 1876 + ], 1877 + "keyboard": [ 1878 + { 1879 + "index": 40, 1880 + "attached_to": 47, 1881 + "class_list": [ 1882 + "keyboard", 1883 + "usb" 1884 + ], 1885 + "bus_type": { 1886 + "hex": "0086", 1887 + "name": "USB", 1888 + "value": 134 1889 + }, 1890 + "slot": { 1891 + "bus": 0, 1892 + "number": 0 1893 + }, 1894 + "base_class": { 1895 + "hex": "0108", 1896 + "name": "Keyboard", 1897 + "value": 264 1898 + }, 1899 + "sub_class": { 1900 + "hex": "0000", 1901 + "name": "Keyboard", 1902 + "value": 0 1903 + }, 1904 + "vendor": { 1905 + "hex": "1044", 1906 + "name": "Texas Instruments", 1907 + "value": 4164 1908 + }, 1909 + "device": { 1910 + "hex": "7a16", 1911 + "name": "MSP430-USB Mouse", 1912 + "value": 31254 1913 + }, 1914 + "revision": { 1915 + "hex": "0000", 1916 + "name": "2.00", 1917 + "value": 0 1918 + }, 1919 + "serial": "50B7135131002D00", 1920 + "model": "Texas Instruments MSP430-USB Mouse", 1921 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5.1/3-5.1.2/3-5.1.2:1.0", 1922 + "sysfs_bus_id": "3-5.1.2:1.0", 1923 + "unix_device_names": [ 1924 + "/dev/input/by-id/usb-Texas_Instruments_MSP430-USB_Mouse_50B7135131002D00-event-kbd", 1925 + "/dev/input/by-path/pci-0000:00:14.0-usb-0:5.1.2:1.0-event-kbd", 1926 + "/dev/input/by-path/pci-0000:00:14.0-usbv2-0:5.1.2:1.0-event-kbd", 1927 + "/dev/input/event0" 1928 + ], 1929 + "resources": [ 1930 + { 1931 + "type": "baud", 1932 + "speed": 12000000, 1933 + "bits": 0, 1934 + "stop_bits": 0, 1935 + "parity": 0, 1936 + "handshake": 0 1937 + } 1938 + ], 1939 + "detail": { 1940 + "device_class": { 1941 + "hex": "0000", 1942 + "name": "per_interface", 1943 + "value": 0 1944 + }, 1945 + "device_subclass": { 1946 + "hex": "0000", 1947 + "name": "per_interface", 1948 + "value": 0 1949 + }, 1950 + "device_protocol": 0, 1951 + "interface_class": { 1952 + "hex": "0003", 1953 + "name": "hid", 1954 + "value": 3 1955 + }, 1956 + "interface_subclass": { 1957 + "hex": "0001", 1958 + "name": "audio", 1959 + "value": 1 1960 + }, 1961 + "interface_protocol": 1, 1962 + "interface_number": 0, 1963 + "interface_alternate_setting": 0 1964 + }, 1965 + "hotplug": "usb", 1966 + "driver": "usbhid", 1967 + "driver_module": "usbhid", 1968 + "drivers": [ 1969 + "usbhid" 1970 + ], 1971 + "driver_modules": [ 1972 + "usbhid" 1973 + ], 1974 + "driver_info": { 1975 + "type": "keyboard", 1976 + "xkb_rules": "xfree86", 1977 + "xkb_model": "pc104" 1978 + }, 1979 + "module_alias": "usb:v1044p7A16d0200dc00dsc00dp00ic03isc01ip01in00" 1980 + }, 1981 + { 1982 + "index": 52, 1983 + "attached_to": 47, 1984 + "class_list": [ 1985 + "keyboard", 1986 + "usb" 1987 + ], 1988 + "bus_type": { 1989 + "hex": "0086", 1990 + "name": "USB", 1991 + "value": 134 1992 + }, 1993 + "slot": { 1994 + "bus": 0, 1995 + "number": 0 1996 + }, 1997 + "base_class": { 1998 + "hex": "0108", 1999 + "name": "Keyboard", 2000 + "value": 264 2001 + }, 2002 + "sub_class": { 2003 + "hex": "0000", 2004 + "name": "Keyboard", 2005 + "value": 0 2006 + }, 2007 + "vendor": { 2008 + "hex": "24f0", 2009 + "name": "Metadot - Das Keyboard", 2010 + "value": 9456 2011 + }, 2012 + "device": { 2013 + "hex": "0140", 2014 + "name": "Das Keyboard", 2015 + "value": 320 2016 + }, 2017 + "revision": { 2018 + "hex": "0000", 2019 + "name": "1.00", 2020 + "value": 0 2021 + }, 2022 + "model": "Metadot - Das Keyboard Das Keyboard", 2023 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5.1/3-5.1.4/3-5.1.4:1.0", 2024 + "sysfs_bus_id": "3-5.1.4:1.0", 2025 + "unix_device_names": [ 2026 + "/dev/input/by-id/usb-Metadot_-_Das_Keyboard_Das_Keyboard-event-kbd", 2027 + "/dev/input/by-path/pci-0000:00:14.0-usb-0:5.1.4:1.0-event-kbd", 2028 + "/dev/input/by-path/pci-0000:00:14.0-usbv2-0:5.1.4:1.0-event-kbd", 2029 + "/dev/input/event5" 2030 + ], 2031 + "resources": [ 2032 + { 2033 + "type": "baud", 2034 + "speed": 12000000, 2035 + "bits": 0, 2036 + "stop_bits": 0, 2037 + "parity": 0, 2038 + "handshake": 0 2039 + } 2040 + ], 2041 + "detail": { 2042 + "device_class": { 2043 + "hex": "0000", 2044 + "name": "per_interface", 2045 + "value": 0 2046 + }, 2047 + "device_subclass": { 2048 + "hex": "0000", 2049 + "name": "per_interface", 2050 + "value": 0 2051 + }, 2052 + "device_protocol": 0, 2053 + "interface_class": { 2054 + "hex": "0003", 2055 + "name": "hid", 2056 + "value": 3 2057 + }, 2058 + "interface_subclass": { 2059 + "hex": "0001", 2060 + "name": "audio", 2061 + "value": 1 2062 + }, 2063 + "interface_protocol": 1, 2064 + "interface_number": 0, 2065 + "interface_alternate_setting": 0 2066 + }, 2067 + "hotplug": "usb", 2068 + "driver": "usbhid", 2069 + "driver_module": "usbhid", 2070 + "drivers": [ 2071 + "usbhid" 2072 + ], 2073 + "driver_modules": [ 2074 + "usbhid" 2075 + ], 2076 + "driver_info": { 2077 + "type": "keyboard", 2078 + "xkb_rules": "xfree86", 2079 + "xkb_model": "pc104" 2080 + }, 2081 + "module_alias": "usb:v24F0p0140d0100dc00dsc00dp00ic03isc01ip01in00" 2082 + } 2083 + ], 2084 + "memory": [ 2085 + { 2086 + "index": 7, 2087 + "attached_to": 0, 2088 + "class_list": [ 2089 + "memory" 2090 + ], 2091 + "base_class": { 2092 + "hex": "0101", 2093 + "name": "Internally Used Class", 2094 + "value": 257 2095 + }, 2096 + "sub_class": { 2097 + "hex": "0002", 2098 + "name": "Main Memory", 2099 + "value": 2 2100 + }, 2101 + "model": "Main Memory", 2102 + "resources": [ 2103 + { 2104 + "type": "phys_mem", 2105 + "range": 11811160064 2106 + } 2107 + ] 2108 + } 2109 + ], 2110 + "mmc_controller": [ 2111 + { 2112 + "index": 29, 2113 + "attached_to": 0, 2114 + "class_list": [ 2115 + "mmc_controller" 2116 + ], 2117 + "bus_type": { 2118 + "hex": "0093", 2119 + "name": "MMC", 2120 + "value": 147 2121 + }, 2122 + "slot": { 2123 + "bus": 0, 2124 + "number": 0 2125 + }, 2126 + "base_class": { 2127 + "hex": "0117", 2128 + "name": "MMC Controller", 2129 + "value": 279 2130 + }, 2131 + "vendor": "", 2132 + "device": "MMC Controller", 2133 + "model": "MMC Controller", 2134 + "sysfs_id": "/devices/pci0000:00/0000:00:1a.0/mmc_host/mmc0/mmc0:0001", 2135 + "sysfs_bus_id": "mmc0:0001", 2136 + "driver": "mmcblk", 2137 + "drivers": [ 2138 + "mmcblk" 2139 + ] 2140 + } 2141 + ], 2142 + "monitor": [ 2143 + { 2144 + "index": 30, 2145 + "attached_to": 25, 2146 + "class_list": [ 2147 + "monitor" 2148 + ], 2149 + "base_class": { 2150 + "hex": "0100", 2151 + "name": "Monitor", 2152 + "value": 256 2153 + }, 2154 + "sub_class": { 2155 + "hex": "0002", 2156 + "name": "LCD Monitor", 2157 + "value": 2 2158 + }, 2159 + "vendor": { 2160 + "hex": "10ac", 2161 + "name": "DELL", 2162 + "value": 4268 2163 + }, 2164 + "device": { 2165 + "hex": "d15b", 2166 + "name": "DELL S3423DWC", 2167 + "value": 53595 2168 + }, 2169 + "serial": "1LBXNH3", 2170 + "model": "DELL S3423DWC", 2171 + "resources": [ 2172 + { 2173 + "type": "monitor", 2174 + "width": 1024, 2175 + "height": 768, 2176 + "vertical_frequency": 60, 2177 + "interlaced": false 2178 + }, 2179 + { 2180 + "type": "monitor", 2181 + "width": 1024, 2182 + "height": 768, 2183 + "vertical_frequency": 75, 2184 + "interlaced": false 2185 + }, 2186 + { 2187 + "type": "monitor", 2188 + "width": 1152, 2189 + "height": 864, 2190 + "vertical_frequency": 75, 2191 + "interlaced": false 2192 + }, 2193 + { 2194 + "type": "monitor", 2195 + "width": 1280, 2196 + "height": 1024, 2197 + "vertical_frequency": 60, 2198 + "interlaced": false 2199 + }, 2200 + { 2201 + "type": "monitor", 2202 + "width": 1280, 2203 + "height": 1024, 2204 + "vertical_frequency": 75, 2205 + "interlaced": false 2206 + }, 2207 + { 2208 + "type": "monitor", 2209 + "width": 1280, 2210 + "height": 720, 2211 + "vertical_frequency": 60, 2212 + "interlaced": false 2213 + }, 2214 + { 2215 + "type": "monitor", 2216 + "width": 1280, 2217 + "height": 960, 2218 + "vertical_frequency": 60, 2219 + "interlaced": false 2220 + }, 2221 + { 2222 + "type": "monitor", 2223 + "width": 3440, 2224 + "height": 1440, 2225 + "vertical_frequency": 60, 2226 + "interlaced": false 2227 + }, 2228 + { 2229 + "type": "monitor", 2230 + "width": 640, 2231 + "height": 480, 2232 + "vertical_frequency": 60, 2233 + "interlaced": false 2234 + }, 2235 + { 2236 + "type": "monitor", 2237 + "width": 640, 2238 + "height": 480, 2239 + "vertical_frequency": 75, 2240 + "interlaced": false 2241 + }, 2242 + { 2243 + "type": "monitor", 2244 + "width": 720, 2245 + "height": 400, 2246 + "vertical_frequency": 70, 2247 + "interlaced": false 2248 + }, 2249 + { 2250 + "type": "monitor", 2251 + "width": 800, 2252 + "height": 600, 2253 + "vertical_frequency": 60, 2254 + "interlaced": false 2255 + }, 2256 + { 2257 + "type": "monitor", 2258 + "width": 800, 2259 + "height": 600, 2260 + "vertical_frequency": 75, 2261 + "interlaced": false 2262 + }, 2263 + { 2264 + "type": "size", 2265 + "unit": "mm", 2266 + "value_1": 797, 2267 + "value_2": 334 2268 + } 2269 + ], 2270 + "detail": { 2271 + "manufacture_year": 2023, 2272 + "manufacture_week": 14, 2273 + "vertical_sync": { 2274 + "min": 48, 2275 + "max": 100 2276 + }, 2277 + "horizontal_sync": { 2278 + "min": 160, 2279 + "max": 160 2280 + }, 2281 + "horizontal_sync_timings": { 2282 + "disp": 3440, 2283 + "sync_start": 3488, 2284 + "sync_end": 3520, 2285 + "total": 3600 2286 + }, 2287 + "vertical_sync_timings": { 2288 + "disp": 1440, 2289 + "sync_start": 1443, 2290 + "sync_end": 1453, 2291 + "total": 1481 2292 + }, 2293 + "clock": 319750, 2294 + "width": 3440, 2295 + "height": 1440, 2296 + "width_millimetres": 797, 2297 + "height_millimetres": 334, 2298 + "horizontal_flag": 45, 2299 + "vertical_flag": 43, 2300 + "vendor": "", 2301 + "name": "DELL S3423DWC" 2302 + }, 2303 + "driver_info": { 2304 + "type": "display", 2305 + "width": 3440, 2306 + "height": 1440, 2307 + "vertical_sync": { 2308 + "min": 48, 2309 + "max": 100 2310 + }, 2311 + "horizontal_sync": { 2312 + "min": 160, 2313 + "max": 160 2314 + }, 2315 + "bandwidth": 0, 2316 + "horizontal_sync_timings": { 2317 + "disp": 3440, 2318 + "sync_start": 3488, 2319 + "sync_end": 3520, 2320 + "total": 3600 2321 + }, 2322 + "vertical_sync_timings": { 2323 + "disp": 1440, 2324 + "sync_start": 1443, 2325 + "sync_end": 1453, 2326 + "total": 1481 2327 + }, 2328 + "horizontal_flag": 45, 2329 + "vertical_flag": 43 2330 + } 2331 + } 2332 + ], 2333 + "mouse": [ 2334 + { 2335 + "index": 37, 2336 + "attached_to": 47, 2337 + "class_list": [ 2338 + "mouse", 2339 + "usb" 2340 + ], 2341 + "bus_type": { 2342 + "hex": "0086", 2343 + "name": "USB", 2344 + "value": 134 2345 + }, 2346 + "slot": { 2347 + "bus": 0, 2348 + "number": 0 2349 + }, 2350 + "base_class": { 2351 + "hex": "0105", 2352 + "name": "Mouse", 2353 + "value": 261 2354 + }, 2355 + "sub_class": { 2356 + "hex": "0003", 2357 + "name": "USB Mouse", 2358 + "value": 3 2359 + }, 2360 + "vendor": { 2361 + "hex": "1044", 2362 + "name": "Texas Instruments", 2363 + "value": 4164 2364 + }, 2365 + "device": { 2366 + "hex": "7a16", 2367 + "name": "MSP430-USB Mouse", 2368 + "value": 31254 2369 + }, 2370 + "revision": { 2371 + "hex": "0000", 2372 + "name": "2.00", 2373 + "value": 0 2374 + }, 2375 + "serial": "50B7135131002D00", 2376 + "compat_vendor": "Unknown", 2377 + "compat_device": "Generic USB Mouse", 2378 + "model": "Texas Instruments MSP430-USB Mouse", 2379 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5.1/3-5.1.2/3-5.1.2:1.2", 2380 + "sysfs_bus_id": "3-5.1.2:1.2", 2381 + "unix_device_names": [ 2382 + "/dev/input/mice" 2383 + ], 2384 + "unix_device_name2": "/dev/input/mouse1", 2385 + "resources": [ 2386 + { 2387 + "type": "baud", 2388 + "speed": 12000000, 2389 + "bits": 0, 2390 + "stop_bits": 0, 2391 + "parity": 0, 2392 + "handshake": 0 2393 + } 2394 + ], 2395 + "detail": { 2396 + "device_class": { 2397 + "hex": "0000", 2398 + "name": "per_interface", 2399 + "value": 0 2400 + }, 2401 + "device_subclass": { 2402 + "hex": "0000", 2403 + "name": "per_interface", 2404 + "value": 0 2405 + }, 2406 + "device_protocol": 0, 2407 + "interface_class": { 2408 + "hex": "0003", 2409 + "name": "hid", 2410 + "value": 3 2411 + }, 2412 + "interface_subclass": { 2413 + "hex": "0001", 2414 + "name": "audio", 2415 + "value": 1 2416 + }, 2417 + "interface_protocol": 2, 2418 + "interface_number": 2, 2419 + "interface_alternate_setting": 0 2420 + }, 2421 + "hotplug": "usb", 2422 + "driver": "usbhid", 2423 + "driver_module": "usbhid", 2424 + "drivers": [ 2425 + "usbhid" 2426 + ], 2427 + "driver_modules": [ 2428 + "usbhid" 2429 + ], 2430 + "driver_info": { 2431 + "type": "mouse", 2432 + "db_entry_0": [ 2433 + "explorerps/2", 2434 + "exps2" 2435 + ], 2436 + "xf86": "explorerps/2", 2437 + "gpm": "exps2", 2438 + "buttons": -1, 2439 + "wheels": -1 2440 + }, 2441 + "module_alias": "usb:v1044p7A16d0200dc00dsc00dp00ic03isc01ip02in02" 2442 + }, 2443 + { 2444 + "index": 51, 2445 + "attached_to": 47, 2446 + "class_list": [ 2447 + "mouse", 2448 + "usb" 2449 + ], 2450 + "bus_type": { 2451 + "hex": "0086", 2452 + "name": "USB", 2453 + "value": 134 2454 + }, 2455 + "slot": { 2456 + "bus": 0, 2457 + "number": 0 2458 + }, 2459 + "base_class": { 2460 + "hex": "0105", 2461 + "name": "Mouse", 2462 + "value": 261 2463 + }, 2464 + "sub_class": { 2465 + "hex": "0003", 2466 + "name": "USB Mouse", 2467 + "value": 3 2468 + }, 2469 + "vendor": { 2470 + "hex": "1044", 2471 + "name": "Texas Instruments", 2472 + "value": 4164 2473 + }, 2474 + "device": { 2475 + "hex": "7a16", 2476 + "name": "MSP430-USB Mouse", 2477 + "value": 31254 2478 + }, 2479 + "revision": { 2480 + "hex": "0000", 2481 + "name": "2.00", 2482 + "value": 0 2483 + }, 2484 + "serial": "50B7135131002D00", 2485 + "compat_vendor": "Unknown", 2486 + "compat_device": "Generic USB Mouse", 2487 + "model": "Texas Instruments MSP430-USB Mouse", 2488 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5.1/3-5.1.2/3-5.1.2:1.1", 2489 + "sysfs_bus_id": "3-5.1.2:1.1", 2490 + "unix_device_names": [ 2491 + "/dev/input/mice" 2492 + ], 2493 + "unix_device_name2": "/dev/input/mouse0", 2494 + "resources": [ 2495 + { 2496 + "type": "baud", 2497 + "speed": 12000000, 2498 + "bits": 0, 2499 + "stop_bits": 0, 2500 + "parity": 0, 2501 + "handshake": 0 2502 + } 2503 + ], 2504 + "detail": { 2505 + "device_class": { 2506 + "hex": "0000", 2507 + "name": "per_interface", 2508 + "value": 0 2509 + }, 2510 + "device_subclass": { 2511 + "hex": "0000", 2512 + "name": "per_interface", 2513 + "value": 0 2514 + }, 2515 + "device_protocol": 0, 2516 + "interface_class": { 2517 + "hex": "0003", 2518 + "name": "hid", 2519 + "value": 3 2520 + }, 2521 + "interface_subclass": { 2522 + "hex": "0001", 2523 + "name": "audio", 2524 + "value": 1 2525 + }, 2526 + "interface_protocol": 2, 2527 + "interface_number": 1, 2528 + "interface_alternate_setting": 0 2529 + }, 2530 + "hotplug": "usb", 2531 + "driver": "usbhid", 2532 + "driver_module": "usbhid", 2533 + "drivers": [ 2534 + "usbhid" 2535 + ], 2536 + "driver_modules": [ 2537 + "usbhid" 2538 + ], 2539 + "driver_info": { 2540 + "type": "mouse", 2541 + "db_entry_0": [ 2542 + "explorerps/2", 2543 + "exps2" 2544 + ], 2545 + "xf86": "explorerps/2", 2546 + "gpm": "exps2", 2547 + "buttons": -1, 2548 + "wheels": -1 2549 + }, 2550 + "module_alias": "usb:v1044p7A16d0200dc00dsc00dp00ic03isc01ip02in01" 2551 + } 2552 + ], 2553 + "network_controller": [ 2554 + { 2555 + "index": 8, 2556 + "attached_to": 14, 2557 + "class_list": [ 2558 + "network_controller", 2559 + "pci" 2560 + ], 2561 + "bus_type": { 2562 + "hex": "0004", 2563 + "name": "PCI", 2564 + "value": 4 2565 + }, 2566 + "slot": { 2567 + "bus": 3, 2568 + "number": 0 2569 + }, 2570 + "base_class": { 2571 + "hex": "0002", 2572 + "name": "Network controller", 2573 + "value": 2 2574 + }, 2575 + "sub_class": { 2576 + "hex": "0000", 2577 + "name": "Ethernet controller", 2578 + "value": 0 2579 + }, 2580 + "vendor": { 2581 + "hex": "8086", 2582 + "name": "Intel Corporation", 2583 + "value": 32902 2584 + }, 2585 + "sub_vendor": { 2586 + "hex": "8086", 2587 + "name": "Intel Corporation", 2588 + "value": 32902 2589 + }, 2590 + "device": { 2591 + "hex": "125c", 2592 + "value": 4700 2593 + }, 2594 + "sub_device": { 2595 + "hex": "0000", 2596 + "value": 0 2597 + }, 2598 + "revision": { 2599 + "hex": "0004", 2600 + "value": 4 2601 + }, 2602 + "model": "Intel Ethernet controller", 2603 + "sysfs_id": "/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/0000:02:03.0/0000:03:00.0", 2604 + "sysfs_bus_id": "0000:03:00.0", 2605 + "unix_device_names": [ 2606 + "enp3s0" 2607 + ], 2608 + "resources": [ 2609 + { 2610 + "type": "hwaddr", 2611 + "address": 101 2612 + }, 2613 + { 2614 + "type": "phwaddr", 2615 + "address": 101 2616 + } 2617 + ], 2618 + "detail": { 2619 + "function": 0, 2620 + "command": 1030, 2621 + "header_type": 0, 2622 + "secondary_bus": 0, 2623 + "prog_if": 0 2624 + }, 2625 + "driver": "igc", 2626 + "driver_module": "igc", 2627 + "drivers": [ 2628 + "igc" 2629 + ], 2630 + "driver_modules": [ 2631 + "igc" 2632 + ], 2633 + "module_alias": "pci:v00008086d0000125Csv00008086sd00000000bc02sc00i00" 2634 + }, 2635 + { 2636 + "index": 15, 2637 + "attached_to": 0, 2638 + "class_list": [ 2639 + "network_controller", 2640 + "pci", 2641 + "wlan_card" 2642 + ], 2643 + "bus_type": { 2644 + "hex": "0004", 2645 + "name": "PCI", 2646 + "value": 4 2647 + }, 2648 + "slot": { 2649 + "bus": 0, 2650 + "number": 20 2651 + }, 2652 + "base_class": { 2653 + "hex": "0002", 2654 + "name": "Network controller", 2655 + "value": 2 2656 + }, 2657 + "sub_class": { 2658 + "hex": "0082", 2659 + "name": "WLAN controller", 2660 + "value": 130 2661 + }, 2662 + "vendor": { 2663 + "hex": "8086", 2664 + "name": "Intel Corporation", 2665 + "value": 32902 2666 + }, 2667 + "sub_vendor": { 2668 + "hex": "8086", 2669 + "name": "Intel Corporation", 2670 + "value": 32902 2671 + }, 2672 + "device": { 2673 + "hex": "54f0", 2674 + "value": 21744 2675 + }, 2676 + "sub_device": { 2677 + "hex": "0244", 2678 + "value": 580 2679 + }, 2680 + "model": "Intel WLAN controller", 2681 + "sysfs_id": "/devices/pci0000:00/0000:00:14.3", 2682 + "sysfs_bus_id": "0000:00:14.3", 2683 + "unix_device_names": [ 2684 + "wlo1" 2685 + ], 2686 + "resources": [ 2687 + { 2688 + "type": "hwaddr", 2689 + "address": 102 2690 + }, 2691 + { 2692 + "type": "phwaddr", 2693 + "address": 100 2694 + }, 2695 + { 2696 + "type": "wlan", 2697 + "channels": [ 2698 + "1", 2699 + "2", 2700 + "3", 2701 + "4", 2702 + "5", 2703 + "6", 2704 + "7", 2705 + "8", 2706 + "9", 2707 + "10", 2708 + "11", 2709 + "12", 2710 + "13", 2711 + "36", 2712 + "40", 2713 + "44", 2714 + "48", 2715 + "52", 2716 + "56", 2717 + "60", 2718 + "64", 2719 + "100", 2720 + "104", 2721 + "108", 2722 + "112", 2723 + "116", 2724 + "120", 2725 + "124", 2726 + "128", 2727 + "132", 2728 + "136", 2729 + "140" 2730 + ], 2731 + "frequencies": [ 2732 + "2.412", 2733 + "2.417", 2734 + "2.422", 2735 + "2.427", 2736 + "2.432", 2737 + "2.437", 2738 + "2.442", 2739 + "2.447", 2740 + "2.452", 2741 + "2.457", 2742 + "2.462", 2743 + "2.467", 2744 + "2.472", 2745 + "5.18", 2746 + "5.2", 2747 + "5.22", 2748 + "5.24", 2749 + "5.26", 2750 + "5.28", 2751 + "5.3", 2752 + "5.32", 2753 + "5.5", 2754 + "5.52", 2755 + "5.54", 2756 + "5.56", 2757 + "5.58", 2758 + "5.6", 2759 + "5.62", 2760 + "5.64", 2761 + "5.66", 2762 + "5.68", 2763 + "5.7" 2764 + ], 2765 + "auth_modes": [ 2766 + "open", 2767 + "sharedkey", 2768 + "wpa-psk", 2769 + "wpa-eap" 2770 + ], 2771 + "enc_modes": [ 2772 + "WEP40", 2773 + "WEP104", 2774 + "TKIP", 2775 + "CCMP" 2776 + ] 2777 + } 2778 + ], 2779 + "detail": { 2780 + "function": 3, 2781 + "command": 1030, 2782 + "header_type": 0, 2783 + "secondary_bus": 0, 2784 + "prog_if": 0 2785 + }, 2786 + "driver": "iwlwifi", 2787 + "driver_module": "iwlwifi", 2788 + "drivers": [ 2789 + "iwlwifi" 2790 + ], 2791 + "driver_modules": [ 2792 + "iwlwifi" 2793 + ], 2794 + "module_alias": "pci:v00008086d000054F0sv00008086sd00000244bc02sc80i00", 2795 + "label": "Onboard - Ethernet" 2796 + }, 2797 + { 2798 + "index": 24, 2799 + "attached_to": 10, 2800 + "class_list": [ 2801 + "network_controller", 2802 + "pci" 2803 + ], 2804 + "bus_type": { 2805 + "hex": "0004", 2806 + "name": "PCI", 2807 + "value": 4 2808 + }, 2809 + "slot": { 2810 + "bus": 4, 2811 + "number": 0 2812 + }, 2813 + "base_class": { 2814 + "hex": "0002", 2815 + "name": "Network controller", 2816 + "value": 2 2817 + }, 2818 + "sub_class": { 2819 + "hex": "0000", 2820 + "name": "Ethernet controller", 2821 + "value": 0 2822 + }, 2823 + "vendor": { 2824 + "hex": "8086", 2825 + "name": "Intel Corporation", 2826 + "value": 32902 2827 + }, 2828 + "sub_vendor": { 2829 + "hex": "8086", 2830 + "name": "Intel Corporation", 2831 + "value": 32902 2832 + }, 2833 + "device": { 2834 + "hex": "125c", 2835 + "value": 4700 2836 + }, 2837 + "sub_device": { 2838 + "hex": "0000", 2839 + "value": 0 2840 + }, 2841 + "revision": { 2842 + "hex": "0004", 2843 + "value": 4 2844 + }, 2845 + "model": "Intel Ethernet controller", 2846 + "sysfs_id": "/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/0000:02:07.0/0000:04:00.0", 2847 + "sysfs_bus_id": "0000:04:00.0", 2848 + "unix_device_names": [ 2849 + "enp4s0" 2850 + ], 2851 + "resources": [ 2852 + { 2853 + "type": "hwaddr", 2854 + "address": 101 2855 + }, 2856 + { 2857 + "type": "phwaddr", 2858 + "address": 101 2859 + } 2860 + ], 2861 + "detail": { 2862 + "function": 0, 2863 + "command": 1030, 2864 + "header_type": 0, 2865 + "secondary_bus": 0, 2866 + "prog_if": 0 2867 + }, 2868 + "driver": "igc", 2869 + "driver_module": "igc", 2870 + "drivers": [ 2871 + "igc" 2872 + ], 2873 + "driver_modules": [ 2874 + "igc" 2875 + ], 2876 + "module_alias": "pci:v00008086d0000125Csv00008086sd00000000bc02sc00i00" 2877 + } 2878 + ], 2879 + "network_interface": [ 2880 + { 2881 + "index": 55, 2882 + "attached_to": 0, 2883 + "class_list": [ 2884 + "network_interface" 2885 + ], 2886 + "base_class": { 2887 + "hex": "0107", 2888 + "name": "Network Interface", 2889 + "value": 263 2890 + }, 2891 + "sub_class": { 2892 + "hex": "0000", 2893 + "name": "Loopback", 2894 + "value": 0 2895 + }, 2896 + "model": "Loopback network interface", 2897 + "sysfs_id": "/class/net/lo", 2898 + "unix_device_names": [ 2899 + "lo" 2900 + ] 2901 + }, 2902 + { 2903 + "index": 56, 2904 + "attached_to": 24, 2905 + "class_list": [ 2906 + "network_interface" 2907 + ], 2908 + "base_class": { 2909 + "hex": "0107", 2910 + "name": "Network Interface", 2911 + "value": 263 2912 + }, 2913 + "sub_class": { 2914 + "hex": "0001", 2915 + "name": "Ethernet", 2916 + "value": 1 2917 + }, 2918 + "model": "Ethernet network interface", 2919 + "sysfs_id": "/class/net/enp4s0", 2920 + "sysfs_device_link": "/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/0000:02:07.0/0000:04:00.0", 2921 + "unix_device_names": [ 2922 + "enp4s0" 2923 + ], 2924 + "resources": [ 2925 + { 2926 + "type": "hwaddr", 2927 + "address": 101 2928 + }, 2929 + { 2930 + "type": "phwaddr", 2931 + "address": 101 2932 + } 2933 + ], 2934 + "driver": "igc", 2935 + "driver_module": "igc", 2936 + "drivers": [ 2937 + "igc" 2938 + ], 2939 + "driver_modules": [ 2940 + "igc" 2941 + ] 2942 + }, 2943 + { 2944 + "index": 57, 2945 + "attached_to": 15, 2946 + "class_list": [ 2947 + "network_interface" 2948 + ], 2949 + "base_class": { 2950 + "hex": "0107", 2951 + "name": "Network Interface", 2952 + "value": 263 2953 + }, 2954 + "sub_class": { 2955 + "hex": "0001", 2956 + "name": "Ethernet", 2957 + "value": 1 2958 + }, 2959 + "model": "Ethernet network interface", 2960 + "sysfs_id": "/class/net/wlo1", 2961 + "sysfs_device_link": "/devices/pci0000:00/0000:00:14.3", 2962 + "unix_device_names": [ 2963 + "wlo1" 2964 + ], 2965 + "resources": [ 2966 + { 2967 + "type": "hwaddr", 2968 + "address": 102 2969 + }, 2970 + { 2971 + "type": "phwaddr", 2972 + "address": 100 2973 + } 2974 + ], 2975 + "driver": "iwlwifi", 2976 + "driver_module": "iwlwifi", 2977 + "drivers": [ 2978 + "iwlwifi" 2979 + ], 2980 + "driver_modules": [ 2981 + "iwlwifi" 2982 + ] 2983 + }, 2984 + { 2985 + "index": 58, 2986 + "attached_to": 8, 2987 + "class_list": [ 2988 + "network_interface" 2989 + ], 2990 + "base_class": { 2991 + "hex": "0107", 2992 + "name": "Network Interface", 2993 + "value": 263 2994 + }, 2995 + "sub_class": { 2996 + "hex": "0001", 2997 + "name": "Ethernet", 2998 + "value": 1 2999 + }, 3000 + "model": "Ethernet network interface", 3001 + "sysfs_id": "/class/net/enp3s0", 3002 + "sysfs_device_link": "/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/0000:02:03.0/0000:03:00.0", 3003 + "unix_device_names": [ 3004 + "enp3s0" 3005 + ], 3006 + "resources": [ 3007 + { 3008 + "type": "hwaddr", 3009 + "address": 101 3010 + }, 3011 + { 3012 + "type": "phwaddr", 3013 + "address": 101 3014 + } 3015 + ], 3016 + "driver": "igc", 3017 + "driver_module": "igc", 3018 + "drivers": [ 3019 + "igc" 3020 + ], 3021 + "driver_modules": [ 3022 + "igc" 3023 + ] 3024 + } 3025 + ], 3026 + "pci": [ 3027 + { 3028 + "index": 12, 3029 + "attached_to": 0, 3030 + "class_list": [ 3031 + "pci", 3032 + "unknown" 3033 + ], 3034 + "bus_type": { 3035 + "hex": "0004", 3036 + "name": "PCI", 3037 + "value": 4 3038 + }, 3039 + "slot": { 3040 + "bus": 0, 3041 + "number": 21 3042 + }, 3043 + "base_class": { 3044 + "hex": "000c", 3045 + "name": "Serial bus controller", 3046 + "value": 12 3047 + }, 3048 + "sub_class": { 3049 + "hex": "0080", 3050 + "value": 128 3051 + }, 3052 + "vendor": { 3053 + "hex": "8086", 3054 + "name": "Intel Corporation", 3055 + "value": 32902 3056 + }, 3057 + "device": { 3058 + "hex": "54e9", 3059 + "value": 21737 3060 + }, 3061 + "model": "Intel Serial bus controller", 3062 + "sysfs_id": "/devices/pci0000:00/0000:00:15.1", 3063 + "sysfs_bus_id": "0000:00:15.1", 3064 + "detail": { 3065 + "function": 1, 3066 + "command": 6, 3067 + "header_type": 0, 3068 + "secondary_bus": 0, 3069 + "prog_if": 0 3070 + }, 3071 + "driver": "intel-lpss", 3072 + "driver_module": "intel_lpss_pci", 3073 + "drivers": [ 3074 + "intel-lpss" 3075 + ], 3076 + "driver_modules": [ 3077 + "intel_lpss_pci" 3078 + ], 3079 + "module_alias": "pci:v00008086d000054E9sv00000000sd00000000bc0Csc80i00", 3080 + "label": "Onboard - Other" 3081 + }, 3082 + { 3083 + "index": 16, 3084 + "attached_to": 0, 3085 + "class_list": [ 3086 + "pci", 3087 + "unknown" 3088 + ], 3089 + "bus_type": { 3090 + "hex": "0004", 3091 + "name": "PCI", 3092 + "value": 4 3093 + }, 3094 + "slot": { 3095 + "bus": 0, 3096 + "number": 22 3097 + }, 3098 + "base_class": { 3099 + "hex": "0007", 3100 + "name": "Communication controller", 3101 + "value": 7 3102 + }, 3103 + "sub_class": { 3104 + "hex": "0080", 3105 + "name": "Communication controller", 3106 + "value": 128 3107 + }, 3108 + "vendor": { 3109 + "hex": "8086", 3110 + "name": "Intel Corporation", 3111 + "value": 32902 3112 + }, 3113 + "device": { 3114 + "hex": "54e0", 3115 + "value": 21728 3116 + }, 3117 + "model": "Intel Communication controller", 3118 + "sysfs_id": "/devices/pci0000:00/0000:00:16.0", 3119 + "sysfs_bus_id": "0000:00:16.0", 3120 + "detail": { 3121 + "function": 0, 3122 + "command": 1030, 3123 + "header_type": 0, 3124 + "secondary_bus": 0, 3125 + "prog_if": 0 3126 + }, 3127 + "driver": "mei_me", 3128 + "driver_module": "mei_me", 3129 + "drivers": [ 3130 + "mei_me" 3131 + ], 3132 + "driver_modules": [ 3133 + "mei_me" 3134 + ], 3135 + "module_alias": "pci:v00008086d000054E0sv00000000sd00000000bc07sc80i00", 3136 + "label": "Onboard - Other" 3137 + }, 3138 + { 3139 + "index": 18, 3140 + "attached_to": 0, 3141 + "class_list": [ 3142 + "pci", 3143 + "unknown" 3144 + ], 3145 + "bus_type": { 3146 + "hex": "0004", 3147 + "name": "PCI", 3148 + "value": 4 3149 + }, 3150 + "slot": { 3151 + "bus": 0, 3152 + "number": 31 3153 + }, 3154 + "base_class": { 3155 + "hex": "000c", 3156 + "name": "Serial bus controller", 3157 + "value": 12 3158 + }, 3159 + "sub_class": { 3160 + "hex": "0080", 3161 + "value": 128 3162 + }, 3163 + "vendor": { 3164 + "hex": "8086", 3165 + "name": "Intel Corporation", 3166 + "value": 32902 3167 + }, 3168 + "device": { 3169 + "hex": "54a4", 3170 + "value": 21668 3171 + }, 3172 + "model": "Intel Serial bus controller", 3173 + "sysfs_id": "/devices/pci0000:00/0000:00:1f.5", 3174 + "sysfs_bus_id": "0000:00:1f.5", 3175 + "detail": { 3176 + "function": 5, 3177 + "command": 1026, 3178 + "header_type": 0, 3179 + "secondary_bus": 0, 3180 + "prog_if": 0 3181 + }, 3182 + "driver": "intel-spi", 3183 + "driver_module": "spi_intel_pci", 3184 + "drivers": [ 3185 + "intel-spi" 3186 + ], 3187 + "driver_modules": [ 3188 + "spi_intel_pci" 3189 + ], 3190 + "module_alias": "pci:v00008086d000054A4sv00000000sd00000000bc0Csc80i00", 3191 + "label": "Onboard - Other" 3192 + }, 3193 + { 3194 + "index": 21, 3195 + "attached_to": 0, 3196 + "class_list": [ 3197 + "pci", 3198 + "unknown" 3199 + ], 3200 + "bus_type": { 3201 + "hex": "0004", 3202 + "name": "PCI", 3203 + "value": 4 3204 + }, 3205 + "slot": { 3206 + "bus": 0, 3207 + "number": 21 3208 + }, 3209 + "base_class": { 3210 + "hex": "000c", 3211 + "name": "Serial bus controller", 3212 + "value": 12 3213 + }, 3214 + "sub_class": { 3215 + "hex": "0080", 3216 + "value": 128 3217 + }, 3218 + "vendor": { 3219 + "hex": "8086", 3220 + "name": "Intel Corporation", 3221 + "value": 32902 3222 + }, 3223 + "device": { 3224 + "hex": "54e8", 3225 + "value": 21736 3226 + }, 3227 + "model": "Intel Serial bus controller", 3228 + "sysfs_id": "/devices/pci0000:00/0000:00:15.0", 3229 + "sysfs_bus_id": "0000:00:15.0", 3230 + "detail": { 3231 + "function": 0, 3232 + "command": 6, 3233 + "header_type": 0, 3234 + "secondary_bus": 0, 3235 + "prog_if": 0 3236 + }, 3237 + "driver": "intel-lpss", 3238 + "driver_module": "intel_lpss_pci", 3239 + "drivers": [ 3240 + "intel-lpss" 3241 + ], 3242 + "driver_modules": [ 3243 + "intel_lpss_pci" 3244 + ], 3245 + "module_alias": "pci:v00008086d000054E8sv00000000sd00000000bc0Csc80i00", 3246 + "label": "Onboard - Other" 3247 + }, 3248 + { 3249 + "index": 22, 3250 + "attached_to": 0, 3251 + "class_list": [ 3252 + "pci", 3253 + "unknown" 3254 + ], 3255 + "bus_type": { 3256 + "hex": "0004", 3257 + "name": "PCI", 3258 + "value": 4 3259 + }, 3260 + "slot": { 3261 + "bus": 0, 3262 + "number": 26 3263 + }, 3264 + "base_class": { 3265 + "hex": "0008", 3266 + "name": "Generic system peripheral", 3267 + "value": 8 3268 + }, 3269 + "sub_class": { 3270 + "hex": "0005", 3271 + "value": 5 3272 + }, 3273 + "pci_interface": { 3274 + "hex": "0001", 3275 + "value": 1 3276 + }, 3277 + "vendor": { 3278 + "hex": "8086", 3279 + "name": "Intel Corporation", 3280 + "value": 32902 3281 + }, 3282 + "device": { 3283 + "hex": "54c4", 3284 + "value": 21700 3285 + }, 3286 + "model": "Intel Generic system peripheral", 3287 + "sysfs_id": "/devices/pci0000:00/0000:00:1a.0", 3288 + "sysfs_bus_id": "0000:00:1a.0", 3289 + "detail": { 3290 + "function": 0, 3291 + "command": 6, 3292 + "header_type": 0, 3293 + "secondary_bus": 0, 3294 + "prog_if": 1 3295 + }, 3296 + "driver": "sdhci-pci", 3297 + "driver_module": "sdhci_pci", 3298 + "drivers": [ 3299 + "sdhci-pci" 3300 + ], 3301 + "driver_modules": [ 3302 + "sdhci_pci" 3303 + ], 3304 + "module_alias": "pci:v00008086d000054C4sv00000000sd00000000bc08sc05i01", 3305 + "label": "Onboard - Other" 3306 + }, 3307 + { 3308 + "index": 23, 3309 + "attached_to": 0, 3310 + "class_list": [ 3311 + "pci", 3312 + "unknown" 3313 + ], 3314 + "bus_type": { 3315 + "hex": "0004", 3316 + "name": "PCI", 3317 + "value": 4 3318 + }, 3319 + "slot": { 3320 + "bus": 0, 3321 + "number": 20 3322 + }, 3323 + "base_class": { 3324 + "hex": "0005", 3325 + "name": "Memory controller", 3326 + "value": 5 3327 + }, 3328 + "sub_class": { 3329 + "hex": "0000", 3330 + "name": "RAM memory", 3331 + "value": 0 3332 + }, 3333 + "vendor": { 3334 + "hex": "8086", 3335 + "name": "Intel Corporation", 3336 + "value": 32902 3337 + }, 3338 + "device": { 3339 + "hex": "54ef", 3340 + "value": 21743 3341 + }, 3342 + "model": "Intel RAM memory", 3343 + "sysfs_id": "/devices/pci0000:00/0000:00:14.2", 3344 + "sysfs_bus_id": "0000:00:14.2", 3345 + "detail": { 3346 + "function": 2, 3347 + "command": 0, 3348 + "header_type": 0, 3349 + "secondary_bus": 0, 3350 + "prog_if": 0 3351 + }, 3352 + "module_alias": "pci:v00008086d000054EFsv00000000sd00000000bc05sc00i00", 3353 + "label": "Onboard - Other" 3354 + }, 3355 + { 3356 + "index": 27, 3357 + "attached_to": 0, 3358 + "class_list": [ 3359 + "pci", 3360 + "unknown" 3361 + ], 3362 + "bus_type": { 3363 + "hex": "0004", 3364 + "name": "PCI", 3365 + "value": 4 3366 + }, 3367 + "slot": { 3368 + "bus": 0, 3369 + "number": 31 3370 + }, 3371 + "base_class": { 3372 + "hex": "000c", 3373 + "name": "Serial bus controller", 3374 + "value": 12 3375 + }, 3376 + "sub_class": { 3377 + "hex": "0005", 3378 + "name": "SMBus", 3379 + "value": 5 3380 + }, 3381 + "vendor": { 3382 + "hex": "8086", 3383 + "name": "Intel Corporation", 3384 + "value": 32902 3385 + }, 3386 + "device": { 3387 + "hex": "54a3", 3388 + "value": 21667 3389 + }, 3390 + "model": "Intel SMBus", 3391 + "sysfs_id": "/devices/pci0000:00/0000:00:1f.4", 3392 + "sysfs_bus_id": "0000:00:1f.4", 3393 + "resources": [ 3394 + { 3395 + "type": "io", 3396 + "base": 61344, 3397 + "range": 32, 3398 + "enabled": true, 3399 + "access": "read_write" 3400 + } 3401 + ], 3402 + "detail": { 3403 + "function": 4, 3404 + "command": 3, 3405 + "header_type": 0, 3406 + "secondary_bus": 0, 3407 + "prog_if": 0 3408 + }, 3409 + "driver": "i801_smbus", 3410 + "driver_module": "i2c_i801", 3411 + "drivers": [ 3412 + "i801_smbus" 3413 + ], 3414 + "driver_modules": [ 3415 + "i2c_i801" 3416 + ], 3417 + "module_alias": "pci:v00008086d000054A3sv00000000sd00000000bc0Csc05i00", 3418 + "label": "Onboard - Other" 3419 + }, 3420 + { 3421 + "index": 28, 3422 + "attached_to": 0, 3423 + "class_list": [ 3424 + "pci", 3425 + "unknown" 3426 + ], 3427 + "bus_type": { 3428 + "hex": "0004", 3429 + "name": "PCI", 3430 + "value": 4 3431 + }, 3432 + "slot": { 3433 + "bus": 0, 3434 + "number": 10 3435 + }, 3436 + "base_class": { 3437 + "hex": "0011", 3438 + "name": "Signal processing controller", 3439 + "value": 17 3440 + }, 3441 + "sub_class": { 3442 + "hex": "0080", 3443 + "name": "Signal processing controller", 3444 + "value": 128 3445 + }, 3446 + "vendor": { 3447 + "hex": "8086", 3448 + "name": "Intel Corporation", 3449 + "value": 32902 3450 + }, 3451 + "device": { 3452 + "hex": "467d", 3453 + "value": 18045 3454 + }, 3455 + "revision": { 3456 + "hex": "0001", 3457 + "value": 1 3458 + }, 3459 + "model": "Intel Signal processing controller", 3460 + "sysfs_id": "/devices/pci0000:00/0000:00:0a.0", 3461 + "sysfs_bus_id": "0000:00:0a.0", 3462 + "detail": { 3463 + "function": 0, 3464 + "command": 2, 3465 + "header_type": 0, 3466 + "secondary_bus": 0, 3467 + "prog_if": 0 3468 + }, 3469 + "driver": "intel_vsec", 3470 + "driver_module": "intel_vsec", 3471 + "drivers": [ 3472 + "intel_vsec" 3473 + ], 3474 + "driver_modules": [ 3475 + "intel_vsec" 3476 + ], 3477 + "module_alias": "pci:v00008086d0000467Dsv00000000sd00000000bc11sc80i00", 3478 + "label": "Onboard - Other" 3479 + } 3480 + ], 3481 + "sound": [ 3482 + { 3483 + "index": 19, 3484 + "attached_to": 0, 3485 + "class_list": [ 3486 + "sound", 3487 + "pci" 3488 + ], 3489 + "bus_type": { 3490 + "hex": "0004", 3491 + "name": "PCI", 3492 + "value": 4 3493 + }, 3494 + "slot": { 3495 + "bus": 0, 3496 + "number": 31 3497 + }, 3498 + "base_class": { 3499 + "hex": "0004", 3500 + "name": "Multimedia controller", 3501 + "value": 4 3502 + }, 3503 + "sub_class": { 3504 + "hex": "0003", 3505 + "value": 3 3506 + }, 3507 + "vendor": { 3508 + "hex": "8086", 3509 + "name": "Intel Corporation", 3510 + "value": 32902 3511 + }, 3512 + "sub_vendor": { 3513 + "hex": "10ec", 3514 + "value": 4332 3515 + }, 3516 + "device": { 3517 + "hex": "54c8", 3518 + "value": 21704 3519 + }, 3520 + "sub_device": { 3521 + "hex": "12e8", 3522 + "value": 4840 3523 + }, 3524 + "model": "Intel Multimedia controller", 3525 + "sysfs_id": "/devices/pci0000:00/0000:00:1f.3", 3526 + "sysfs_bus_id": "0000:00:1f.3", 3527 + "detail": { 3528 + "function": 3, 3529 + "command": 1030, 3530 + "header_type": 0, 3531 + "secondary_bus": 0, 3532 + "prog_if": 0 3533 + }, 3534 + "driver": "snd_hda_intel", 3535 + "driver_module": "snd_hda_intel", 3536 + "drivers": [ 3537 + "snd_hda_intel" 3538 + ], 3539 + "driver_modules": [ 3540 + "snd_hda_intel" 3541 + ], 3542 + "module_alias": "pci:v00008086d000054C8sv000010ECsd000012E8bc04sc03i00", 3543 + "label": "Onboard - Sound" 3544 + } 3545 + ], 3546 + "system": { 3547 + "form_factor": "desktop" 3548 + }, 3549 + "usb": [ 3550 + { 3551 + "index": 39, 3552 + "attached_to": 47, 3553 + "class_list": [ 3554 + "usb", 3555 + "unknown" 3556 + ], 3557 + "bus_type": { 3558 + "hex": "0086", 3559 + "name": "USB", 3560 + "value": 134 3561 + }, 3562 + "slot": { 3563 + "bus": 0, 3564 + "number": 0 3565 + }, 3566 + "base_class": { 3567 + "hex": "0000", 3568 + "name": "Unclassified device", 3569 + "value": 0 3570 + }, 3571 + "sub_class": { 3572 + "hex": "0000", 3573 + "name": "Unclassified device", 3574 + "value": 0 3575 + }, 3576 + "vendor": { 3577 + "hex": "24f0", 3578 + "name": "Metadot - Das Keyboard", 3579 + "value": 9456 3580 + }, 3581 + "device": { 3582 + "hex": "0140", 3583 + "name": "Das Keyboard", 3584 + "value": 320 3585 + }, 3586 + "revision": { 3587 + "hex": "0000", 3588 + "name": "1.00", 3589 + "value": 0 3590 + }, 3591 + "model": "Metadot - Das Keyboard Das Keyboard", 3592 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5.1/3-5.1.4/3-5.1.4:1.1", 3593 + "sysfs_bus_id": "3-5.1.4:1.1", 3594 + "unix_device_names": [ 3595 + "/dev/input/by-id/usb-Metadot_-_Das_Keyboard_Das_Keyboard-event-if01", 3596 + "/dev/input/by-path/pci-0000:00:14.0-usb-0:5.1.4:1.1-event", 3597 + "/dev/input/by-path/pci-0000:00:14.0-usbv2-0:5.1.4:1.1-event", 3598 + "/dev/input/event7" 3599 + ], 3600 + "resources": [ 3601 + { 3602 + "type": "baud", 3603 + "speed": 12000000, 3604 + "bits": 0, 3605 + "stop_bits": 0, 3606 + "parity": 0, 3607 + "handshake": 0 3608 + } 3609 + ], 3610 + "detail": { 3611 + "device_class": { 3612 + "hex": "0000", 3613 + "name": "per_interface", 3614 + "value": 0 3615 + }, 3616 + "device_subclass": { 3617 + "hex": "0000", 3618 + "name": "per_interface", 3619 + "value": 0 3620 + }, 3621 + "device_protocol": 0, 3622 + "interface_class": { 3623 + "hex": "0003", 3624 + "name": "hid", 3625 + "value": 3 3626 + }, 3627 + "interface_subclass": { 3628 + "hex": "0000", 3629 + "name": "per_interface", 3630 + "value": 0 3631 + }, 3632 + "interface_protocol": 0, 3633 + "interface_number": 1, 3634 + "interface_alternate_setting": 0 3635 + }, 3636 + "hotplug": "usb", 3637 + "driver": "usbhid", 3638 + "driver_module": "usbhid", 3639 + "drivers": [ 3640 + "usbhid" 3641 + ], 3642 + "driver_modules": [ 3643 + "usbhid" 3644 + ], 3645 + "module_alias": "usb:v24F0p0140d0100dc00dsc00dp00ic03isc00ip00in01" 3646 + }, 3647 + { 3648 + "index": 41, 3649 + "attached_to": 45, 3650 + "class_list": [ 3651 + "usb", 3652 + "unknown" 3653 + ], 3654 + "bus_type": { 3655 + "hex": "0086", 3656 + "name": "USB", 3657 + "value": 134 3658 + }, 3659 + "slot": { 3660 + "bus": 0, 3661 + "number": 0 3662 + }, 3663 + "base_class": { 3664 + "hex": "0000", 3665 + "name": "Unclassified device", 3666 + "value": 0 3667 + }, 3668 + "sub_class": { 3669 + "hex": "0000", 3670 + "name": "Unclassified device", 3671 + "value": 0 3672 + }, 3673 + "vendor": { 3674 + "hex": "0bda", 3675 + "name": "Realtek", 3676 + "value": 3034 3677 + }, 3678 + "device": { 3679 + "hex": "1100", 3680 + "name": "HID Device", 3681 + "value": 4352 3682 + }, 3683 + "revision": { 3684 + "hex": "0000", 3685 + "name": "1.01", 3686 + "value": 0 3687 + }, 3688 + "model": "Realtek HID Device", 3689 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5.4/3-5.4:1.0", 3690 + "sysfs_bus_id": "3-5.4:1.0", 3691 + "resources": [ 3692 + { 3693 + "type": "baud", 3694 + "speed": 480000000, 3695 + "bits": 0, 3696 + "stop_bits": 0, 3697 + "parity": 0, 3698 + "handshake": 0 3699 + } 3700 + ], 3701 + "detail": { 3702 + "device_class": { 3703 + "hex": "0000", 3704 + "name": "per_interface", 3705 + "value": 0 3706 + }, 3707 + "device_subclass": { 3708 + "hex": "0000", 3709 + "name": "per_interface", 3710 + "value": 0 3711 + }, 3712 + "device_protocol": 0, 3713 + "interface_class": { 3714 + "hex": "0003", 3715 + "name": "hid", 3716 + "value": 3 3717 + }, 3718 + "interface_subclass": { 3719 + "hex": "0000", 3720 + "name": "per_interface", 3721 + "value": 0 3722 + }, 3723 + "interface_protocol": 0, 3724 + "interface_number": 0, 3725 + "interface_alternate_setting": 0 3726 + }, 3727 + "hotplug": "usb", 3728 + "driver": "usbhid", 3729 + "driver_module": "usbhid", 3730 + "drivers": [ 3731 + "usbhid" 3732 + ], 3733 + "driver_modules": [ 3734 + "usbhid" 3735 + ], 3736 + "module_alias": "usb:v0BDAp1100d0101dc00dsc00dp00ic03isc00ip00in00" 3737 + }, 3738 + { 3739 + "index": 49, 3740 + "attached_to": 47, 3741 + "class_list": [ 3742 + "usb", 3743 + "unknown" 3744 + ], 3745 + "bus_type": { 3746 + "hex": "0086", 3747 + "name": "USB", 3748 + "value": 134 3749 + }, 3750 + "slot": { 3751 + "bus": 0, 3752 + "number": 0 3753 + }, 3754 + "base_class": { 3755 + "hex": "0000", 3756 + "name": "Unclassified device", 3757 + "value": 0 3758 + }, 3759 + "sub_class": { 3760 + "hex": "0000", 3761 + "name": "Unclassified device", 3762 + "value": 0 3763 + }, 3764 + "vendor": { 3765 + "hex": "1044", 3766 + "name": "Texas Instruments", 3767 + "value": 4164 3768 + }, 3769 + "device": { 3770 + "hex": "7a16", 3771 + "name": "MSP430-USB Mouse", 3772 + "value": 31254 3773 + }, 3774 + "revision": { 3775 + "hex": "0000", 3776 + "name": "2.00", 3777 + "value": 0 3778 + }, 3779 + "serial": "50B7135131002D00", 3780 + "model": "Texas Instruments MSP430-USB Mouse", 3781 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5.1/3-5.1.2/3-5.1.2:1.3", 3782 + "sysfs_bus_id": "3-5.1.2:1.3", 3783 + "resources": [ 3784 + { 3785 + "type": "baud", 3786 + "speed": 12000000, 3787 + "bits": 0, 3788 + "stop_bits": 0, 3789 + "parity": 0, 3790 + "handshake": 0 3791 + } 3792 + ], 3793 + "detail": { 3794 + "device_class": { 3795 + "hex": "0000", 3796 + "name": "per_interface", 3797 + "value": 0 3798 + }, 3799 + "device_subclass": { 3800 + "hex": "0000", 3801 + "name": "per_interface", 3802 + "value": 0 3803 + }, 3804 + "device_protocol": 0, 3805 + "interface_class": { 3806 + "hex": "0003", 3807 + "name": "hid", 3808 + "value": 3 3809 + }, 3810 + "interface_subclass": { 3811 + "hex": "0000", 3812 + "name": "per_interface", 3813 + "value": 0 3814 + }, 3815 + "interface_protocol": 0, 3816 + "interface_number": 3, 3817 + "interface_alternate_setting": 0 3818 + }, 3819 + "hotplug": "usb", 3820 + "driver": "usbhid", 3821 + "driver_module": "usbhid", 3822 + "drivers": [ 3823 + "usbhid" 3824 + ], 3825 + "driver_modules": [ 3826 + "usbhid" 3827 + ], 3828 + "module_alias": "usb:v1044p7A16d0200dc00dsc00dp00ic03isc00ip00in03" 3829 + } 3830 + ], 3831 + "usb_controller": [ 3832 + { 3833 + "index": 11, 3834 + "attached_to": 0, 3835 + "class_list": [ 3836 + "usb_controller", 3837 + "pci" 3838 + ], 3839 + "bus_type": { 3840 + "hex": "0004", 3841 + "name": "PCI", 3842 + "value": 4 3843 + }, 3844 + "slot": { 3845 + "bus": 0, 3846 + "number": 13 3847 + }, 3848 + "base_class": { 3849 + "hex": "000c", 3850 + "name": "Serial bus controller", 3851 + "value": 12 3852 + }, 3853 + "sub_class": { 3854 + "hex": "0003", 3855 + "name": "USB Controller", 3856 + "value": 3 3857 + }, 3858 + "pci_interface": { 3859 + "hex": "0030", 3860 + "value": 48 3861 + }, 3862 + "vendor": { 3863 + "hex": "8086", 3864 + "name": "Intel Corporation", 3865 + "value": 32902 3866 + }, 3867 + "device": { 3868 + "hex": "464e", 3869 + "value": 17998 3870 + }, 3871 + "model": "Intel USB Controller", 3872 + "sysfs_id": "/devices/pci0000:00/0000:00:0d.0", 3873 + "sysfs_bus_id": "0000:00:0d.0", 3874 + "detail": { 3875 + "function": 0, 3876 + "command": 1030, 3877 + "header_type": 0, 3878 + "secondary_bus": 0, 3879 + "prog_if": 48 3880 + }, 3881 + "driver": "xhci_hcd", 3882 + "driver_module": "xhci_pci", 3883 + "drivers": [ 3884 + "xhci_hcd" 3885 + ], 3886 + "driver_modules": [ 3887 + "xhci_pci" 3888 + ], 3889 + "module_alias": "pci:v00008086d0000464Esv00000000sd00000000bc0Csc03i30", 3890 + "label": "Onboard - Other" 3891 + }, 3892 + { 3893 + "index": 26, 3894 + "attached_to": 0, 3895 + "class_list": [ 3896 + "usb_controller", 3897 + "pci" 3898 + ], 3899 + "bus_type": { 3900 + "hex": "0004", 3901 + "name": "PCI", 3902 + "value": 4 3903 + }, 3904 + "slot": { 3905 + "bus": 0, 3906 + "number": 20 3907 + }, 3908 + "base_class": { 3909 + "hex": "000c", 3910 + "name": "Serial bus controller", 3911 + "value": 12 3912 + }, 3913 + "sub_class": { 3914 + "hex": "0003", 3915 + "name": "USB Controller", 3916 + "value": 3 3917 + }, 3918 + "pci_interface": { 3919 + "hex": "0030", 3920 + "value": 48 3921 + }, 3922 + "vendor": { 3923 + "hex": "8086", 3924 + "name": "Intel Corporation", 3925 + "value": 32902 3926 + }, 3927 + "device": { 3928 + "hex": "54ed", 3929 + "value": 21741 3930 + }, 3931 + "model": "Intel USB Controller", 3932 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0", 3933 + "sysfs_bus_id": "0000:00:14.0", 3934 + "detail": { 3935 + "function": 0, 3936 + "command": 1030, 3937 + "header_type": 0, 3938 + "secondary_bus": 0, 3939 + "prog_if": 48 3940 + }, 3941 + "driver": "xhci_hcd", 3942 + "driver_module": "xhci_pci", 3943 + "drivers": [ 3944 + "xhci_hcd" 3945 + ], 3946 + "driver_modules": [ 3947 + "xhci_pci" 3948 + ], 3949 + "module_alias": "pci:v00008086d000054EDsv00000000sd00000000bc0Csc03i30", 3950 + "label": "Onboard - Other" 3951 + } 3952 + ] 3953 + }, 3954 + "smbios": { 3955 + "bios": { 3956 + "handle": 0, 3957 + "vendor": "American Megatrends International, LLC.", 3958 + "version": "5.27", 3959 + "date": "03/27/2025", 3960 + "features": [ 3961 + "PCI supported", 3962 + "BIOS flashable", 3963 + "BIOS shadowing allowed", 3964 + "CD boot supported", 3965 + "Selectable boot supported", 3966 + "BIOS ROM socketed", 3967 + "EDD spec supported", 3968 + "1.2MB NEC 9800 Japanese Floppy supported", 3969 + "1.2MB Toshiba Japanese Floppy supported", 3970 + "360kB Floppy supported", 3971 + "1.2MB Floppy supported", 3972 + "720kB Floppy supported", 3973 + "2.88MB Floppy supported", 3974 + "Print Screen supported", 3975 + "Serial Services supported", 3976 + "Printer Services supported", 3977 + "CGA/Mono Video supported", 3978 + "ACPI supported", 3979 + "USB Legacy supported", 3980 + "BIOS Boot Spec supported" 3981 + ], 3982 + "start_address": "0xf0000", 3983 + "rom_size": 16777216 3984 + }, 3985 + "board": { 3986 + "handle": 2, 3987 + "manufacturer": "GMKtec", 3988 + "product": "GMKtec", 3989 + "version": "Default string", 3990 + "board_type": { 3991 + "hex": "000a", 3992 + "name": "Motherboard", 3993 + "value": 10 3994 + }, 3995 + "features": [ 3996 + "Hosting Board", 3997 + "Replaceable" 3998 + ], 3999 + "location": "Default string", 4000 + "chassis": 3 4001 + }, 4002 + "cache": [ 4003 + { 4004 + "handle": 56, 4005 + "socket": "L1 Cache", 4006 + "size_max": 128, 4007 + "size_current": 128, 4008 + "speed": 0, 4009 + "mode": { 4010 + "hex": "0001", 4011 + "name": "Write Back", 4012 + "value": 1 4013 + }, 4014 + "enabled": true, 4015 + "location": { 4016 + "hex": "0000", 4017 + "name": "Internal", 4018 + "value": 0 4019 + }, 4020 + "socketed": false, 4021 + "level": 0, 4022 + "ecc": { 4023 + "hex": "0004", 4024 + "name": "Parity", 4025 + "value": 4 4026 + }, 4027 + "cache_type": { 4028 + "hex": "0004", 4029 + "name": "Data", 4030 + "value": 4 4031 + }, 4032 + "associativity": { 4033 + "hex": "0007", 4034 + "name": "8-way Set-Associative", 4035 + "value": 7 4036 + }, 4037 + "sram_type_current": [ 4038 + "Synchronous" 4039 + ], 4040 + "sram_type_supported": [ 4041 + "Synchronous" 4042 + ] 4043 + }, 4044 + { 4045 + "handle": 57, 4046 + "socket": "L1 Cache", 4047 + "size_max": 256, 4048 + "size_current": 256, 4049 + "speed": 0, 4050 + "mode": { 4051 + "hex": "0001", 4052 + "name": "Write Back", 4053 + "value": 1 4054 + }, 4055 + "enabled": true, 4056 + "location": { 4057 + "hex": "0000", 4058 + "name": "Internal", 4059 + "value": 0 4060 + }, 4061 + "socketed": false, 4062 + "level": 0, 4063 + "ecc": { 4064 + "hex": "0004", 4065 + "name": "Parity", 4066 + "value": 4 4067 + }, 4068 + "cache_type": { 4069 + "hex": "0003", 4070 + "name": "Instruction", 4071 + "value": 3 4072 + }, 4073 + "associativity": { 4074 + "hex": "0007", 4075 + "name": "8-way Set-Associative", 4076 + "value": 7 4077 + }, 4078 + "sram_type_current": [ 4079 + "Synchronous" 4080 + ], 4081 + "sram_type_supported": [ 4082 + "Synchronous" 4083 + ] 4084 + }, 4085 + { 4086 + "handle": 58, 4087 + "socket": "L2 Cache", 4088 + "size_max": 2048, 4089 + "size_current": 2048, 4090 + "speed": 0, 4091 + "mode": { 4092 + "hex": "0001", 4093 + "name": "Write Back", 4094 + "value": 1 4095 + }, 4096 + "enabled": true, 4097 + "location": { 4098 + "hex": "0000", 4099 + "name": "Internal", 4100 + "value": 0 4101 + }, 4102 + "socketed": false, 4103 + "level": 1, 4104 + "ecc": { 4105 + "hex": "0005", 4106 + "name": "Single-bit", 4107 + "value": 5 4108 + }, 4109 + "cache_type": { 4110 + "hex": "0005", 4111 + "name": "Unified", 4112 + "value": 5 4113 + }, 4114 + "associativity": { 4115 + "hex": "0008", 4116 + "name": "16-way Set-Associative", 4117 + "value": 8 4118 + }, 4119 + "sram_type_current": [ 4120 + "Synchronous" 4121 + ], 4122 + "sram_type_supported": [ 4123 + "Synchronous" 4124 + ] 4125 + }, 4126 + { 4127 + "handle": 59, 4128 + "socket": "L3 Cache", 4129 + "size_max": 6144, 4130 + "size_current": 6144, 4131 + "speed": 0, 4132 + "mode": { 4133 + "hex": "0001", 4134 + "name": "Write Back", 4135 + "value": 1 4136 + }, 4137 + "enabled": true, 4138 + "location": { 4139 + "hex": "0000", 4140 + "name": "Internal", 4141 + "value": 0 4142 + }, 4143 + "socketed": false, 4144 + "level": 2, 4145 + "ecc": { 4146 + "hex": "0006", 4147 + "name": "Multi-bit", 4148 + "value": 6 4149 + }, 4150 + "cache_type": { 4151 + "hex": "0005", 4152 + "name": "Unified", 4153 + "value": 5 4154 + }, 4155 + "associativity": { 4156 + "hex": "0009", 4157 + "name": "Other", 4158 + "value": 9 4159 + }, 4160 + "sram_type_current": [ 4161 + "Synchronous" 4162 + ], 4163 + "sram_type_supported": [ 4164 + "Synchronous" 4165 + ] 4166 + } 4167 + ], 4168 + "chassis": [ 4169 + { 4170 + "handle": 3, 4171 + "manufacturer": "Default string", 4172 + "version": "Default string", 4173 + "chassis_type": null, 4174 + "lock_present": false, 4175 + "bootup_state": { 4176 + "hex": "0003", 4177 + "name": "Safe", 4178 + "value": 3 4179 + }, 4180 + "power_state": { 4181 + "hex": "0003", 4182 + "name": "Safe", 4183 + "value": 3 4184 + }, 4185 + "thermal_state": { 4186 + "hex": "0003", 4187 + "name": "Safe", 4188 + "value": 3 4189 + }, 4190 + "security_state": { 4191 + "hex": "0003", 4192 + "name": "None", 4193 + "value": 3 4194 + }, 4195 + "oem": "0x0" 4196 + } 4197 + ], 4198 + "config": { 4199 + "handle": 16, 4200 + "options": [ 4201 + "Default string" 4202 + ] 4203 + }, 4204 + "group_associations": [ 4205 + { 4206 + "handle": 123, 4207 + "name": "$MEI", 4208 + "handles": [ 4209 + 0 4210 + ] 4211 + }, 4212 + { 4213 + "handle": 126, 4214 + "name": "Firmware Version Info", 4215 + "handles": [ 4216 + 223338299443, 4217 + 227633266740, 4218 + 231928234037, 4219 + 236223201334, 4220 + 330712481847, 4221 + 365072220237 4222 + ] 4223 + } 4224 + ], 4225 + "language": [ 4226 + { 4227 + "handle": 17, 4228 + "languages": [ 4229 + "en|US|iso8859-1", 4230 + "zh|CN|unicode" 4231 + ] 4232 + }, 4233 + { 4234 + "handle": 79, 4235 + "languages": [ 4236 + "enUS" 4237 + ] 4238 + } 4239 + ], 4240 + "memory_array": [ 4241 + { 4242 + "handle": 39, 4243 + "location": { 4244 + "hex": "0003", 4245 + "name": "Motherboard", 4246 + "value": 3 4247 + }, 4248 + "usage": { 4249 + "hex": "0003", 4250 + "name": "System memory", 4251 + "value": 3 4252 + }, 4253 + "ecc": { 4254 + "hex": "0003", 4255 + "name": "None", 4256 + "value": 3 4257 + }, 4258 + "max_size": "0xc00000", 4259 + "error_handle": 65534, 4260 + "slots": 4 4261 + } 4262 + ], 4263 + "memory_array_mapped_address": [ 4264 + { 4265 + "handle": 44, 4266 + "array_handle": 39, 4267 + "start_address": "0x0", 4268 + "end_address": "0x300000000", 4269 + "part_width": 4 4270 + } 4271 + ], 4272 + "memory_device": [ 4273 + { 4274 + "handle": 40, 4275 + "location": "Controller0-ChannelA", 4276 + "bank_location": "BANK 0", 4277 + "manufacturer": "Micron Technology", 4278 + "part_number": "", 4279 + "array_handle": 39, 4280 + "error_handle": 65534, 4281 + "width": 16, 4282 + "ecc_bits": 0, 4283 + "size": 3145728, 4284 + "form_factor": { 4285 + "hex": "000b", 4286 + "name": "Row of Chips", 4287 + "value": 11 4288 + }, 4289 + "set": 0, 4290 + "memory_type": { 4291 + "hex": "0023", 4292 + "name": "Other", 4293 + "value": 35 4294 + }, 4295 + "memory_type_details": [ 4296 + "Synchronous" 4297 + ], 4298 + "speed": 6400 4299 + }, 4300 + { 4301 + "handle": 41, 4302 + "location": "Controller0-ChannelB", 4303 + "bank_location": "BANK 1", 4304 + "manufacturer": "Micron Technology", 4305 + "part_number": "", 4306 + "array_handle": 39, 4307 + "error_handle": 65534, 4308 + "width": 16, 4309 + "ecc_bits": 0, 4310 + "size": 3145728, 4311 + "form_factor": { 4312 + "hex": "000b", 4313 + "name": "Row of Chips", 4314 + "value": 11 4315 + }, 4316 + "set": 0, 4317 + "memory_type": { 4318 + "hex": "0023", 4319 + "name": "Other", 4320 + "value": 35 4321 + }, 4322 + "memory_type_details": [ 4323 + "Synchronous" 4324 + ], 4325 + "speed": 6400 4326 + }, 4327 + { 4328 + "handle": 42, 4329 + "location": "Controller0-ChannelC", 4330 + "bank_location": "BANK 2", 4331 + "manufacturer": "Micron Technology", 4332 + "part_number": "", 4333 + "array_handle": 39, 4334 + "error_handle": 65534, 4335 + "width": 16, 4336 + "ecc_bits": 0, 4337 + "size": 3145728, 4338 + "form_factor": { 4339 + "hex": "000b", 4340 + "name": "Row of Chips", 4341 + "value": 11 4342 + }, 4343 + "set": 0, 4344 + "memory_type": { 4345 + "hex": "0023", 4346 + "name": "Other", 4347 + "value": 35 4348 + }, 4349 + "memory_type_details": [ 4350 + "Synchronous" 4351 + ], 4352 + "speed": 6400 4353 + }, 4354 + { 4355 + "handle": 43, 4356 + "location": "Controller0-ChannelD", 4357 + "bank_location": "BANK 3", 4358 + "manufacturer": "Micron Technology", 4359 + "part_number": "", 4360 + "array_handle": 39, 4361 + "error_handle": 65534, 4362 + "width": 16, 4363 + "ecc_bits": 0, 4364 + "size": 3145728, 4365 + "form_factor": { 4366 + "hex": "000b", 4367 + "name": "Row of Chips", 4368 + "value": 11 4369 + }, 4370 + "set": 0, 4371 + "memory_type": { 4372 + "hex": "0023", 4373 + "name": "Other", 4374 + "value": 35 4375 + }, 4376 + "memory_type_details": [ 4377 + "Synchronous" 4378 + ], 4379 + "speed": 6400 4380 + } 4381 + ], 4382 + "memory_device_mapped_address": [ 4383 + { 4384 + "handle": 47, 4385 + "memory_device_handle": 40, 4386 + "array_map_handle": 44, 4387 + "start_address": "0x0", 4388 + "end_address": "0xc0000000", 4389 + "row_position": 255, 4390 + "interleave_position": 0, 4391 + "interleave_depth": 0 4392 + }, 4393 + { 4394 + "handle": 48, 4395 + "memory_device_handle": 41, 4396 + "array_map_handle": 44, 4397 + "start_address": "0xc0000000", 4398 + "end_address": "0x180000000", 4399 + "row_position": 255, 4400 + "interleave_position": 0, 4401 + "interleave_depth": 0 4402 + }, 4403 + { 4404 + "handle": 49, 4405 + "memory_device_handle": 42, 4406 + "array_map_handle": 44, 4407 + "start_address": "0x180000000", 4408 + "end_address": "0x240000000", 4409 + "row_position": 255, 4410 + "interleave_position": 0, 4411 + "interleave_depth": 0 4412 + }, 4413 + { 4414 + "handle": 50, 4415 + "memory_device_handle": 43, 4416 + "array_map_handle": 44, 4417 + "start_address": "0x240000000", 4418 + "end_address": "0x300000000", 4419 + "row_position": 255, 4420 + "interleave_position": 0, 4421 + "interleave_depth": 0 4422 + } 4423 + ], 4424 + "onboard": [ 4425 + { 4426 + "handle": 14, 4427 + "devices": [ 4428 + { 4429 + "name": "Device 1", 4430 + "type": { 4431 + "hex": "0002", 4432 + "name": "Unknown", 4433 + "value": 2 4434 + }, 4435 + "enabled": true 4436 + } 4437 + ] 4438 + } 4439 + ], 4440 + "port_connector": [ 4441 + { 4442 + "handle": 4, 4443 + "port_type": null, 4444 + "internal_reference_designator": "Internal Connector 1", 4445 + "external_reference_designator": "External Connector 1" 4446 + }, 4447 + { 4448 + "handle": 5, 4449 + "port_type": null, 4450 + "internal_reference_designator": "Internal Connector 2", 4451 + "external_reference_designator": "External Connector 2" 4452 + }, 4453 + { 4454 + "handle": 6, 4455 + "port_type": null, 4456 + "internal_reference_designator": "Internal Connector 3", 4457 + "external_reference_designator": "External Connector 3" 4458 + }, 4459 + { 4460 + "handle": 7, 4461 + "port_type": null, 4462 + "internal_reference_designator": "Internal Connector 4", 4463 + "external_reference_designator": "External Connector 4" 4464 + }, 4465 + { 4466 + "handle": 8, 4467 + "port_type": null, 4468 + "internal_reference_designator": "Internal Connector 5", 4469 + "external_reference_designator": "External Connector 5" 4470 + }, 4471 + { 4472 + "handle": 80, 4473 + "port_type": { 4474 + "hex": "000d", 4475 + "name": "Keyboard Port", 4476 + "value": 13 4477 + }, 4478 + "internal_reference_designator": "None", 4479 + "external_connector_type": { 4480 + "hex": "000f", 4481 + "name": "PS/2", 4482 + "value": 15 4483 + }, 4484 + "external_reference_designator": "Keyboard" 4485 + }, 4486 + { 4487 + "handle": 81, 4488 + "port_type": { 4489 + "hex": "000e", 4490 + "name": "Mouse Port", 4491 + "value": 14 4492 + }, 4493 + "internal_reference_designator": "None", 4494 + "external_connector_type": { 4495 + "hex": "000f", 4496 + "name": "PS/2", 4497 + "value": 15 4498 + }, 4499 + "external_reference_designator": "Mouse" 4500 + }, 4501 + { 4502 + "handle": 82, 4503 + "port_type": { 4504 + "hex": "0009", 4505 + "name": "Serial Port 16550A Compatible", 4506 + "value": 9 4507 + }, 4508 + "internal_connector_type": { 4509 + "hex": "00ff", 4510 + "name": "Other", 4511 + "value": 255 4512 + }, 4513 + "internal_reference_designator": "None", 4514 + "external_reference_designator": "COM 1" 4515 + }, 4516 + { 4517 + "handle": 83, 4518 + "port_type": { 4519 + "hex": "001c", 4520 + "name": "Video Port", 4521 + "value": 28 4522 + }, 4523 + "internal_connector_type": { 4524 + "hex": "00ff", 4525 + "name": "Other", 4526 + "value": 255 4527 + }, 4528 + "internal_reference_designator": "J1A2B", 4529 + "external_connector_type": { 4530 + "hex": "0007", 4531 + "name": "DB-15 pin female", 4532 + "value": 7 4533 + }, 4534 + "external_reference_designator": "Video" 4535 + }, 4536 + { 4537 + "handle": 84, 4538 + "port_type": { 4539 + "hex": "001c", 4540 + "name": "Video Port", 4541 + "value": 28 4542 + }, 4543 + "internal_connector_type": { 4544 + "hex": "00ff", 4545 + "name": "Other", 4546 + "value": 255 4547 + }, 4548 + "internal_reference_designator": "J3A2", 4549 + "external_reference_designator": "HDMI" 4550 + }, 4551 + { 4552 + "handle": 85, 4553 + "port_type": { 4554 + "hex": "0010", 4555 + "name": "USB", 4556 + "value": 16 4557 + }, 4558 + "internal_reference_designator": "None", 4559 + "external_connector_type": { 4560 + "hex": "0012", 4561 + "name": "Access Bus [USB]", 4562 + "value": 18 4563 + }, 4564 + "external_reference_designator": "USB1.1 - 1#" 4565 + }, 4566 + { 4567 + "handle": 86, 4568 + "port_type": { 4569 + "hex": "0010", 4570 + "name": "USB", 4571 + "value": 16 4572 + }, 4573 + "internal_reference_designator": "None", 4574 + "external_connector_type": { 4575 + "hex": "0012", 4576 + "name": "Access Bus [USB]", 4577 + "value": 18 4578 + }, 4579 + "external_reference_designator": "USB1.1 - 2#" 4580 + }, 4581 + { 4582 + "handle": 87, 4583 + "port_type": { 4584 + "hex": "0010", 4585 + "name": "USB", 4586 + "value": 16 4587 + }, 4588 + "internal_reference_designator": "None", 4589 + "external_connector_type": { 4590 + "hex": "0012", 4591 + "name": "Access Bus [USB]", 4592 + "value": 18 4593 + }, 4594 + "external_reference_designator": "USB1.1 - 3#" 4595 + }, 4596 + { 4597 + "handle": 88, 4598 + "port_type": { 4599 + "hex": "0010", 4600 + "name": "USB", 4601 + "value": 16 4602 + }, 4603 + "internal_reference_designator": "None", 4604 + "external_connector_type": { 4605 + "hex": "0012", 4606 + "name": "Access Bus [USB]", 4607 + "value": 18 4608 + }, 4609 + "external_reference_designator": "USB1.1 - 4#" 4610 + }, 4611 + { 4612 + "handle": 89, 4613 + "port_type": { 4614 + "hex": "0010", 4615 + "name": "USB", 4616 + "value": 16 4617 + }, 4618 + "internal_reference_designator": "None", 4619 + "external_connector_type": { 4620 + "hex": "0012", 4621 + "name": "Access Bus [USB]", 4622 + "value": 18 4623 + }, 4624 + "external_reference_designator": "USB1.1 - 5#" 4625 + }, 4626 + { 4627 + "handle": 90, 4628 + "port_type": { 4629 + "hex": "0010", 4630 + "name": "USB", 4631 + "value": 16 4632 + }, 4633 + "internal_reference_designator": "None", 4634 + "external_connector_type": { 4635 + "hex": "0012", 4636 + "name": "Access Bus [USB]", 4637 + "value": 18 4638 + }, 4639 + "external_reference_designator": "USB2.0 - 1#" 4640 + }, 4641 + { 4642 + "handle": 91, 4643 + "port_type": { 4644 + "hex": "0010", 4645 + "name": "USB", 4646 + "value": 16 4647 + }, 4648 + "internal_reference_designator": "None", 4649 + "external_connector_type": { 4650 + "hex": "0012", 4651 + "name": "Access Bus [USB]", 4652 + "value": 18 4653 + }, 4654 + "external_reference_designator": "USB2.0 - 2#" 4655 + }, 4656 + { 4657 + "handle": 92, 4658 + "port_type": { 4659 + "hex": "001f", 4660 + "name": "Network Port", 4661 + "value": 31 4662 + }, 4663 + "internal_reference_designator": "None", 4664 + "external_connector_type": { 4665 + "hex": "000b", 4666 + "name": "RJ-45", 4667 + "value": 11 4668 + }, 4669 + "external_reference_designator": "Ethernet" 4670 + }, 4671 + { 4672 + "handle": 93, 4673 + "port_type": { 4674 + "hex": "0020", 4675 + "name": "Other", 4676 + "value": 32 4677 + }, 4678 + "internal_reference_designator": "J8J1", 4679 + "external_connector_type": { 4680 + "hex": "0022", 4681 + "name": "Other", 4682 + "value": 34 4683 + }, 4684 + "external_reference_designator": "SATA Port 0 Direct Connect" 4685 + }, 4686 + { 4687 + "handle": 94, 4688 + "port_type": { 4689 + "hex": "0020", 4690 + "name": "Other", 4691 + "value": 32 4692 + }, 4693 + "internal_reference_designator": "J7J1", 4694 + "external_connector_type": { 4695 + "hex": "0022", 4696 + "name": "Other", 4697 + "value": 34 4698 + }, 4699 + "external_reference_designator": "eSATA Port 4" 4700 + }, 4701 + { 4702 + "handle": 95, 4703 + "port_type": { 4704 + "hex": "0020", 4705 + "name": "Other", 4706 + "value": 32 4707 + }, 4708 + "internal_reference_designator": "J6J1", 4709 + "external_connector_type": { 4710 + "hex": "0022", 4711 + "name": "Other", 4712 + "value": 34 4713 + }, 4714 + "external_reference_designator": "eSATA Port 3" 4715 + }, 4716 + { 4717 + "handle": 96, 4718 + "port_type": { 4719 + "hex": "0020", 4720 + "name": "Other", 4721 + "value": 32 4722 + }, 4723 + "internal_connector_type": { 4724 + "hex": "0022", 4725 + "name": "Other", 4726 + "value": 34 4727 + }, 4728 + "internal_reference_designator": "J7G1 - SATA Port 2", 4729 + "external_reference_designator": "None" 4730 + }, 4731 + { 4732 + "handle": 97, 4733 + "port_type": { 4734 + "hex": "0020", 4735 + "name": "Other", 4736 + "value": 32 4737 + }, 4738 + "internal_connector_type": { 4739 + "hex": "0022", 4740 + "name": "Other", 4741 + "value": 34 4742 + }, 4743 + "internal_reference_designator": "J7G2 - SATA Port 1", 4744 + "external_reference_designator": "None" 4745 + }, 4746 + { 4747 + "handle": 98, 4748 + "port_type": { 4749 + "hex": "00ff", 4750 + "name": "Other", 4751 + "value": 255 4752 + }, 4753 + "internal_reference_designator": "J1F2", 4754 + "external_connector_type": { 4755 + "hex": "00ff", 4756 + "name": "Other", 4757 + "value": 255 4758 + }, 4759 + "external_reference_designator": "AC IN" 4760 + }, 4761 + { 4762 + "handle": 99, 4763 + "port_type": { 4764 + "hex": "00ff", 4765 + "name": "Other", 4766 + "value": 255 4767 + }, 4768 + "internal_connector_type": { 4769 + "hex": "00ff", 4770 + "name": "Other", 4771 + "value": 255 4772 + }, 4773 + "internal_reference_designator": "J5B1 - PCH JTAG", 4774 + "external_reference_designator": "None" 4775 + }, 4776 + { 4777 + "handle": 100, 4778 + "port_type": { 4779 + "hex": "00ff", 4780 + "name": "Other", 4781 + "value": 255 4782 + }, 4783 + "internal_connector_type": { 4784 + "hex": "00ff", 4785 + "name": "Other", 4786 + "value": 255 4787 + }, 4788 + "internal_reference_designator": "J9A1 - TPM/PORT 80", 4789 + "external_reference_designator": "None" 4790 + }, 4791 + { 4792 + "handle": 101, 4793 + "port_type": { 4794 + "hex": "00ff", 4795 + "name": "Other", 4796 + "value": 255 4797 + }, 4798 + "internal_connector_type": { 4799 + "hex": "00ff", 4800 + "name": "Other", 4801 + "value": 255 4802 + }, 4803 + "internal_reference_designator": "J9E4 - HDA 2X8 Header", 4804 + "external_reference_designator": "None" 4805 + }, 4806 + { 4807 + "handle": 102, 4808 + "port_type": { 4809 + "hex": "00ff", 4810 + "name": "Other", 4811 + "value": 255 4812 + }, 4813 + "internal_connector_type": { 4814 + "hex": "00ff", 4815 + "name": "Other", 4816 + "value": 255 4817 + }, 4818 + "internal_reference_designator": "J9E7 - HDA 8Pin Header", 4819 + "external_reference_designator": "None" 4820 + }, 4821 + { 4822 + "handle": 103, 4823 + "port_type": { 4824 + "hex": "00ff", 4825 + "name": "Other", 4826 + "value": 255 4827 + }, 4828 + "internal_connector_type": { 4829 + "hex": "00ff", 4830 + "name": "Other", 4831 + "value": 255 4832 + }, 4833 + "internal_reference_designator": "J8F1 - HDA HDMI", 4834 + "external_reference_designator": "None" 4835 + }, 4836 + { 4837 + "handle": 104, 4838 + "port_type": { 4839 + "hex": "00ff", 4840 + "name": "Other", 4841 + "value": 255 4842 + }, 4843 + "internal_connector_type": { 4844 + "hex": "00ff", 4845 + "name": "Other", 4846 + "value": 255 4847 + }, 4848 + "internal_reference_designator": "J9E3 - Scan Matrix Keyboard", 4849 + "external_reference_designator": "None" 4850 + }, 4851 + { 4852 + "handle": 105, 4853 + "port_type": { 4854 + "hex": "00ff", 4855 + "name": "Other", 4856 + "value": 255 4857 + }, 4858 + "internal_connector_type": { 4859 + "hex": "00ff", 4860 + "name": "Other", 4861 + "value": 255 4862 + }, 4863 + "internal_reference_designator": "J8E1 - SPI Program", 4864 + "external_reference_designator": "None" 4865 + }, 4866 + { 4867 + "handle": 106, 4868 + "port_type": { 4869 + "hex": "00ff", 4870 + "name": "Other", 4871 + "value": 255 4872 + }, 4873 + "internal_connector_type": { 4874 + "hex": "00ff", 4875 + "name": "Other", 4876 + "value": 255 4877 + }, 4878 + "internal_reference_designator": "J9E5 - LPC Hot Docking", 4879 + "external_reference_designator": "None" 4880 + }, 4881 + { 4882 + "handle": 107, 4883 + "port_type": { 4884 + "hex": "00ff", 4885 + "name": "Other", 4886 + "value": 255 4887 + }, 4888 + "internal_connector_type": { 4889 + "hex": "00ff", 4890 + "name": "Other", 4891 + "value": 255 4892 + }, 4893 + "internal_reference_designator": "J9G2 - LPC SIDE BAND", 4894 + "external_reference_designator": "None" 4895 + }, 4896 + { 4897 + "handle": 108, 4898 + "port_type": { 4899 + "hex": "00ff", 4900 + "name": "Other", 4901 + "value": 255 4902 + }, 4903 + "internal_connector_type": { 4904 + "hex": "00ff", 4905 + "name": "Other", 4906 + "value": 255 4907 + }, 4908 + "internal_reference_designator": "J8F2 - LPC Slot", 4909 + "external_reference_designator": "None" 4910 + }, 4911 + { 4912 + "handle": 109, 4913 + "port_type": { 4914 + "hex": "00ff", 4915 + "name": "Other", 4916 + "value": 255 4917 + }, 4918 + "internal_connector_type": { 4919 + "hex": "00ff", 4920 + "name": "Other", 4921 + "value": 255 4922 + }, 4923 + "internal_reference_designator": "J8H3 - PCH XDP", 4924 + "external_reference_designator": "None" 4925 + }, 4926 + { 4927 + "handle": 110, 4928 + "port_type": { 4929 + "hex": "00ff", 4930 + "name": "Other", 4931 + "value": 255 4932 + }, 4933 + "internal_connector_type": { 4934 + "hex": "00ff", 4935 + "name": "Other", 4936 + "value": 255 4937 + }, 4938 + "internal_reference_designator": "J6H1 - SATA Power", 4939 + "external_reference_designator": "None" 4940 + }, 4941 + { 4942 + "handle": 111, 4943 + "port_type": { 4944 + "hex": "00ff", 4945 + "name": "Other", 4946 + "value": 255 4947 + }, 4948 + "internal_connector_type": { 4949 + "hex": "00ff", 4950 + "name": "Other", 4951 + "value": 255 4952 + }, 4953 + "internal_reference_designator": "J5J1 - FP Header", 4954 + "external_reference_designator": "None" 4955 + }, 4956 + { 4957 + "handle": 112, 4958 + "port_type": { 4959 + "hex": "00ff", 4960 + "name": "Other", 4961 + "value": 255 4962 + }, 4963 + "internal_connector_type": { 4964 + "hex": "00ff", 4965 + "name": "Other", 4966 + "value": 255 4967 + }, 4968 + "internal_reference_designator": "J4H1 - ATX Power", 4969 + "external_reference_designator": "None" 4970 + }, 4971 + { 4972 + "handle": 113, 4973 + "port_type": { 4974 + "hex": "00ff", 4975 + "name": "Other", 4976 + "value": 255 4977 + }, 4978 + "internal_connector_type": { 4979 + "hex": "00ff", 4980 + "name": "Other", 4981 + "value": 255 4982 + }, 4983 + "internal_reference_designator": "J1J3 - AVMC", 4984 + "external_reference_designator": "None" 4985 + }, 4986 + { 4987 + "handle": 114, 4988 + "port_type": { 4989 + "hex": "00ff", 4990 + "name": "Other", 4991 + "value": 255 4992 + }, 4993 + "internal_connector_type": { 4994 + "hex": "00ff", 4995 + "name": "Other", 4996 + "value": 255 4997 + }, 4998 + "internal_reference_designator": "J1H1 - BATT B", 4999 + "external_reference_designator": "None" 5000 + }, 5001 + { 5002 + "handle": 115, 5003 + "port_type": { 5004 + "hex": "00ff", 5005 + "name": "Other", 5006 + "value": 255 5007 + }, 5008 + "internal_connector_type": { 5009 + "hex": "00ff", 5010 + "name": "Other", 5011 + "value": 255 5012 + }, 5013 + "internal_reference_designator": "J1H2 - BATT A", 5014 + "external_reference_designator": "None" 5015 + }, 5016 + { 5017 + "handle": 116, 5018 + "port_type": { 5019 + "hex": "00ff", 5020 + "name": "Other", 5021 + "value": 255 5022 + }, 5023 + "internal_connector_type": { 5024 + "hex": "00ff", 5025 + "name": "Other", 5026 + "value": 255 5027 + }, 5028 + "internal_reference_designator": "J2G1 - CPU Fan", 5029 + "external_reference_designator": "None" 5030 + }, 5031 + { 5032 + "handle": 117, 5033 + "port_type": { 5034 + "hex": "00ff", 5035 + "name": "Other", 5036 + "value": 255 5037 + }, 5038 + "internal_connector_type": { 5039 + "hex": "00ff", 5040 + "name": "Other", 5041 + "value": 255 5042 + }, 5043 + "internal_reference_designator": "J1D3 - XDP", 5044 + "external_reference_designator": "None" 5045 + }, 5046 + { 5047 + "handle": 118, 5048 + "port_type": { 5049 + "hex": "00ff", 5050 + "name": "Other", 5051 + "value": 255 5052 + }, 5053 + "internal_connector_type": { 5054 + "hex": "00ff", 5055 + "name": "Other", 5056 + "value": 255 5057 + }, 5058 + "internal_reference_designator": "J4V1 - Memory Slot 1", 5059 + "external_reference_designator": "None" 5060 + }, 5061 + { 5062 + "handle": 119, 5063 + "port_type": { 5064 + "hex": "00ff", 5065 + "name": "Other", 5066 + "value": 255 5067 + }, 5068 + "internal_connector_type": { 5069 + "hex": "00ff", 5070 + "name": "Other", 5071 + "value": 255 5072 + }, 5073 + "internal_reference_designator": "J4V2 - Memory Slot 2", 5074 + "external_reference_designator": "None" 5075 + }, 5076 + { 5077 + "handle": 120, 5078 + "port_type": { 5079 + "hex": "00ff", 5080 + "name": "Other", 5081 + "value": 255 5082 + }, 5083 + "internal_connector_type": { 5084 + "hex": "00ff", 5085 + "name": "Other", 5086 + "value": 255 5087 + }, 5088 + "internal_reference_designator": "J4C1 - FAN PWR", 5089 + "external_reference_designator": "None" 5090 + } 5091 + ], 5092 + "processor": [ 5093 + { 5094 + "handle": 60, 5095 + "socket": "U3E1", 5096 + "socket_type": { 5097 + "hex": "0001", 5098 + "name": "Other", 5099 + "value": 1 5100 + }, 5101 + "socket_populated": true, 5102 + "manufacturer": "Intel(R) Corporation", 5103 + "version": "Intel(R) N150", 5104 + "part": "To Be Filled By O.E.M.", 5105 + "processor_type": { 5106 + "hex": "0003", 5107 + "name": "CPU", 5108 + "value": 3 5109 + }, 5110 + "processor_family": { 5111 + "hex": "0001", 5112 + "name": "Other", 5113 + "value": 1 5114 + }, 5115 + "processor_status": { 5116 + "hex": "0001", 5117 + "name": "Enabled", 5118 + "value": 1 5119 + }, 5120 + "clock_ext": 100, 5121 + "clock_max": 3600, 5122 + "cache_handle_l1": 57, 5123 + "cache_handle_l2": 58, 5124 + "cache_handle_l3": 59 5125 + } 5126 + ], 5127 + "slot": [ 5128 + { 5129 + "handle": 9, 5130 + "designation": "Slot 1", 5131 + "slot_type": { 5132 + "hex": "00a6", 5133 + "name": "Other", 5134 + "value": 166 5135 + }, 5136 + "bus_width": { 5137 + "hex": "0005", 5138 + "name": "32 bit", 5139 + "value": 5 5140 + }, 5141 + "usage": { 5142 + "hex": "0003", 5143 + "name": "Available", 5144 + "value": 3 5145 + }, 5146 + "length": { 5147 + "hex": "0003", 5148 + "name": "Short", 5149 + "value": 3 5150 + }, 5151 + "id": 1, 5152 + "features": [ 5153 + "3.3 V", 5154 + "PME#" 5155 + ] 5156 + }, 5157 + { 5158 + "handle": 10, 5159 + "designation": "Slot 2", 5160 + "slot_type": { 5161 + "hex": "00a6", 5162 + "name": "Other", 5163 + "value": 166 5164 + }, 5165 + "bus_width": { 5166 + "hex": "0005", 5167 + "name": "32 bit", 5168 + "value": 5 5169 + }, 5170 + "usage": { 5171 + "hex": "0003", 5172 + "name": "Available", 5173 + "value": 3 5174 + }, 5175 + "length": { 5176 + "hex": "0003", 5177 + "name": "Short", 5178 + "value": 3 5179 + }, 5180 + "id": 1, 5181 + "features": [ 5182 + "3.3 V", 5183 + "PME#" 5184 + ] 5185 + }, 5186 + { 5187 + "handle": 11, 5188 + "designation": "Slot 3", 5189 + "slot_type": { 5190 + "hex": "00a6", 5191 + "name": "Other", 5192 + "value": 166 5193 + }, 5194 + "bus_width": { 5195 + "hex": "0005", 5196 + "name": "32 bit", 5197 + "value": 5 5198 + }, 5199 + "usage": { 5200 + "hex": "0003", 5201 + "name": "Available", 5202 + "value": 3 5203 + }, 5204 + "length": { 5205 + "hex": "0003", 5206 + "name": "Short", 5207 + "value": 3 5208 + }, 5209 + "id": 1, 5210 + "features": [ 5211 + "3.3 V", 5212 + "PME#" 5213 + ] 5214 + }, 5215 + { 5216 + "handle": 12, 5217 + "designation": "Slot 4", 5218 + "slot_type": { 5219 + "hex": "00a6", 5220 + "name": "Other", 5221 + "value": 166 5222 + }, 5223 + "bus_width": { 5224 + "hex": "0005", 5225 + "name": "32 bit", 5226 + "value": 5 5227 + }, 5228 + "usage": { 5229 + "hex": "0003", 5230 + "name": "Available", 5231 + "value": 3 5232 + }, 5233 + "length": { 5234 + "hex": "0003", 5235 + "name": "Short", 5236 + "value": 3 5237 + }, 5238 + "id": 1, 5239 + "features": [ 5240 + "3.3 V", 5241 + "PME#" 5242 + ] 5243 + }, 5244 + { 5245 + "handle": 13, 5246 + "designation": "Slot 5", 5247 + "slot_type": { 5248 + "hex": "00a6", 5249 + "name": "Other", 5250 + "value": 166 5251 + }, 5252 + "bus_width": { 5253 + "hex": "0005", 5254 + "name": "32 bit", 5255 + "value": 5 5256 + }, 5257 + "usage": { 5258 + "hex": "0003", 5259 + "name": "Available", 5260 + "value": 3 5261 + }, 5262 + "length": { 5263 + "hex": "0003", 5264 + "name": "Short", 5265 + "value": 3 5266 + }, 5267 + "id": 1, 5268 + "features": [ 5269 + "3.3 V", 5270 + "PME#" 5271 + ] 5272 + } 5273 + ], 5274 + "system": { 5275 + "handle": 1, 5276 + "manufacturer": "GMKtec", 5277 + "product": "NucBoxG9", 5278 + "version": "Default string", 5279 + "wake_up": { 5280 + "hex": "0006", 5281 + "name": "Power Switch", 5282 + "value": 6 5283 + } 5284 + } 5285 + } 5286 + }
+3
nix/hosts/arges/users/tghanken/home-configuration.nix
··· 1 + {inputs, ...}: { 2 + imports = [inputs.self.homeModules.tghanken]; 3 + }