No Wake On Lan from suspend accessing mounted RPi

  • So I have a laptop with Libreelec on which I use as Nas and a Rpi 2 connected to TV as media player...So I OS mounted a folder from the laptop to the RPI to use for downloads...using autostart.sh method...it mounts perfectly when laptop is on but if laptop is on suspend there is no WOL to wake it up like what happens on smb wol..

    Using this autostart.sh as example...anything I can add to it for wol on access to mount?

    #!/bin/sh

    (sleep 30;

    mount -t cifs -o username=libreelec,rw //192.168.0.11/videos/mounts /storage/videos;

    )&

    Thanks for any help...