You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
303 B

#!/bin/sh
# Copyright (C) 2016 OpenWrt.org
# Copyright (C) 2016 Yousong Zhou <yszhou4tech@gmail.com>
[ "$SUBSYSTEM" = "virtio-ports" ] || exit 0
syspath="/sys/$DEVPATH"
name="$(cat "$syspath/name" 2>/dev/null)"
[ -n "$name" ] || exit 0
case "$ACTION" in
"add")
/etc/init.d/qemu-ga start
;;
esac