summaryrefslogtreecommitdiff
path: root/com32/modules/cmd.c
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2009-02-17 20:34:51 -0800
committerH. Peter Anvin <hpa@zytor.com>2009-02-17 20:34:51 -0800
commit5241ed1d54a8bb844b0b983dcf03f0de55a20b1d (patch)
tree27a81e3dfa314fe2b2a284a048e2fe6c7a7465e2 /com32/modules/cmd.c
parentd0c6656a62113b913948361779d6298fe76f6e61 (diff)
downloadsyslinux-5241ed1d54a8bb844b0b983dcf03f0de55a20b1d.tar.gz
Simple "cmd" module to issue a CLI commandsyslinux-3.74-pre1
A simple "cmd" COM32 module, which only echoes a CLI command. This is mostly useful when running on an alternate CLI, e.g. on top of the native gPXE COMBOOT interface.
Diffstat (limited to 'com32/modules/cmd.c')
-rw-r--r--com32/modules/cmd.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/com32/modules/cmd.c b/com32/modules/cmd.c
new file mode 100644
index 00000000..f0b0a968
--- /dev/null
+++ b/com32/modules/cmd.c
@@ -0,0 +1,42 @@
+/* ----------------------------------------------------------------------- *
+ *
+ * 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 <string.h>
+#include <alloca.h>
+#include <console.h>
+#include <com32.h>
+
+int main(int argc, const char *argv[])
+{
+ size_t len = 0;
+ char *cmd;
+ char *tmp;
+ int i;
+
+ openconsole(&dev_stdcon_r, &dev_stdcon_w);
+
+ for (i = 1; i < argc; i++)
+ len += strlen(argv[i]) + 1;
+
+ tmp = cmd = alloca(len);
+
+ for (i = 1; i < argc; i++)
+ tmp += sprintf(tmp, "%s%s", argv[i], (i == argc-1) ? "" : " ");
+
+ syslinux_run_command(cmd);
+}