blob: cb7cec7274d7185b800f4b8b83ae90ba79ba3401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# For DEV9 netplay support
_PCSX2_BIN="opt/pcsx2/usr/bin/pcsx2-qt"
post_install() {
setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' "$_PCSX2_BIN"
}
post_upgrade() {
post_install
}
|