From a731768b7cb35da00d32a9b8d1a971dda086e0e5 Mon Sep 17 00:00:00 2001 From: Alexander Grothe Date: Tue, 28 Feb 2017 16:07:10 +0100 Subject: [PATCH] remove lirc_pci_id.sh --- roles/yavdr-common/files/list_pci_ids.sh | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 roles/yavdr-common/files/list_pci_ids.sh diff --git a/roles/yavdr-common/files/list_pci_ids.sh b/roles/yavdr-common/files/list_pci_ids.sh deleted file mode 100644 index a43e0c3..0000000 --- a/roles/yavdr-common/files/list_pci_ids.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -# return all vendor:device ids -# typical device path: -# /sys/devices/pci0000\:00/0000\:00\:1f.2/ - -for device in /sys/devices/pci*/*:*:*/; do - echo "$(cat "$device"/vendor):$(cat "$device"/device)" | sed 's/0x//g' -done -