Displaying 4 results from an estimated 4 matches for "syslinux_reboot".
2007 Jul 20
1
reboot from com32
Q: Is there a way to do a reboot (either warm or cold) from a com32 program?
I have a com32 program that sometimes (based upon conditions) needs to
reboot the system.
I would prefer to do a warm reboot (40:72 = 0x1234), but at this point
cold would be OK too.
grepping through syslinux-3.51 I only found one reference, in
iso/pxelinux.asm at the tail end of 'kaboom' ... but presumably
2015 Sep 20
1
[syslinux:master] com32/modules: Split build by architecture. Add dir.c32
On Sun, Sep 20, 2015 at 8:33 AM, syslinux-bot for Gene Cumm
<gene.cumm at gmail.com> wrote:
> Commit-ID: e0ac1d2fdf7d7c58457f3796a12561cce95ca29f
> Gitweb: http://www.syslinux.org/commit/e0ac1d2fdf7d7c58457f3796a12561cce95ca29f
> Author: Gene Cumm <gene.cumm at gmail.com>
> AuthorDate: Sun, 20 Sep 2015 08:30:55 -0400
> Committer: Gene Cumm <gene.cumm at
2012 Oct 23
1
Syslinux 4.06 released
...d to run a particular entry after
HDT's execution, add silent option and various fixes.
* ifcpu.c32: Detect hypervisor presence.
* lua.c32: Add dhcp support and support for native Syslinux
functions syslinux_config(), syslinux_ipappend_strings() and
syslinux_reboot().
* isohybrid: Workaround for various EFI systems.
* pxechn.c32, a PXE NBP chainloader. More versatile alternative
to pxechain.com and resolves the PXELINUX -> WDS issue with
Microsoft Windows Server 2008R2 (Gene Cumm).
* btrfs: Fix booting off of a...
2010 Jun 27
1
[PATCH] ROSH: Upgraded
...quot;pwd", "");
+ errno = 0;
+ }
istr = htonl(*(int *)pwdstr);
- ROSH_DEBUG(" --%08X\n", istr);
+ ROSH_DEBUG2(" --%08X\n", istr);
} /* rosh_pwd */
+/* Reboot
+ */
+void rosh_reboot(void)
+{
+// char cmdstr[ROSH_CMD_SZ];
+// printf
+ syslinux_reboot(0);
+} /* rosh_reboot */
+
/* Run a boot string, calling syslinux_run_command
* cmdstr command string to process
- * pwdstr Present Working Directory string
- * ipwdstr Initial PWD
*/
-void rosh_run(const char *cmdstr, const char *pwdstr, const char *ipwdstr)
+void rosh_run(const char *cmds...