summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/com32/modules/cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux-4.02/com32/modules/cmd.c')
-rw-r--r--contrib/syslinux-4.02/com32/modules/cmd.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/com32/modules/cmd.c b/contrib/syslinux-4.02/com32/modules/cmd.c
new file mode 100644
index 0000000..5d3f891
--- /dev/null
+++ b/contrib/syslinux-4.02/com32/modules/cmd.c
@@ -0,0 +1,26 @@
+/* ----------------------------------------------------------------------- *
+ *
+ * Copyright 2008 Michael Brown - All Rights Reserved
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston MA 02110-1301, USA; either version 2 of the License, or
+ * (at your option) any later version; incorporated herein by reference.
+ *
+ * ----------------------------------------------------------------------- */
+
+/*
+ * cmd.c
+ *
+ * Execute arbitrary commands
+ */
+
+#include <com32.h>
+#include <syslinux/boot.h>
+
+int main(void)
+{
+ syslinux_run_command(__com32.cs_cmdline);
+ return -1;
+}