mirror of
https://github.com/Lekensteyn/lglaf.git
synced 2024-11-30 10:56:49 -05:00
90d89bbe5f
Add productId to the Wireshark dissector and udev rule, adjust the serial path detection logic to find the right key (`\Device\LGVZANDNETDIAG1`). Now you do not need to pass `--serial COM4` anymore. Reportedly fails in VirtualBox with USB passthrough, but works fine on Linux. Thanks @invisiblek for testing!
7 lines
389 B
Text
7 lines
389 B
Text
# /etc/udev/rules.d/42-usb-lglaf.rules
|
|
# LG G3 (D855) in download mode
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="1004", ATTRS{idProduct}=="633e", TAG+="uaccess"
|
|
# LG G3 (VS985) in download mode
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="1004", ATTRS{idProduct}=="627f", TAG+="uaccess"
|
|
# LG G4 (VS986) in download mode
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="1004", ATTRS{idProduct}=="6298", TAG+="uaccess"
|