Is it possible to shutdown a TS7200 or TS7300 via software?
I've been trying on my test TS7200, and it just reboots.
This is the code I am using:
signal(SIGTERM,SIG_IGN);
signal(SIGHUP,SIG_IGN);
setpgrp();
sync();
kill(-1,SIGTERM);
sleep(1);
kill(-1,SIGKILL);
sleep(1);
sync();
reboot(0x4321fedc);
That magic cookie for reboot should cause a POWEROFF:
LINUX_REBOOT_CMD_POWER_OFF
(0x4321fedc; since 2.1.30). The message `Power down.' is printed, the
system is stopped, and all power is removed from the system, if
possible. If not preceded by a sync(2), data will be lost.
But it just causes a reboot. Any way to make it shut down via software?
--Yan
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ts-7000/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/ts-7000/join
(Yahoo! ID required)
<*> To change settings via email:
<*> To unsubscribe from this group, send an email to:
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|