packages/utils/qemu/files/virtio-ports.hotplug
Yousong Zhou 3ea82eecb7 qemu: new package qemu-ga
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2016-02-26 18:07:53 +08:00

19 lines
371 B
Bash
Executable file

#!/bin/sh
# Copyright (C) 2016 OpenWrt.org
[ "$SUBSYSTEM" = "virtio-ports" ] || exit 0
syspath="/sys/$DEVPATH"
name="$(cat "$syspath/name" 2>/dev/null)"
[ -n "$name" ] || exit 0
case "$ACTION" in
"add")
mkdir -p /dev/virtio-ports
ln -s "/dev/$DEVNAME" "/dev/virtio-ports/$name"
/etc/init.d/qemu-ga start
;;
"del")
rm -f "/dev/virtio-ports/$name"
;;
esac