Gentlemen! Are you able to run Topping D10s on FreeBSD?
Is there any way to troubleshoot the little basta*d?
We are still missing your last payment for the service contract.People are very lazy here
Take a look at the devd.conf man page. Then create a file /usr/local/etc/devd/usb_dac.conf with content similar to this:I guess you can't have everything.
notify 100 {
match "system" "USB";
match "subsystem" "DEVICE";
match "type" "ATTACH";
match "vendor" "0x....";
match "product" "0x....";
action "sysctl <set default unit when attached>";
};
notify 100 {
match "system" "USB";
match "subsystem" "DEVICE";
match "type" "DETACH";
match "vendor" "0x....";
match "product" "0x....";
action "sysctl <reset default unit when detached>";
};
service devd restart after making changes.