mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
9 lines
141 B
Bash
9 lines
141 B
Bash
#!/bin/sh
|
|
|
|
if [ "$DEVICENAME" != "usdm_drv" ] && [ "$ACTION" != "add" ]; then exit 0; fi
|
|
|
|
chgrp qat /dev/usdm_drv
|
|
chmod 0660 /dev/usdm_drv
|
|
|
|
|