kde-workspace/kinfocenter/Modules/view1394
Ivailo Monev 591b538337 generic: replace installation paths with KDE4_ prefixed
see commit in kdelibs repository

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2020-02-08 20:13:13 +00:00
..
CMakeLists.txt generic: replace installation paths with KDE4_ prefixed 2020-02-08 20:13:13 +00:00
kcmview1394.desktop initial import 2014-11-13 19:30:51 +02:00
Messages.sh changed bash scripts shebangs 2014-11-15 05:48:13 +02:00
oui.db initial import 2014-11-13 19:30:51 +02:00
README initial import 2014-11-13 19:30:51 +02:00
view1394.cpp kinfocenter: make use of QT_ARCH_X86_64 2016-07-05 18:02:54 +00:00
view1394.h initial import 2014-11-13 19:30:51 +02:00
view1394widget.ui initial import 2014-11-13 19:30:51 +02:00

this kcontrol module shows the current configuration of the IEEE 1394 bus.
It uses libraw1394 (see www.linux1394.org). I don't know how the 1394 apis
on other OS's look, feel free to port it :-)

The file oui.db is generated from the file oui.txt which you can get at
http://standards.ieee.org/regauth/oui/index.shtml 

It was generated using the following command: 

awk '/base 16/ { if (NF>3) {s=$1; for (i=4; i<=NF; i++) s=s " " $i; print s}}' oui.txt > oui.db

Alex
<neundorf@kde.org>