blob: 640e526516f7fb96757eae27d08e9f256309e4cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
do_install:append() {
# Add a rule to ensure the 'video' group has permission to access
install -d ${D}${sysconfdir}/udev/rules.d
cat >${D}${sysconfdir}/udev/rules.d/56-rgnmmbuf.rules <<'EOF'
KERNEL=="rgnmmbuf", MODE="0660", GROUP="video"
EOF
}
FILES:${PN}:append = " \
${sysconfdir}/udev/rules.d/*.rules \
"
|