Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created August 19, 2019 08:48
Show Gist options
  • Save ryantm/e3ed8754b4d6cbf6e6f323a61eaab37b to your computer and use it in GitHub Desktop.
Save ryantm/e3ed8754b4d6cbf6e6f323a61eaab37b to your computer and use it in GitHub Desktop.
/nix/store/0i3bxrrfblasxcjkcshwxjr153vb8wwv-fwupd-1.2.10
├── bin
│   ├── dfu-tool
│   └── fwupdmgr
├── etc
│   ├── dbus-1
│   │   └── system.d
│   │   └── org.freedesktop.fwupd.conf
│   ├── fwupd
│   │   ├── daemon.conf
│   │   ├── redfish.conf
│   │   ├── remotes.d
│   │   │   ├── dell-esrt.conf
│   │   │   ├── lvfs.conf
│   │   │   ├── lvfs-testing.conf
│   │   │   ├── vendor.conf
│   │   │   └── vendor-directory.conf
│   │   └── uefi.conf
│   └── pki
│   ├── fwupd
│   │   ├── GPG-KEY-Hughski-Limited
│   │   ├── GPG-KEY-Linux-Foundation-Firmware
│   │   ├── GPG-KEY-Linux-Vendor-Firmware-Service
│   │   └── LVFS-CA.pem
│   └── fwupd-metadata
│   ├── GPG-KEY-Linux-Foundation-Metadata
│   ├── GPG-KEY-Linux-Vendor-Firmware-Service
│   └── LVFS-CA.pem
├── fwupd_plugins-3
│   ├── libfu_plugin_altos.so
│   ├── libfu_plugin_amt.so
│   ├── libfu_plugin_ata.so
│   ├── libfu_plugin_colorhug.so
│   ├── libfu_plugin_csr.so
│   ├── libfu_plugin_dell_dock.so
│   ├── libfu_plugin_dell_esrt.so
│   ├── libfu_plugin_dell.so
│   ├── libfu_plugin_dfu.so
│   ├── libfu_plugin_ebitdo.so
│   ├── libfu_plugin_fastboot.so
│   ├── libfu_plugin_nitrokey.so
│   ├── libfu_plugin_nvme.so
│   ├── libfu_plugin_redfish.so
│   ├── libfu_plugin_rts54hid.so
│   ├── libfu_plugin_rts54hub.so
│   ├── libfu_plugin_steelseries.so
│   ├── libfu_plugin_superio.so
│   ├── libfu_plugin_synapticsmst.so
│   ├── libfu_plugin_synaptics_prometheus.so
│   ├── libfu_plugin_test.so
│   ├── libfu_plugin_thunderbolt_power.so
│   ├── libfu_plugin_thunderbolt.so
│   ├── libfu_plugin_udev.so
│   ├── libfu_plugin_uefi.so
│   ├── libfu_plugin_unifying.so
│   ├── libfu_plugin_upower.so
│   ├── libfu_plugin_wacom_raw.so
│   └── libfu_plugin_wacom_usb.so
├── lib
│   ├── systemd
│   │   ├── system
│   │   │   ├── fwupd-offline-update.service
│   │   │   └── fwupd.service
│   │   └── system-shutdown
│   │   └── fwupd.shutdown
│   └── udev
│   └── rules.d
│   └── 90-fwupd-devices.rules
├── libexec
│   └── fwupd
│   ├── efi
│   │   └── fwupdx64.efi
│   ├── fwupd
│   ├── fwupdagent
│   ├── fwupdate
│   ├── fwupdoffline
│   └── fwupdtool
└── share
├── bash-completion
│   └── completions
│   ├── fwupdagent
│   ├── fwupdmgr
│   └── fwupdtool
├── dbus-1
│   ├── interfaces
│   │   └── org.freedesktop.fwupd.xml
│   └── system-services
│   └── org.freedesktop.fwupd.service
├── fwupd
│   ├── firmware-packager
│   ├── metainfo
│   │   ├── org.freedesktop.fwupd.remotes.lvfs.metainfo.xml
│   │   └── org.freedesktop.fwupd.remotes.lvfs-testing.metainfo.xml
│   ├── quirks.d
│   │   ├── altos.quirk
│   │   ├── ata.quirk
│   │   ├── colorhug.quirk
│   │   ├── csr-aiaiai.quirk
│   │   ├── dell-dock.quirk
│   │   ├── dell.quirk
│   │   ├── dfu.quirk
│   │   ├── ebitdo.quirk
│   │   ├── fastboot.quirk
│   │   ├── nitrokey.quirk
│   │   ├── nvme.quirk
│   │   ├── rts54hid.quirk
│   │   ├── rts54hub.quirk
│   │   ├── steelseries.quirk
│   │   ├── superio.quirk
│   │   ├── synapticsmst.quirk
│   │   ├── synaptics-prometheus.quirk
│   │   ├── uefi.quirk
│   │   ├── unifying.quirk
│   │   ├── wacom-raw.quirk
│   │   └── wacom-usb.quirk
│   └── remotes.d
│   ├── dell-esrt
│   │   └── metadata.xml
│   └── vendor
│   └── firmware
│   └── README.md
├── icons
│   └── hicolor
│   └── scalable
│   └── apps
│   └── org.freedesktop.fwupd.svg
├── metainfo
│   └── org.freedesktop.fwupd.metainfo.xml
└── polkit-1
├── actions
│   └── org.freedesktop.fwupd.policy
└── rules.d
└── org.freedesktop.fwupd.rules
40 directories, 92 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment