summaryrefslogtreecommitdiff
path: root/com32
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-04-03 15:07:31 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-04-03 15:07:31 -0700
commit0b3b862ff49ab1b0b5d5af8c15d58e3c4baaf634 (patch)
treed13df592c3e7589abe0e2fd33a1c69ff4f70b229 /com32
parent2b73e15e178eb70bfc4a664913ec5ad7f0cdd181 (diff)
downloadsyslinux-0b3b862ff49ab1b0b5d5af8c15d58e3c4baaf634.tar.gz
A few more syslinux wrapper function
Add implementations of a few more syslinux wrapper functions: syslinux_run_command() syslinux_run_default() syslinux_final_cleanup()
Diffstat (limited to 'com32')
-rw-r--r--com32/lib/Makefile3
-rw-r--r--com32/lib/syslinux/cleanup.c40
-rw-r--r--com32/lib/syslinux/run_command.c47
-rw-r--r--com32/lib/syslinux/run_default.c41
4 files changed, 131 insertions, 0 deletions
diff --git a/com32/lib/Makefile b/com32/lib/Makefile
index b08e05d5..44ce4a51 100644
--- a/com32/lib/Makefile
+++ b/com32/lib/Makefile
@@ -71,6 +71,9 @@ LIBOBJS = \
syslinux/shuffle_rm.o syslinux/zonelist.o \
syslinux/dump_mmap.o syslinux/dump_movelist.o \
\
+ syslinux/run_default.o syslinux/run_command.o \
+ syslinux/cleanup.o \
+ \
syslinux/loadfile.o \
syslinux/load_linux.o syslinux/initramfs.o \
syslinux/initramfs_file.o syslinux/initramfs_loadfile.o \
diff --git a/com32/lib/syslinux/cleanup.c b/com32/lib/syslinux/cleanup.c
new file mode 100644
index 00000000..3aafde27
--- /dev/null
+++ b/com32/lib/syslinux/cleanup.c
@@ -0,0 +1,40 @@
+/* ----------------------------------------------------------------------- *
+ *
+ * Copyright 2007 H. Peter Anvin - All Rights Reserved
+ *
+ * Permission is hereby granted, free of charge, to any person
+ * obtaining a copy of this software and associated documentation
+ * files (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use,
+ * copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom
+ * the Software is furnished to do so, subject to the following
+ * conditions:
+ *
+ * The above copyright notice and this permission notice shall
+ * be included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ * OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * ----------------------------------------------------------------------- */
+
+#include <syslinux/boot.h>
+#include <stddef.h>
+#include <com32.h>
+
+void syslinux_final_cleanup(uint16_t flags)
+{
+ static com32sys_t ireg;
+
+ ireg.eax.w[0] = 0x000c;
+ ireg.edx.w[0] = flags;
+
+ __intcall(0x22, &ireg, NULL);
+}
diff --git a/com32/lib/syslinux/run_command.c b/com32/lib/syslinux/run_command.c
new file mode 100644
index 00000000..7a433a18
--- /dev/null
+++ b/com32/lib/syslinux/run_command.c
@@ -0,0 +1,47 @@
+/* ----------------------------------------------------------------------- *
+ *
+ * Copyright 2007 H. Peter Anvin - All Rights Reserved
+ *
+ * Permission is hereby granted, free of charge, to any person
+ * obtaining a copy of this software and associated documentation
+ * files (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use,
+ * copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom
+ * the Software is furnished to do so, subject to the following
+ * conditions:
+ *
+ * The above copyright notice and this permission notice shall
+ * be included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ * OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * ----------------------------------------------------------------------- */
+
+#include <syslinux/boot.h>
+#include <stddef.h>
+#include <string.h>
+#include <com32.h>
+
+__noreturn syslinux_run_command(const char *command)
+{
+ static com32sys_t ireg;
+
+ strcpy(__com32.cs_bounce, command);
+
+ ireg.eax.w[0] = 0x0003;
+ ireg.es = SEG(__com32.cs_bounce);
+ ireg.ebx.w[0] = OFFS(__com32.cs_bounce);
+
+ __intcall(0x22, &ireg, NULL);
+
+ /* Should not return even on failure */
+ for(;;);
+}
diff --git a/com32/lib/syslinux/run_default.c b/com32/lib/syslinux/run_default.c
new file mode 100644
index 00000000..7aeb9d5e
--- /dev/null
+++ b/com32/lib/syslinux/run_default.c
@@ -0,0 +1,41 @@
+/* ----------------------------------------------------------------------- *
+ *
+ * Copyright 2007 H. Peter Anvin - All Rights Reserved
+ *
+ * Permission is hereby granted, free of charge, to any person
+ * obtaining a copy of this software and associated documentation
+ * files (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use,
+ * copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom
+ * the Software is furnished to do so, subject to the following
+ * conditions:
+ *
+ * The above copyright notice and this permission notice shall
+ * be included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ * OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * ----------------------------------------------------------------------- */
+
+#include <syslinux/boot.h>
+#include <stddef.h>
+#include <com32.h>
+
+__noreturn syslinux_run_default(void)
+{
+ static com32sys_t ireg;
+
+ ireg.eax.w[0] = 0x0004;
+ __intcall(0x22, &ireg, NULL);
+
+ /* Should not return even on failure */
+ for(;;);
+}